Viewing 9 posts - 1 through 9 (of 9 total)
I don't do any application data deletion and don't know when that happens so I run this code once a month. So far I see no excessive file allocation, but...
December 31, 2009 at 12:38 am
One-off SHRINKING IS NOT POSSIBLE with more than 6000 databases. You have to have an algorithm for this. Any suggestions?
December 16, 2009 at 7:04 am
It seems to me that most of you people agreess that it is OK to do a SHRINKFILE "within a reasonable amount of time" so what is that? One month...
December 16, 2009 at 4:29 am
Fragmentation on a NetApp SAN-disk is no problem - you do not need to do any defragmentation. We have skipped Diskkeeper which we used for the old local disks.
December 16, 2009 at 3:33 am
Well, e.g. we have a partitioned database which allocates a new file for each month. We remove unallocated space in all prvious mont if nessecary. The database had grown to...
December 16, 2009 at 3:03 am
We do shrink each file, but first we check if it contains a lot of unallocated space (e.g. > 10%):
.
.
-- Skip small files
IF @totalextents < 2000
BEGIN
PRINT 'Skipping file ID...
December 15, 2009 at 7:24 am
My suggestion is to look in the system tables to see if a database is backed up fully or not. We do this before the log backup:
--use Filer
--go
--IF OBJECT_ID('spF_BackupNewDB') IS...
September 8, 2009 at 5:38 am
In had the same problem to create an assembly on a remote server using an unc-path from my local SQL Management Studio (2008). I then used terminql services and started...
March 19, 2009 at 8:43 am
See if you can use my SP spF_build_import on http://www.sqlservercentral.com/scripts/contributions/1537.asp which will "Import database from source server using full and transaction log backups as recorded in msdb. Use it to...
August 3, 2005 at 6:58 am
Viewing 9 posts - 1 through 9 (of 9 total)