Viewing 6 posts - 1 through 6 (of 6 total)
I guess in Oracle 10G this feature is available.
For 8i you have to use something like
Select * from MyTable where MyField like '__r%' or MyField like '__l%'
October 15, 2004 at 2:55 pm
Try set operations like the following if the column positions & type are same in both the tables even if the column names are different.
select * from table1 minus select...
September 22, 2004 at 8:55 am
have you tries text columns?.
September 26, 2003 at 1:32 pm
Run sp_lock to see if the table/rows which you are trying to delete are being locked by any other user . You delete will wait until the other...
September 26, 2003 at 12:16 pm
Thanks Allen,
Also I could see the SQL being executed by the session from the current activity in the Enterprrise manager by clicking on the session .
Does SQL server rollback...
July 15, 2003 at 3:15 pm
Thanks for the replies.
This error is intermittent, not regular.
I checked sp_who2 and saw two sessions were blocke dby other sessions, but I could not find out the exact...
July 15, 2003 at 11:46 am
Viewing 6 posts - 1 through 6 (of 6 total)