Viewing 15 posts - 391 through 405 (of 440 total)
It may not be your exact problem, but I think this article will help you.
September 26, 2011 at 4:13 am
Trying to Keep it short when writing on the phone. The uniqueifier cause the table to require a variable length block as well. So, in sone cases it is beneficial,...
September 23, 2011 at 10:16 am
Lynn Pettis (9/23/2011)
September 23, 2011 at 9:36 am
Generally speaking, the primary key is a good clustering key. Does this table have a primary key? Use it.
Generally speaking, I'ld say this is not a good advice. I find...
September 23, 2011 at 7:33 am
Do you have a clustered index? If so, is it unique? Otherwise, updates can cause page splits. Aborter possibility, have you recently started to use row versioning (snapshot isolation)?
September 22, 2011 at 11:32 am
Basically: There is no way to do so. And, disk queue length is among the performance counters I rarely use. I would recommend that you take a look at Brent...
September 21, 2011 at 3:19 pm
One solution would be to do it in SQL instead: Cast it to the xml data type and the use the xml methods (nodes/value etc).
September 21, 2011 at 3:14 pm
September 21, 2011 at 2:40 pm
In High-Safety (synchronous mode) the principal will continue to serve the database.
September 21, 2011 at 6:44 am
Yes, you can. Cast the image column(s) to/from varbinary(max).
September 21, 2011 at 12:31 am
Ah, I see now. It uses mirroring for replication, so it's the same.
September 21, 2011 at 12:27 am
Disclaimer: I've not tested this in a lab, only read about it.
Each mirror (or seconadary if you want) can be set up to be updated synchronously or asynchronously. In addition,...
September 20, 2011 at 11:45 pm
A bit late now, but I always recommend having a file copy of the master database, so that you hopefully never will have to rebuild it.
September 20, 2011 at 6:31 am
As far as I've seen, Always on is a hybrid between Database Mirroring and Clustering. It uses Clustering to maintain Quorum, and Mirroring to replicate data between the nodes. Due...
September 20, 2011 at 6:27 am
I would instead have the procedure return the three columns to SSRS, and then use formatting in SSRS. In that way, you could set for instance the text of column2...
September 20, 2011 at 4:53 am
Viewing 15 posts - 391 through 405 (of 440 total)