Viewing 8 posts - 1 through 8 (of 8 total)
Last time I looked changing the DB Collation didn't change the collation on the individual columns. This is a bit more tricky/risky. Has this changed in SQL2005.
This also doesn't resolve...
November 20, 2008 at 1:32 pm
DTS? SSIS? - NO WAY. This is a once off and it also involves making changes to stored procs and some user defined data types to make them 2005 compatable....
November 20, 2008 at 1:24 pm
Log shipping won't allow me to change the collation.
November 20, 2008 at 12:25 pm
Thanks for the reply.
As I mentioned we are also changing the collation, so we can't just restore and logship. So I create the new ,empty database from scripts. I...
November 19, 2008 at 12:05 pm
Surely the set d.ItemNumber = o.ItemNumber isn't needed as the "join" is on OrderNumber and ItemNumber:
MERGE OrderDetails AS d
48 USING OrderInfo AS o
49 ON (d.OrderNumber = o.OrderNumber AND d.ItemNumber =...
September 10, 2007 at 9:22 pm
It would be interesting to see the query plans for the last two options and see how they compare. Logically we would expect the performance to be better on these...
May 28, 2007 at 10:31 pm
I would be seriously concerned if any of my SQL installations generated 260GB of log files. Are you doing full logging? And what sort of errors are you seeing in...
May 10, 2007 at 6:05 pm
I've just finished a(nother) SQL course and this exact senario was discussed with both of these solutions proposed. i.e. using WITH RECOMPILE or using an itermediate SP to decide which final...
May 7, 2007 at 4:02 pm
Viewing 8 posts - 1 through 8 (of 8 total)