Viewing 15 posts - 586 through 600 (of 2,612 total)
If they are already in KILLED/ROLLBACK state, you cannot kill them again. Since they are actively processing a rollback, restarting the server will just continue the rollback when they...
September 29, 2008 at 9:28 am
If you need data and structure, one of the most common practices is to do a database backup (or use a backup from your DR plan) and restore it to...
September 29, 2008 at 9:05 am
Altering the rows per batch will restrict the number of records being transferred at a time. The maximum number of rows that can fit in memory will give you...
September 29, 2008 at 8:33 am
You can alter objects using the GUI if you go through the replication UI. Once you are replicating an article, you have to use the replication UI to make...
September 29, 2008 at 6:37 am
If you were to enable Cross-Database ownership chaining, you would be able to give them access just to DatabaseA and they could have access to DatabaseB tables if the VIEW...
September 26, 2008 at 10:06 am
Matt has excellent points. You should take his advice and avoid this approach.
If you have to pass "list" of things, you should consider XML rather than splitting up delimited...
September 25, 2008 at 7:55 am
I don't see how it could know the difference from a virtualized server and a physical one. It should work - the install should not stop you. It...
September 25, 2008 at 7:50 am
On each component, there is a "Fail package on failure" property that you can use to manage (to some degree) when event handlers will and will not fire. It...
September 25, 2008 at 7:46 am
It's usually best - in MS SQL Server - to default to trying to do everything in set-based operations. MS SQL is not good a row-by-row processing.
However, there are...
September 25, 2008 at 7:39 am
The additional check if there are records to insert will hurt performance in a couple of ways. First, it is an extra statement every time there is something to...
September 25, 2008 at 7:33 am
The only way I have done this is to consider the conversion a client-side operation. Everything passed to the server, stored on the server, and used by the server...
September 25, 2008 at 7:07 am
You should thank your DBA - that is a very good decision they have made.
September 25, 2008 at 7:04 am
SQL Server will store up to 8 bits in the same byte. 1 bit field takes 8 bytes of space, 2 bits takes 8 bytes, 9 bits takes 16...
September 25, 2008 at 7:01 am
Windows often displays characters that it cannot display as a square box. It could be anything - a line feed, a korean character that you do not have installed,...
September 25, 2008 at 6:56 am
Viewing 15 posts - 586 through 600 (of 2,612 total)