Viewing 15 posts - 61 through 75 (of 109 total)
Normally you can delete all the log files once a full or diff back has been done.... as i our env we've a staging area where all the backups get...
August 16, 2010 at 3:44 am
See it seems to be some file mismatch issue.
Try below
1. Backup destination db.
2. Delete this db. (Anyhow this will be overwritten)
3. Restore the db using move options if you want...
August 16, 2010 at 1:41 am
Adiga (8/4/2010)
Why not use this query instead of using the GUI?
BACKUP...
August 13, 2010 at 7:40 am
I've never used light speed as such but used redgate and according to it... you can only backup & restore databases on the instance where redgate has been installed..... and...
August 13, 2010 at 3:58 am
I too agree with Ashish as if this backup is native sql backup then only you shud use SSMS or query analyzer to restore this, if this is a redgate...
August 13, 2010 at 3:53 am
See when you already have your prod server on a cluster and this exercise you're doing for the worst case scenario, then I don't think you need a more spare...
August 13, 2010 at 3:50 am
one more addition... you can also try snapshots as restoring from snapshot takes very less time as compared to full backup.
But in this case u don't have choice my friend.....
Rohit
August 12, 2010 at 7:31 am
if you're defraging the indexes then the next step of this job should be updating the statistics.
As defrag doesn't updates the statistics.... if ur reindexing it then no need to...
August 12, 2010 at 7:27 am
jshailendra (3/29/2010)
1) Never create any objects in system databases(specially in master)
I agree but these thing are in place from last 5-7 years and it will be really tough for me...
March 29, 2010 at 9:01 am
irena.bulatovic (3/29/2010)
If you have functions or stored procedures in master you can script them and then create on new server.
This I haven't tried as I'm not sure except logins and...
March 29, 2010 at 3:51 am
Guys....... I'm not sure whether I was able to explain you as what exactly we're trying to do..... Lets start it all again....
In our comp we're not having any DR...
March 29, 2010 at 2:33 am
I don't need that backup as this was a fresh install and then I started to rebuild the server...
irena.bulatovic (3/26/2010)
March 27, 2010 at 2:25 am
scott williams-465021 (1/19/2010)
January 19, 2010 at 11:20 am
try this.
USE master
EXEC sp_configure 'show advanced option', '1'
go
RECONFIGURE WITH OVERRIDE
go
EXEC sp_configure 'allow updates', '1'
go
RECONFIGURE WITH OVERRIDE
go
--Now update the table u wanna update
begin tran
update master.sys.sysdatabases set status = 16 where name...
January 19, 2010 at 11:16 am
Guys one more thing.. if I restore differential backup on secondry in place of full backup will it work???
Sudhakara it's always a good practice to post the solution also once...
January 11, 2010 at 9:49 am
Viewing 15 posts - 61 through 75 (of 109 total)