I have an ABAP class with various methods for reading from / writing to a remote Microsoft SQL Server 2005 instance.

Everything works as expected. Now I've been advised to add a SQL Server table hint (READPAST) to a SELECT query, for safety reasons (it should be a measure against deadlocks - I'm far from a SQL expert).

Sadly I can't make it work. This is my Native SQL block and as it is it works:

EXEC SQL.
  OPEN ritc FOR
    SELECT FIELD1,
           FIELD2,
           FIELD3,
           FROM MY_TABLE
           WHERE FIELD1 <= :lv_variable1
             AND FIELD3 =  :c_constant
ENDEXEC.

If I try adding WITH(READPAST) right after FROM MY_TABLE, I get this error: You can only specify the READPAST lock in the READ COMMITTED or REPEATABLE READ isolation levels.

Fair enough: I tried adding this command right before the OPEN ritc line:

SET TRANSACTION ISOLATION LEVEL READ COMMITTED

This elicits a different error: at the first FETCH command after this block I get an error message saying the cursor ritc exists and it's already opened.

At this point I'm not even sure I can add table hints to a Native SQL block?

Any suggestions? Thanks in advance.

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

I think the SET needs to be done after the OPEN.

EXEC SQL.
  OPEN ritc FOR
    SET TRANSACTION ISOLATION LEVEL READ COMMITTED
    SELECT FIELD1,
           FIELD2,
           FIELD3,
           FROM MY_TABLE WITH (READPAST)
           WHERE FIELD1 <= :lv_variable1
             AND FIELD3 =  :c_constant
ENDEXEC.
link|improve this answer
Thank you, I'll try that as soon as I can! – MacThePenguin Nov 4 '10 at 20:23
Yes, this works! Thank you. – MacThePenguin Nov 5 '10 at 15:41
feedback

Maybe you needed the BEGIN TRANSACTION statement?

(You also need an END TRANSACTION statement in another ABAP block.)

link|improve this answer
Maybe it would (I haven't tried), but I don't want to use NOLOCK: I want to use READPAST, it's quite a bit different. Thanks for your suggestion anyway. – MacThePenguin Nov 4 '10 at 16:52
updated answer... – Hogan Nov 4 '10 at 17:01
Thanks for the update. I've googled for a while and I haven't found a way to set the isolation level from the connection string. Actually, I have found this post here on stackoverflow that says it can't be done: stackoverflow.com/questions/3303782/… – MacThePenguin Nov 4 '10 at 17:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.