Viewing 10 posts - 16 through 25 (of 25 total)
There is another benefit of giving advice. I find that I actually understand something better myself when I try to explain it to someone else - like the thoughts become...
January 20, 2010 at 3:30 am
No, just used shrink option from the SSMS (2005)...
October 15, 2009 at 9:03 am
My concern is the huge disparity between the actual data in the databse (i.e. almost none) and the space is it taking up (1Gb)! Shrinking doesn't seem to have any...
October 15, 2009 at 8:58 am
My original disgnostic query:
SELECT object_name(i.object_id) as objectName,
i.[name] as indexName,
sum(a.total_pages) as totalPages,
sum(a.used_pages) as usedPages,
sum(a.data_pages) as dataPages,
(sum(a.total_pages) * 8) / 1024 as totalSpaceMB,
(sum(a.used_pages) * 8) / 1024 as usedSpaceMB,
(sum(a.data_pages) * 8)...
October 15, 2009 at 7:27 am
Sorry, msdbdata.mdf = 1,012,608 KB and msdblog.ldf = 10,752 KB.
Results from dbcc loginfo:
FileIdFileSizeStartOffsetFSeqNoStatusParityCreateLSN
22539528192 6870201280
2262144262144 ...
October 15, 2009 at 7:26 am
Have you tried dropping a token and seeing if it makes it through OK?
October 14, 2009 at 9:00 am
Replication can be fickle. Sometimes it seems reinitialising just doesn't work and we have to recreate the entire replication job again.
October 14, 2009 at 8:59 am
Thanks for the advice - really useful stuff.
October 14, 2009 at 6:51 am
dave-488664 (10/14/2009)
OK - but *when* is this?! Should...
October 14, 2009 at 4:40 am
Viewing 10 posts - 16 through 25 (of 25 total)