Viewing 15 posts - 271 through 285 (of 341 total)
The advice you received was right: you should never just copy the files after the service is stopped. You need to detach them first. This is a common error.
If you...
October 12, 2004 at 10:21 pm
You will have to remove your trx log backup jobs, and also ensure no jobs truncate the log. Full and differential backups will not break the chain of log backups.
You...
October 11, 2004 at 3:38 am
Caught me napping there! As others have pointed out, msdb..backupmediafamily is the table to look at.
October 7, 2004 at 9:41 am
You could use SQL Profiler and capture the Audit Logout events. You would be able to see the login time and duration easily.
October 6, 2004 at 8:41 pm
You might want to take a look at the msdb..backupfile table.
October 6, 2004 at 8:36 pm
If you restore a differential backup, you just need to restore the trx log backups made after the differential backup. You do not need to apply all the logs made...
October 5, 2004 at 8:31 pm
Inside SQL Server 2000 by Kalen Delaney/Ron Soukop is a very good detailed look at SQL Server. It does not just address writing SQL, it also tells you how the...
October 4, 2004 at 7:03 pm
I don't know about Oracle, but there isn't really a 'backup' mode in SQL Server.
October 4, 2004 at 9:27 am
>> My question is, since these files reside on a RAID 1+0 SAN storage, is there any pupose in having two/multiple data files?
Perhaps the previous DBA wanted to be able...
October 4, 2004 at 1:44 am
You could try the File Handle Analyzer utility located at http://www.wilsonc.demon.co.uk/d7fileanalyzer.htm. Might be able to reveal the process holding on to the files.
October 3, 2004 at 10:22 am
Kill the connection using
kill {spid}
?
Seems to work, but I don't know if there's any side-effects.
October 1, 2004 at 7:00 pm
One possibility for the growth is that you are running DBCC DBREINDEX on one or more large tables. If so, the growth is unavoidable, since SQL Server needs the space...
September 28, 2004 at 7:45 pm
A clusterd index determines how that data is physically ordered in the table, and its leaf nodes contains the table data.
A good metaphor would be the dictionary. The clustered...
September 24, 2004 at 7:35 pm
A differential backup contains all changes made since the last full backup. Thus, in a way, you could say that it contains 'all the log files in one back which...
September 24, 2004 at 7:24 pm
Alex, I should add that if all you want is to perform 3 backups simultaneously (no compression, encryption etc) and you can read a little C, I suggest you download...
September 24, 2004 at 12:14 pm
Viewing 15 posts - 271 through 285 (of 341 total)