Viewing 15 posts - 586 through 600 (of 816 total)
like i suggested you earlier, your log restoration sequence will be broken on secondary till you not restore your latest full or differential backup and then onwards log backup
September 16, 2010 at 6:09 am
is facilities always 1? What type of field is storing value '1' or '15'? Is it int or varchar?
September 16, 2010 at 5:48 am
Would multiple steps within a batch have the same effect: ?
insert into tableA ....
update tableA ...
insert into tableB ....
All run in the same job step (but no explicit transactions)
if they...
September 16, 2010 at 5:44 am
try this :-
DECLARE @sqltext VARBINARY(128)
SELECT @sqltext = sql_handle
FROM sys.sysprocesses
WHERE spid = 'your spid'
SELECT TEXT
FROM sys.dm_exec_sql_text(@sqltext)
GO
the length you can modify further
September 16, 2010 at 5:06 am
which version of sql you installed?
September 16, 2010 at 3:46 am
I think, it’s possible only in SQLServer2005 since it won’t break the log chain.
that is the copy only option and yes its from 2005 onwards.
But you can take the...
September 16, 2010 at 3:41 am
you can use any test database to first understand the basic architecture of database and can also familiarise yourself with sql queries.
Then you can proceed further with backup/restore sequence.
Have a...
September 16, 2010 at 3:15 am
thanks steve, I already did that. Actually I restored all logs and then last log with recovery assuming that might be this time the record get deleted. But I was...
September 13, 2010 at 8:50 am
thanks Gail.
Yes, now I am going to take the backup of till now restored database and then will restore it with no recovery and then further logs..
September 13, 2010 at 8:26 am
yes it will be automatically refreshed on secondary but it depeneds on how frequently you refreshing you secondary by log backup of primary..
September 13, 2010 at 3:37 am
then i think. like i suggested earlier, you need to run the trace to capture the deadlock event using profiler, if that is possible.
September 13, 2010 at 2:53 am
you can run the profiler to capture the deadlock event and deadlock graph for better clearity.
Just run the profile with only deadlock event and deadlock graph for specific database and...
September 13, 2010 at 2:46 am
i dont have much idea on coding so just tried to search for this issue and found this article
http://www.go4answers.com/Example/database-mirroring-asp-application-13913.aspx
hope it will answer your question.
September 13, 2010 at 2:16 am
Also you can schedule the job which will copy your backups regulary to some safe place and can be used in time of recovery.
September 13, 2010 at 1:58 am
Viewing 15 posts - 586 through 600 (of 816 total)