Viewing 15 posts - 2,041 through 2,055 (of 2,897 total)
So, when you changed the DB name from "school" to "School_Restored" you also must change the MDF and LDF to "School_Restored.mdf" and "School_Restored.ldf". Usually SQL does that for you...
November 25, 2008 at 8:27 am
ramazan_erdem (11/22/2008)
i tried your commands but i could not fixed...
November 24, 2008 at 8:11 am
November 24, 2008 at 8:09 am
vkundar (11/23/2008)
I have been trying to log a case in Quest software for past 2 days but some how not able to login to their support site.
Call them on the...
November 23, 2008 at 4:49 am
Lynn Pettis (11/21/2008)
According to this i restore 1st DIFF #3 then DIFF...
November 22, 2008 at 7:50 am
Why do you want to merge them into one file ? Many of us split them into multiple files so that we can improve performance by spreading them over...
November 21, 2008 at 2:57 pm
Michael Earl (11/21/2008)
November 21, 2008 at 9:58 am
Amit Gupta (11/21/2008)
Thanks, if i take 1st #3rd then #2nd then #1 What happen can i lost any data?
I don't understand the question. Are you asking about restoring all the...
November 21, 2008 at 8:01 am
Glen Loupias (11/21/2008)
I've read in several forums and books that there is an I/O...
November 21, 2008 at 7:52 am
Just keep 1 day of backups on your server, and write to tape every night, so you will have them all on tape. Can you zip your .bak files ?
November 21, 2008 at 7:44 am
That's the kind of information I miss from my AS/400 days
November 21, 2008 at 7:41 am
Just creating more files won't help. SQL will only use the new files as they are needed. They need to be spread over more drives to get any benefit.
If you...
November 21, 2008 at 7:37 am
Amit Gupta (11/19/2008)
November 20, 2008 at 10:06 am
Here's my homemade version:
SELECT sysdb.name, bkup.description, bkup.backup_finish_date,
case
when type='D' then '** FULL **'
when type='I' then 'DIFFERENTIAL'
when type='L' then 'LOG'
end as Backup_Type,
(STR(ABS(DATEDIFF(day, GetDate(),(backup_finish_date))))) as 'Days_Ago',
ceiling(bkup.backup_size /1048576)...
November 20, 2008 at 9:21 am
I took a bit of a different approach to examine the SPs. I used your idea of sysdepends by using sp_depends in a loop of all the stored procs to...
November 20, 2008 at 9:02 am
Viewing 15 posts - 2,041 through 2,055 (of 2,897 total)