Viewing 15 posts - 1 through 15 (of 85 total)
ms support lifecycle page might help
https://support.microsoft.com/en-gb/lifecycle/search?alpha=sql%20server
December 7, 2016 at 11:28 am
Run both through SQL Profiler and compare.
Things to look out for : Differences in connection settings, parameter sniffing, parameter conversion issues. Also maybe you could post your .net code and...
November 21, 2016 at 8:02 am
There are lots of ways.
You could convert it to a varchar(10), then find and replace the '.' with an empty string, then add a string with zero to the front.
Have...
November 2, 2016 at 3:42 pm
I don't represent RedGate but I'm pretty sure if you hunt around their website you can download older versions which do support SQL 2000.
Alternatively, if you can't use that product,...
October 27, 2016 at 6:36 am
Have a look at the columns in your table and compare them to the fields in your text file.
The rowterminator looks dodgy too.
September 28, 2016 at 4:39 pm
Search for 'plan eviction' - there's lots of good stuff out there, including TechNet articles
September 22, 2016 at 2:58 am
Check Regional Settings, see what the 'leading zeros' is set as.
August 31, 2016 at 6:25 pm
What application are you using to view the flat file?
August 31, 2016 at 4:23 am
You'll need to use a decimal data type. Exporting a float to a text file gives exponential notation.
August 30, 2016 at 12:18 pm
Have you proved that no blocking is taking place? RCSI does some locking/blocking depending on the usage scenario.
You might like to query the sys.dm_tran_locks table when testing to see...
August 29, 2016 at 5:38 am
Running a separate 'sequence' table like this is a fairly well-known pattern and it can work extremely well if done correctly.
May I ask if the system has always displayed blocking...
August 19, 2016 at 4:41 am
You have everything you need to investigate further yourself.
Return getdate(), last_request_start_time, DATEDIFF(ms, last_request_start_time, GETDATE()) in your results - right next to each other.
I suppose we can theorise that sql server...
August 12, 2016 at 4:10 am
Apologies if I'm stating the obvious as there are some big hitters on this thread but the trigger will fire exactly once if no rows are affected (or a million).
There's...
August 11, 2016 at 1:26 pm
1. Use SUBSTRING function.
2. Use REPLACE function
August 8, 2016 at 5:54 am
Well, I could guess that much but when you assign a value to @deposit, you don't give it a varchar , you give it a numeric. So sort that...
August 6, 2016 at 3:17 pm
Viewing 15 posts - 1 through 15 (of 85 total)