Viewing 4 posts - 1 through 5 (of 5 total)
for anyone whos interested...
declare @cmd_t table (id int not null identity(1,1) primary key, cmd nvarchar(200))
declare @wait_time int
set @wait_time=60000
insert into @cmd_t(cmd)
select distinct 'kill '+convert(nvarchar,spid) from sysprocesses where spid in (
select blocked...
May 14, 2009 at 8:41 am
i already know what is locking
May 14, 2009 at 4:39 am
sorry my question was asked very badly!
really what i want is something that will show me what tables are updated in our live ERP system if for example...
May 8, 2009 at 3:00 am
yea i want to track changes in data - tho if possible as cheaply as possible!!:hehe:
May 8, 2009 at 1:55 am
Viewing 4 posts - 1 through 5 (of 5 total)