Viewing 15 posts - 1,771 through 1,785 (of 2,897 total)
You really need to "roll forward" from a full backup.
You need the most recent FULL backup from before the 17th. The you need the most recent differential before the "problem",...
October 19, 2009 at 10:42 am
Maybe a script like this would help you find the most recent backup and it's path:
select top 1 bset.database_name, bset.Type, media.physical_device_name, backup_start_date
from msdb.dbo.backupset bset
join msdb.dbo.backupmediafamily as...
October 17, 2009 at 11:39 am
Jeffrey Williams-493691 (10/16/2009)
homebrew01 (10/16/2009)
ItalianOlgi (10/16/2009)
Hello,I have question:
What is index fragmentation? Why is important to keep it at or below 20%?
Indexes should be below 10%. Once they reach 10%, they are...
October 17, 2009 at 8:42 am
ItalianOlgi (10/16/2009)
Hello,I have question:
What is index fragmentation? Why is important to keep it at or below 20%?
Indexes should be below 10%. Once they reach 10%, they are now using 2...
October 16, 2009 at 10:53 pm
Will ApexSQL Log Reader work with RedGate backups ? I installed it, and got to the point of entering backup file names but got an error "sys.sysrowsets table could...
October 16, 2009 at 10:02 pm
Would this work :
I set on a trace on the database, then do a restore and go past the delete step. Would the trace show the deletes ?? Would...
October 16, 2009 at 3:19 pm
perhaps the data plus tempdb is greater than the free space. It can help to set the batch size of imports in DTS.
October 13, 2009 at 12:40 pm
Anything useful in SQL or Windows error logs ? Any chance the disk was full at the time, but has free space now ?
October 13, 2009 at 11:28 am
Is the physical hard drive full ?
You fix it by freeing up space. Either non-SQL files on the drive, or shrinking Log or Data files on that drive. Shrinking is...
October 13, 2009 at 10:40 am
He told me it needed to be in the trusted root .... but get another opinion in case I'm wrong.
October 12, 2009 at 11:50 am
I think we had a similar problem recently. I asked someone here and he said a few problems were caused by
not using the fully qualified domain name; having it in...
October 12, 2009 at 11:08 am
I've done it by putting the regular restore script into a job, with additional steps to fix the logins. In my case, the backup file had the same name each...
October 12, 2009 at 7:43 am
Small snippet from BOL:
"...Specifies that SQL Server should create the specified database and its related files even if another database already exists with the same name. In such a case,...
October 12, 2009 at 7:36 am
I scheduled a nightly restore to a test system a while back:
1) Backup to a drive (scheduled)
2) Batch file to copy .BAK to destination server (Step 2 of backup)
3) Destination...
October 9, 2009 at 8:37 am
krayknot (10/21/2008)
Manish Kaushik (10/20/2008)
Hi Guys, Can any one help me out to knowHow to generate the scripts of all tables without the Generate scripts wizard of SQL 2008.
Thanks
Manish Kaushik
create...
October 8, 2009 at 2:07 pm
Viewing 15 posts - 1,771 through 1,785 (of 2,897 total)