Viewing 15 posts - 271 through 285 (of 616 total)
I wouldn't advise restarting SQL Server as you could end up with a corrupted database after the restart. Let SQL Server finish it's rollback naturally. It's a pain but it...
March 27, 2013 at 3:42 am
Hah!!! Now I understand.... thanks! 😀
March 22, 2013 at 8:24 am
Well I believe I have solved the problem!
Originally I was creating my staging table with a clustsred index before I was populating it with the data coming from the CLR...
March 22, 2013 at 8:19 am
Hmmm.. Galimonster's last comment kind of makes sense but I'm still not entirely sure I understand what's going on.
Another thing which is really confusing is that I have a SQL...
March 22, 2013 at 4:29 am
Removing the filter from the index seems to have done the trick but I'm not satisfied completely as I don't understand the reason for this. Oh well... need to do...
March 21, 2013 at 5:42 am
One ore more entries for the EZACDT column are not valid date formats.
You can add this to your query but it will skip records with invalid date format.
AND ISDATE(CONVERT(CHAR(8),...
March 18, 2013 at 3:35 am
Far more important than size of the Nvarchar fields is if you need the N at all!! 99.2% of the time I see Nvarchars at clients they state they...
March 14, 2013 at 7:16 am
Thanks Grant. Well it's back to the drawing board for me. Need to find other ways of doing the same thing in my code without retreiving so much data!
March 13, 2013 at 6:21 am
Okay great, just one more question that's been bugging me for a while.
My staging table has a lot of NVRCHAR(500) columns. Now I know many of my columns will never...
March 13, 2013 at 5:49 am
Silly question but regarding type conversions. If I have a column that's NVARCHAR(500) and I insert it into a new table that has a column of NVARCHAR(50), would that also...
March 13, 2013 at 5:32 am
Grant Fritchey (3/13/2013)
March 13, 2013 at 5:19 am
anthony.green (3/13/2013)
March 13, 2013 at 5:08 am
Please see latest attached file.
March 13, 2013 at 4:21 am
Also why all the indexes on varbinary(8000) columns? The max length for an index key is 900 bytes, so inserts of anything over 900 bytes will cause the insert...
March 13, 2013 at 4:12 am
Viewing 15 posts - 271 through 285 (of 616 total)