Viewing 15 posts - 106 through 120 (of 142 total)
You may also read this article for more information on scripting the Backup and Restore.
http://www.mssqltips.com/tip.asp?tip=1584
Regards, Atul
January 29, 2009 at 9:14 am
Hi,
You can sample scripts from many places. But to run them at specific time, you need to create the Job and run the script within the job itself. Once the...
January 29, 2009 at 9:09 am
The tool is designed in the way that it should meet the requirement of all sort of requests. Let it be disk backup, tape backup, file backup, file group backup,...
January 29, 2009 at 7:02 am
You can simply backup the databases without using all the options in your script. You need not to use all the options available for backup script.
As long as your...
January 29, 2009 at 4:40 am
You can simply backup the databases without using all the options in your script. You need not to use all the options available for backup script.
As long as your...
January 29, 2009 at 4:40 am
Did you try to access the destination folder after password change ?
\\server1011\HLFHB_01025\ The accessibility should be checked in this case with write permission.
January 7, 2009 at 9:06 am
Here is the script that will allow you to backup each database within your instance of SQL Server. You will need to change the @path to the appropriate backup...
December 23, 2008 at 2:28 am
Good query by Jeffery. Yes it will work untill the msdb is not restored post user database restoration.
December 23, 2008 at 1:33 am
You can try this code in the test environment. If this works fine in your case the use it.
DECLARE @DeleteFiles NVARCHAR(4000)
DECLARE file_cursor CURSOR FOR
SELECT 'exec xp_cmdshell ''DEL "'
...
December 22, 2008 at 7:18 am
Hi,
You need to check your database recovery mode in Properties window. It should be Full Recovery for best result.
You also need to check the frequescy of database Full Backup and...
December 22, 2008 at 5:33 am
The snapshot holds locks during the snapshot generation processs. This is what you are seeing.
You need to investigate why these deadlocks are occuring and see if you can change the...
December 18, 2008 at 9:31 am
The Resource database is a read-only database that contains all the system objects that are included with SQL Server. SQL Server system objects, such as sys.objects, are physically persisted in...
December 18, 2008 at 5:28 am
But even restoring the 42GB file should not take more then one hour. I things something else is going on the server or the disk is not having more than...
December 16, 2008 at 10:13 am
This may provide some light on the usage of DBCC Updateusage and SP_updatestats.
DBCC UPDATEUSAGE corrects the rows, used, reserved, and dpages columns of the sysindexes table for tables and clustered...
December 16, 2008 at 10:07 am
Microsoft has released couple of hot fixes. But as I said I have not heard or read the problem related to yours. I tried the same on my servers and...
December 16, 2008 at 9:17 am
Viewing 15 posts - 106 through 120 (of 142 total)