Viewing 15 posts - 1,306 through 1,320 (of 4,820 total)
Can you please suggest what can be done to tune the following query ?
May 14, 2018 at 3:24 pm
Basically, what it boils down to is that SQL Server does not hold on to "old" data unless you explicitly do something to keep track of it, such as create...
May 14, 2018 at 2:47 pm
Having some issues with a hashing and matching based on a file.
We have a...
May 14, 2018 at 2:42 pm
Here's the detail on using the function Grant refers to:CREATE TABLE #Participants (
Participant varchar(100) NOT NULL PRIMARY KEY CLUSTERED,
ParticipantID int IDENTITY(1,1) NOT NULL
);
INSERT INTO #Participants (Participant)
May 14, 2018 at 2:33 pm
Without a much more detailed understanding of your tables, their structure, and what a record in each of the tables is intended to represent, this is largely impractical for someone...
May 14, 2018 at 2:02 pm
So.... what are you planning to do with the February inserts after inserting the January data? You may well end up with a LOT more rows than you need. That...
May 14, 2018 at 12:45 pm
You can use PIVOT, but it will force you to either hard code it each run, or have to use dynamic SQL. If you take out the PIVOT and use...
May 14, 2018 at 12:19 pm
May 14, 2018 at 11:24 am
My first guess would have been that the user that you specify for Server B does not have UPDATE rights on Server B for the table on Server B, but...
May 14, 2018 at 11:12 am
I agree with the idea that the existence of the "Low" range and it having a numeric value associated with it has "difficulties" where meaning is concerned. The question is,...
May 14, 2018 at 11:02 am
Well, it doesn't appear that you have the connection pooling enabled, but I'd go through the actual connection configuration and see if there's any settings in there that could cause...
May 10, 2018 at 6:22 am
May 9, 2018 at 2:14 pm
May 9, 2018 at 1:47 pm
Viewing 15 posts - 1,306 through 1,320 (of 4,820 total)