Viewing 15 posts - 46 through 60 (of 78 total)
Do take a database backup of after changing the recovery model
October 19, 2008 at 3:41 pm
Try This One =>
create table #test(servicename varchar(50),status varchar(50))
insert into #test(status) exec master..xp_servicecontrol 'QUERYSTATE','Sqlserveragent'
update #test set servicename='Sqlserveragent'
select * from #test
October 19, 2008 at 3:21 pm
You can also add trace flag 1205 along with the 1204 trace flag which will more details about the deadlock..
October 19, 2008 at 3:05 pm
Check whether you have applied latest SQL Server service pack(SP2 refresh version) on the server
Cheers ! 😉
October 19, 2008 at 2:53 pm
Dont Forget to take cold as well as hot backup before moving system databases. 🙂
October 19, 2008 at 2:48 pm
I do agree that if virus scanning is going on those database files,it may give you a problem..
October 19, 2008 at 2:38 pm
Please follow these steps :-
1) On your local machine,create linked server for each server you want to monitor.
2) Create stored procedures/write select statements on your local machine.
(You can use four...
October 19, 2008 at 2:12 pm
Try this one...Hope it helps 🙂
select * from openquery(linkedservername,'sp_help')
October 19, 2008 at 2:06 pm
kindly let me know the SQL Server version 🙂
October 13, 2008 at 3:23 am
Waw !!!
This helped me a lot.............:w00t:
Thnks a Lottt.............
u r gr8....:)
December 12, 2007 at 10:47 pm
August 2, 2007 at 7:27 am
July 30, 2007 at 4:31 am
Thnks !
I think by exporting this registry value and importing this value to another client machine may help !
thnks a lot
July 26, 2007 at 8:17 am
this might help.....
in profiler Filter tab mention "Objectid Equals" to object id of that table.
you can find the object id of any table like this..
select object_id('databasename..tablename')
specify this object id in...
July 26, 2007 at 6:46 am
Viewing 15 posts - 46 through 60 (of 78 total)