Hi,
I have table in sybase which is named as test ( which also has a unique index on it)
I am trying to do the below in 1st Session
Begin tran
update test
set......
( now as I am not doing a commit or rollback so there is a lock)
in the second session:
************ the below works fine******************
set transaction isolation level 0
select * from test
-------------------------------------------
but if I use a temp table then it gets hung up until I commit/rollback the first session
select *
into #temp
from test
Is there any workaround for setting isolation level 0 and getting dirty data in a temp table?