Viewing 15 posts - 1,771 through 1,785 (of 2,900 total)
You could get a trial version of Redgate. Redgate also has a utility to convert their backups into "normal" backups, which you could do with your trial copy in...
October 20, 2009 at 7:57 am
Some 3rd party tools allow specific table recovery. Some would have had to take the original backup with the tool. Apparently Redgate's latest version will do what you want...
October 19, 2009 at 8:15 pm
Remember that the values returned from sys.dm_db_index_usage_stats are only accurate since the last SQL restart because they get reset to 0:
From BOL
"... The counters are initialized to empty whenever...
October 19, 2009 at 1:09 pm
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
Viewing 15 posts - 1,771 through 1,785 (of 2,900 total)