Viewing 15 posts - 1 through 15 (of 39 total)
One of the reasons I am looking into file backups is because our database is used for data warehousing and data is loaded strictly in chronological order and never updated....
January 2, 2004 at 12:59 pm
DBCC showfilestats (-1, -1) reports usage for all files in the current database (in extents).
December 31, 2003 at 10:00 am
Set a limit on the max file size of the current file to force all your data to the
new file immediately.
I am curious of new log file usage. Since it...
December 31, 2003 at 9:16 am
Rebuilding the clustered index with Sort_In_Tempdb has improved the
logical contiguity tremendously for me. Be sure to do the Drop Existing
if you have any non clustered indexes. Search BOL for "tempdb...
December 30, 2003 at 9:46 am
Is it something like,
Alter table Test add constraint Test_CK Check
Column1 in dbo.udf_GetParentTableKeys ()
Do you have an example? Does this perform better than a trigger?
Thanks.
December 29, 2003 at 3:50 pm
This procedure shows history between two runtimes. I am looking for something that would show
the jobs sheduled to run between provided timeframes in the future.
I appreciate your time.
Thanks.
December 17, 2003 at 8:00 am
I had the same problem, when I was trying to retrieve the backup job history for all our servers. Apparently
when one of the remote servers is not available or login...
November 24, 2003 at 8:30 am
I was hoping this would work:
SELECT * FROM OPENQUERY (BIGDB, 'DBCC showfilestats ')
But, doesnot.
I get:
Server: Msg 7357, Level 16, State 2, Line 1
Could not process object 'DBCC showfilestats '....
November 19, 2003 at 1:07 pm
That works great. Thanks you.
It is interesting I needed to run it a couple of times to get it to 0% fragmentation.
I would prefer to get the old partitions as...
November 13, 2003 at 3:04 pm
Thank you. That supports the additional testing I did. Do you know how to
explicitly code for ROLLBACK if the proc execution is cancelled?
thanks.
November 7, 2003 at 3:35 pm
I would schedule for frequent log backups during the optimization job.
November 5, 2003 at 7:42 pm
I would schedule for frequent log backups during the optimization job.
November 5, 2003 at 7:41 pm
With the batch size configuration, I can limit the #rows in my transaction, thus if the batch fails only the inserts in that batch are rolled back. I do have...
November 5, 2003 at 7:56 am
Thanks to mom, gljjr and erasmusj for your replies, they would definitely work. But consider the situation where I do not have a PK, or my primary key consists of...
November 4, 2003 at 9:58 am
Viewing 15 posts - 1 through 15 (of 39 total)