Viewing 15 posts - 556 through 570 (of 816 total)
The file extension makes no difference. BAK and TRN are just standard/associated file extensions with SQL Server backups.
yes true but you also need to be make file more understandable for...
September 20, 2010 at 10:43 am
if you remember that backup you have taken is full then you can chage the extension to .bak instead of .trn.
September 20, 2010 at 10:37 am
copy job will not make any mix up with restore.
the only thing you need to make sure that you doing the restoration in sequence.
lastest full backup
latest diff backup(if applicable)
start from...
September 20, 2010 at 10:06 am
ok, so if the database was properly detached then you will be able to attach them.
whats the problem/error you getting while attaching the files?
Also try to attach with original...
September 20, 2010 at 8:27 am
i will suggest reconfigure the log shipping for that perticular database.
September 20, 2010 at 8:04 am
the new database have new definition and you mixed the definition with old mdf....and sql is totally not able to understand the definition from the replaced mdf file.
if you have...
September 20, 2010 at 5:15 am
if you not able to attach it, it could be because it was not properly detached.
do you the database somewhere still?
September 20, 2010 at 4:54 am
yes, it will be same.
whenever you want to change to norecovery, simply restore ...... with norecovery and then if you change your mind, simply restore log with standby... and so...
September 20, 2010 at 4:38 am
your database is already in standby mode which means as well in norecovery mode.
So let it be in standby mode because it will help you in 2 way :-
1) will...
September 20, 2010 at 4:13 am
have you tried to change the backup location to some other drive or the drive where you already taking the daily backup.
September 20, 2010 at 3:55 am
When you restoring the last log,
replace occurrence of "WITH NORECOVERY" with "WITH STANDBY = [some _filename]".
[some_filename] = you can mention as 'c:\undo.txt' or whatever....
September 20, 2010 at 3:50 am
what do you mean by norecovery, your database already in norecovery mode as its in standby mode.
be familiar with the term of recovery and norecovery on below link
September 20, 2010 at 3:25 am
instead of directly blaming the sql for the slowness, you need to find
1) is application slow for all users?
2) is the network itsellf working fine?
3) If application is accessed by...
September 20, 2010 at 3:09 am
"SELECT ''£'' FROM ##tempEmail "
i think the problem is with select statement
try with
select '''£''' from......
so three ' before and after £
September 20, 2010 at 3:03 am
when you restore the last log from primary to secondary, you have to provide the option as 'with standby'.
It will make your secondary server database in standby mode and...
September 20, 2010 at 2:57 am
Viewing 15 posts - 556 through 570 (of 816 total)