Viewing 15 posts - 7,231 through 7,245 (of 8,416 total)
rja.carnegie (9/3/2009)
September 3, 2009 at 7:34 am
Jeff - great stuff, as usual. (Kevin, eh? Hmmm...)
Let me add my congratulations to the author: this tends to be an emotional topic, so well done on presenting...
September 3, 2009 at 6:47 am
GilaMonster (9/2/2009)
You don't. For log shipping to run, the secondary database must be either RECOVERING or STANDBY. If the database is brought online further log backups cannot be restored.
You mean...
September 3, 2009 at 5:13 am
Jeff Moden (9/2/2009)
September 3, 2009 at 4:49 am
rja.carnegie (9/3/2009)
September 3, 2009 at 4:12 am
What sort of clustering is it you use?
I use PolyServe Matrix these days (shared-everything) so we use a combination of mirroring, log shipping, and replication - for various reasons, in...
September 3, 2009 at 12:08 am
I agree it seems like an odd requirement, but that said:
One way to do this would be to dump the IDENTITY column and use a Sequence Table instead. This...
September 3, 2009 at 12:00 am
Hey tvanharp,
Like many of the good folks on here, I'm willing to put some effort into this to help you toward a definitive answer.
It would be most helpful if you...
September 2, 2009 at 11:43 pm
Mathew Michuta (9/2/2009)
September 2, 2009 at 7:18 pm
A compact way to get a usually-accurate row count for a table is:
SELECT row_count = SUM(row_count)
FROM sys.dm_db_partition_stats DPS
WHERE DPS.[object_id] = OBJECT_ID(N'dbo.TableName', N'U')
AND ...
September 2, 2009 at 4:11 pm
wbrianwhite (9/2/2009)
http://www.techonthenet.com/sql/count.php
"TIP: Performance Tuning
Since the COUNT function will return the same results regardless of what NOT NULL field(s)...
September 2, 2009 at 3:33 pm
sqlservercentral (9/2/2009)
September 2, 2009 at 3:26 pm
Thanks for that. Other things of interest include:
* Are you able to schedule some database off-line time for this work?
* If so, how long?
* What would...
August 31, 2009 at 7:18 pm
Andy DBA (8/31/2009)
Sorry for beating this to death, but
As am I. I think we've covered this ground already, and determined that the counter-intuitive behaviour is limited to NOT IN...
August 31, 2009 at 6:29 pm
TheSQLGuru (8/31/2009)
August 31, 2009 at 5:40 pm
Viewing 15 posts - 7,231 through 7,245 (of 8,416 total)