Viewing 15 posts - 721 through 735 (of 4,745 total)
the system databases are always database ID (dbid) 1 -4, so use where clause
where database_id > 4
these will always be user databases.
If you have reporting services this will include...
March 23, 2013 at 6:01 am
use the backup details in msdb - this query will tell you when a database was last backed up (full backup)
select a.name, b.backup_finish_date, a.crdate
from master..sysdatabases a left join msdb..backupset b...
March 23, 2013 at 5:58 am
Grant Fritchey (3/22/2013)
I don't quite get how those numbers are laying out. Sorry.You have max degree of parallelism set to 0, 1024, 0, 0? It's just a single value.
its a...
March 22, 2013 at 11:35 am
any replies to this last question in the thread to here
March 22, 2013 at 11:27 am
let the dbcc run through to completion, is it faster than on the old server?
look at the parallelism setting, does overall CPU come down if that is scaled back from...
March 22, 2013 at 11:26 am
no, sorry. Check your server level settings.
March 22, 2013 at 8:36 am
during the migration window I would just run dbcc updateusage() and sp_updatestats, thats enough to get the database performing under the new version..
I presume you run checkdbs on a regular...
March 20, 2013 at 3:17 pm
in this situation its totally unnecessary, a restore will overwrite the database as you want it.
why start detaching production databases and then not using the log file when you don't...
March 20, 2013 at 9:03 am
to everyone out there, attach with rebuild log is a last resort, please don't replace restores with it.
March 20, 2013 at 8:06 am
kevaburg (3/20/2013)
March 20, 2013 at 7:52 am
as far as i know this restore is done. ending up with the files you want is all doable via a restore of a bak file, starting to take risks...
March 20, 2013 at 6:31 am
another thing - have you run any reindexes whilst monitoring largest log size? Thats likely to be your biggest user of log space
March 20, 2013 at 6:14 am
this could be a chance to really tidy up the log and reduce the number of vlfs as well. I would try shrinking the log right down to 1mb, and...
March 19, 2013 at 4:42 pm
sql 2008 enterprise has this feature. From Sql 2008R2 it was available in the standard edition.
If you are on 2008 standard there are a number of third party tools that...
March 19, 2013 at 4:23 pm
Viewing 15 posts - 721 through 735 (of 4,745 total)