Found 19 threads
-
9 Votes
How can I find my thread regarding MS Outlook?
Is there a simple way of finding a thread in a specific forum? Thanks in advance. Premature optimization is the root of all evil in ...Answered | 3 Replies | 12061 Views | Created by Naomi N - Tuesday, 27 October 2009 11:36 PM | Last reply by PeterGroft - Wednesday, 27 July 2022 10:30 AM -
15 Votes
How to add a link in Biography ?
Hi, just a simple question. How can i add a link in my biography with a text ? Usually on other forums it's ...Answered | 14 Replies | 19637 Views | Created by noneinuse - Tuesday, 24 January 2012 4:08 PM | Last reply by Hemperial CBD - Saturday, 10 October 2020 5:52 PM -
5 Votes
File Watcher Code Sample
Hi everybody, I am trying to create a Windows Service application that is going to use the FileWatcher to monitor some directories and run SQL Server packages. I found this ...Unanswered | 11 Replies | 3695 Views | Created by Naomi N - Tuesday, 22 September 2020 9:27 PM | Last reply by Kareninstructor - Thursday, 24 September 2020 3:56 PM -
0 Votes
Removing a string from Stringbuilder
Hi, I have a collection of strings in stringbuilder object. I want to search a particular string in stringbuilder and if the string exists, I want to remove the searched ...Proposed | 6 Replies | 3815 Views | Created by Santosh Umarani - Monday, 24 August 2020 1:05 PM | Last reply by Timon Yang - Thursday, 3 September 2020 9:42 AM -
0 Votes
Newbie string issue
Hi In my token string I am getting extra \" on both ends and this fails subsequent calls to remote API for data. Even though I am using oauthToken1 = ...Answered | 2 Replies | 3332 Views | Created by Y a h y a - Wednesday, 2 September 2020 4:56 PM | Last reply by Viorel_ - Wednesday, 2 September 2020 6:51 PM -
2 Votes
how to update selected record in EF
Hi All. In my DataGrid each row has button to modify according record. The method that I created try to update first record public static int ...Proposed | 5 Replies | 3450 Views | Created by zleug - Tuesday, 18 August 2020 6:55 PM | Last reply by Timon Yang - Wednesday, 2 September 2020 9:34 AM -
9 Votes
"SELECT * INTO table FROM" a stored procedure? Possible?
I did a search and read a few solutions but they just don't make too much sense to me. Forgive my newbie-ness but I'm still pretty new when it comes to stored procedures. I'm still learning every ...Answered | 40 Replies | 221861 Views | Created by Doua - Monday, 9 March 2009 4:16 PM | Last reply by Naomi N - Friday, 28 August 2020 12:56 PM -
0 Votes
unable to cast object of type 'MultipleItemSelection' to type 'Microsoft.SqlServer.Managment.UI.VSIntegration.IVsMultitemSelect'
I'm not sure if this is the correct forum to post this to since its a SQL Server Management Studio issue with source control. Seems I have a problem trying to check in multiple selected items into ...Unanswered | 3 Replies | 7449 Views | Created by George Hendrickson - Saturday, 20 June 2020 5:26 PM | Last reply by Naomi N - Wednesday, 26 August 2020 6:11 PM -
0 Votes
Error reporting The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect ?
In C # .net when running an SQL query to get access data with an error The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect, ...Answered | 6 Replies | 7075 Views | Created by lamtriendong - Friday, 14 August 2020 4:24 AM | Last reply by lamtriendong - Tuesday, 25 August 2020 7:27 AM -
0 Votes
One time history load into dimension table
I have a slowly changing dimension table that keeps track record of our current patient from the patients current location. There is also a history table. I want ...Answered | 13 Replies | 7770 Views | Created by Dre01 - Tuesday, 4 August 2020 9:47 PM | Last reply by Dre01 - Friday, 21 August 2020 4:04 PM -
8 Votes
Sql Server 2019 Standard 64bit Slow Performance Vs Sql Server 2012 Express (Sp1) High Performance
Hello, I try to migrate my database from Sql Server 2012 Express (Sp1) to Sql Server 2019 Standard 64bit and I getting very bad query performance ...Proposed | 56 Replies | 10171 Views | Created by EREZra - Wednesday, 24 June 2020 6:51 PM | Last reply by Erland Sommarskog - Thursday, 20 August 2020 9:17 PM -
3 Votes
RTRIM Not working
Hi guys, I have a strange issue when trying to trim some trailing spaces off a string. When I do ...Answered | 14 Replies | 24558 Views | Created by wattyjnr - Monday, 14 March 2011 11:59 AM | Last reply by Dan Guzman - Thursday, 20 August 2020 11:13 AM -
4 Votes
Not able to create tasklist in Sql Server Management Studio
Hi, I 'm using SSMS and want to start using the tasklist option. displaying the task list is not a problem. However the button for creating a new tasklist is not ...Answered | 17 Replies | 9198 Views | Created by H. van der Linde - Friday, 6 January 2017 9:02 AM | Last reply by Naomi N - Wednesday, 19 August 2020 9:32 PM -
0 Votes
Can we initialize multiple values in a for loop?
Hello, I have a variable Y returning values 1,2,3,4. Is it possible to initialize Y in a for loop and get the return for each values? for(int i ...Unanswered | 7 Replies | 3591 Views | Created by Frankdot - Wednesday, 19 August 2020 11:56 AM | Last reply by Kareninstructor - Wednesday, 19 August 2020 2:18 PM -
8 Votes
Row wise Total in Pivot table ,coming wrong
i am trying to calculating total row wise in Pivot,which is coming wrong. CREATE TABLE #SalesOrder (OrderNo INT,Order_Ref_No VARCHAR(50), Order_date date,Status ...Answered | 37 Replies | 8756 Views | Created by Akhterhussain - Friday, 14 August 2020 4:18 AM | Last reply by Akhterhussain - Wednesday, 19 August 2020 6:47 AM -
3 Votes
What is the fastest and efficient way to read from a large CSV file in C#?
I have tried different CSV parsers and nothing seems to work. I have a CSV file that has more than 500,000 rows and 26 fields (double data type). I want to read each row, process the data and write it ...Unanswered | 16 Replies | 4685 Views | Created by Ranjini Rengan - Monday, 20 July 2020 8:54 PM | Last reply by Naomi N - Tuesday, 18 August 2020 2:42 PM -
0 Votes
What's faster iterating throught a list<T> or Ienumerable<T>
is it better to use foreach on a list<T> or an Ienumerable<T>, i have the collection as Ienumerable so to make it a list i'll actually have to convert it, i'll only loop through the ...Proposed | 4 Replies | 3129 Views | Created by SalahChafai - Monday, 17 August 2020 2:12 PM | Last reply by DonaldRichardson1 gmail.com - Tuesday, 18 August 2020 10:09 AM -
0 Votes
Best Practice filtering a Datetime Data Column by a provided StartDate and EndDate DATE Parameters
So I'm sure this has been beaten to death...I think even I myself have beaten this to death. We are wondering what the SQL Server Best Practice is when it comes to creating a SQL ...Proposed | 16 Replies | 8335 Views | Created by ITBobbyP - Friday, 14 August 2020 8:24 PM | Last reply by Melissa Ma - Tuesday, 18 August 2020 6:43 AM -
0 Votes
Sales revenue by country
I have three tables motorcyle_model: id, name, pricecountry: id, nameSales: model_id, country_id, quantity, sales_date All the country wise ...Proposed | 6 Replies | 9507 Views | Created by berkynr - Sunday, 16 August 2020 6:41 PM | Last reply by Echo Liuz - Tuesday, 18 August 2020 5:58 AM - Items 1 to 20 of 22729 Next ›