Viewing 15 posts - 511 through 525 (of 860 total)
GilaMonster (3/19/2009)
My criteria for clustered indexes - narrow, unchanging, unique, ever-increasing.
That's a good one Gail. Explains everything just in 4 words.:-D
March 19, 2009 at 10:07 am
ALTER INDEX ‘indexname’ ON ‘tablename’ REBUILD
by default Rebuilding is OFFLINE unless you specify WITH clause as in:
ALTER INDEX ‘indexname’ ON ‘tablename’ REBUILD WITH (ONLINE=ON)
March 19, 2009 at 8:52 am
shnex (3/19/2009)
If I make log backups ...the log space will be reusable
Yes, the VLF's are marked as truncated to make them reusable.
, but in order to use the log information...
March 19, 2009 at 8:49 am
By the way these codes are from Kalen daleney's Inside SQL server, I ahve used them and they are quite handy.
March 19, 2009 at 8:40 am
Use this query to check the TOP10 waits
SELECT TOP 10
wait_type,
waiting_tasks_count AS tasks,
wait_time_ms,
max_wait_time_ms AS max_wait,
signal_wait_time_ms...
March 19, 2009 at 8:39 am
shnex (3/19/2009)
Because I want to shrink it but I'm affraid of unknown side effects.
I know that shrinking the database...
March 19, 2009 at 8:32 am
Oopps..thanks for correcting me Lowell. One of those days you see 🙁
March 18, 2009 at 7:46 pm
MichaelJasson (3/18/2009)
I am getting follwoing error while taking backup on n\w as follows:
Backup device failed - Operating system error; Desc: BackupDiskFile::OpenMedia: Backup device '\\BY2STGOCSQL02\Z$\MSSQL.1\MSSQL\Log\FinalOctaneXmlDB\FinalOctaneXmlDB_backup_200903170800.trn' failed to open
I want...
March 18, 2009 at 7:19 pm
Do you know this wonderful tool Default trace?
You can enable it and script a table to load the trace files from the default trace to a custom created table....
March 18, 2009 at 6:47 pm
Nope, There is no way to restore it onto a lower version. SQL server never downgrades a database to a lower version. the only option here we have got is...
March 18, 2009 at 6:39 pm
dber (3/18/2009)
I am backing up over the network to a share, and would like the job to automatically delete older backups on that particular share.
It always advisable to...
March 18, 2009 at 6:31 pm
Restore your 2000 backup file on 2005, it would be upgraded automatically.
March 18, 2009 at 6:02 pm
Script out all your objects and then run them against your destination database.
March 18, 2009 at 5:55 pm
Paul Paiva (3/18/2009)
Good article and everyone has brought up some good points.
Thanks for the feedback Paul.
However we should also investigate additional reasons that the log filled up in the...
March 18, 2009 at 5:49 pm
Viewing 15 posts - 511 through 525 (of 860 total)