Author |
Topic |
muzzettemm
Posting Yak Master
212 Posts |
Posted - 2009-01-21 : 12:02:40
|
Ok I'm just confirming I'm doing this correctly. Lets say someone accidentally drops a table on 01/18/2008 and I need to restore it. I have full backup that was done on the 17th and a differential done on the 16th. Would I restore from the differential done on the 17th?? |
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2009-01-21 : 12:21:06
|
Then just restore from Fullbackup of 17th with diff name and Export that table to your original database. |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
muzzettemm
Posting Yak Master
212 Posts |
Posted - 2009-01-21 : 23:04:59
|
Ok guys thank you |
 |
|
muzzettemm
Posting Yak Master
212 Posts |
Posted - 2009-01-26 : 11:09:21
|
The current backups are Differential and Full, the databases are in Simple recovery |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
muzzettemm
Posting Yak Master
212 Posts |
Posted - 2009-01-26 : 13:04:13
|
ok thats what I was afraid of, thank you. this has no happened I'm just testing. The database have been changed to Full Recovery (The production Databases that is)thank you |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
muzzettemm
Posting Yak Master
212 Posts |
Posted - 2009-01-26 : 13:16:46
|
the system databases like the master are in full recovery mode they are being back up full and diff |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
muzzettemm
Posting Yak Master
212 Posts |
Posted - 2009-01-26 : 13:51:37
|
The transaction logs are backed up the production database are set at Full Recovery. Was seeking advice on system dbs, I will check out THE BOLalso considering a safety triggerSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TRIGGER [safety] ON DATABASE FOR DROP_TABLE, ALTER_TABLE AS PRINT 'You must disable Trigger "safety" to drop or alter tables!' ROLLBACK ;GOSET ANSI_NULLS OFFGOSET QUOTED_IDENTIFIER OFFGODISABLE TRIGGER [safety] ON DATABASE |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|