Viewing 15 posts - 796 through 810 (of 1,248 total)
71 camaro (1/16/2008)
Thanks however I am trying to append getdate to the end then do as you described. I am struggling with getdate(0) conversion I guess.
I mean you attach the...
January 17, 2008 at 2:24 pm
There is at least one big difference when your database is bigger than any of drives. In this case, we can use device to split up the backup files.
January 17, 2008 at 2:21 pm
Here is a link for you.
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/failclus.mspx
January 17, 2008 at 2:14 pm
Partial answer for your question.
@@Servername returns the SQL Server name, more precisely, SQL instance name.
January 16, 2008 at 2:04 pm
There is a column, date_modified in the msdb..sysjobs. It tells us when a job is modified. But we need to create another table to compare this one in order to...
January 16, 2008 at 1:41 pm
It seems that the registries or database files of your SQL Servers are also damaged. You had better re-install your SQL Server and restore your databases.
January 15, 2008 at 8:57 pm
It would be from the point that the backups completed. We did this kind of experiment. In a backup process, data files are backed up first, then transactions are applied.
You...
January 15, 2008 at 8:52 pm
Did you check your disk and see whether or not they are healthy?
January 15, 2008 at 8:25 pm
Declare a string, something like
SET @sql = "BACKUP LOG yourDB ...
Execute the string, something like Exec ( @sql)
January 15, 2008 at 8:11 pm
Try:
DBCC SHRINKDATABASE('yourDB')
January 15, 2008 at 8:07 pm
By default, the backup files are not compressed unless the backups are in a compressed folder.
Free space should be removed, but I am not sure about the fragmentation. You can...
January 15, 2008 at 8:02 pm
I believe you would like to find jobs.
You can go to the msdb..sysjobs to find it.
SELECT DISTINCT name from msdb..sysjobs
January 15, 2008 at 8:20 am
My understanding is that SMO is used to manage the objects and SQL Server administration. It is not really a client tool.
January 14, 2008 at 8:53 pm
Go to your source database to generate;
Excerpt your desired snippet of script;
Run it on your target database.
January 14, 2008 at 7:31 pm
Viewing 15 posts - 796 through 810 (of 1,248 total)