Viewing 15 posts - 2,236 through 2,250 (of 2,897 total)
No, you can't see the network drive. But you can copy-paste the network path into the file location area.
To avoid network problems interfering with the backup, you could backup locally,...
August 31, 2008 at 3:41 am
Idera's Compliance Manager can tell you when changes were applied. I can't remember if it captures the actual SP code, or just logs that ALTER PROCEDURE occured by Person_A on...
August 30, 2008 at 3:17 pm
I found this on another forum:
Disclaimer: I have not done this... I am just copying what was posted elsewhere in the hope that it helps. Can you set up a...
August 30, 2008 at 11:50 am
mobasha (8/30/2008)
i was thinking of Idera have u tried it?
I used different Idera products at my previous job (Diagnostic Manager, SQLSafe, Compliance Manager). They were pretty good. As suggested, get...
August 30, 2008 at 10:54 am
sahoong (8/29/2008)
I have just taken over the administration of a database. The backup procedure is
1. Shutdown SQL server
2. Copy the SQL files to "D:\Backup\yyyy mm dd"
3. Start SQL...
August 29, 2008 at 9:59 am
It amazes me that the lack of backups is so common. I will be starting a new job soon, and after finding my desk, the first think I will do...
August 29, 2008 at 9:34 am
You can run something like this to identify databases that have not been backed up in the last n days:
select * from master..sysdatabases db
where (not exists
(select * from msdb.dbo.backupset
where...
August 29, 2008 at 9:18 am
tempdb is the only db you don't need to backup. It's always better to back up too much & too often (within reason of course) ....... but "Murphy" is always...
August 28, 2008 at 5:54 pm
Who made the decision not to have daily backups ? Can't just blame that on your co-worker too, can you ?
August 28, 2008 at 5:51 pm
Do I understand correctly that Table_A has the additional columns, and that you want to add Table_B as a newly replicated table ?
I've done the following when making changes to...
August 27, 2008 at 9:03 am
Christopher Favero (8/26/2008)
Oberion (8/20/2008)
August 26, 2008 at 6:46 pm
I remember doing it on SQL 2000 also. I couldn't browse to the file location in the backup & restore GUIs, but I could "copy-paste" it into the file...
August 26, 2008 at 6:36 pm
I haven't been on 2000 in a little while, but I think you can script out all the objects from your production database to a single .SQL file. Then create...
August 26, 2008 at 6:30 pm
Rather ironic that the OnlineExam database didn't get backed up.
Going forward, you can run something like this to identify databases that have not been backed up recently:
select * from master..sysdatabases...
August 26, 2008 at 6:24 pm
jchen (8/25/2008)
August 25, 2008 at 3:15 pm
Viewing 15 posts - 2,236 through 2,250 (of 2,897 total)