Viewing 15 posts - 706 through 720 (of 4,745 total)
just some thoughts...
is most of the database made up of one table?
what fill factor do you use when you rebuild, as the database is read only you can use 100%
do...
April 1, 2013 at 10:30 am
master will change when you make server level changes, so as you said when you change security, configurations or changes to other databases such as add or drop or move...
April 1, 2013 at 10:21 am
use the adventureworks database that comes with SQL
March 30, 2013 at 11:00 am
Lowell (3/30/2013)
March 30, 2013 at 10:00 am
if this is giving you a serious issue frankly I would refer it to microsoft support, they are the experts on dump files.
March 30, 2013 at 9:56 am
As the OP has found and Gails blog shows, recovering from system database corruptions can be a complex and error prone process, especially for the model database. Microsoft and BOL...
March 30, 2013 at 5:58 am
run dbcc loginfo(yourdbname)
the row with a status column value of 2 is the last active vlf, you will not be able to shrink beyond that point.
edit forgot to spell check!
March 26, 2013 at 8:56 am
are you doing the insert in batches? after the first batch the table will no longer be empty so you will no longer get minimal logging.
March 26, 2013 at 8:54 am
then the log will have been filling up and growing, consuming your disk space. Set up regular log backups and existing space in the log file will be reused, preventing...
March 25, 2013 at 3:47 pm
SQL_Surfer (3/25/2013)
March 25, 2013 at 3:42 pm
no , a log backup simply backs up the inactive part of the log file, it does not reduce the size of the file on disk.
Only a dbcc shrinkfile...
March 25, 2013 at 3:39 pm
must be an error in copy and paste - you are missing a '.' - it should read master..sysdatabases
this code is compatible with all versions of sql from sql2000, you...
March 25, 2013 at 3:28 am
Jasons query returns the databases that ARE system databases so you would have to flip the logic.
I THINK SQL2005 includes the resource database in the query but SQL2008 and up...
March 23, 2013 at 11:19 am
duplicate post - relies to here please
March 23, 2013 at 6:22 am
Viewing 15 posts - 706 through 720 (of 4,745 total)