Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Parser can not parse the correct code:{ LOCK TABLE ... } Problem with parsing?

2907631Dec 18 2018 — edited Feb 28 2019

The code below is compiled and executed in Oracle Database 18c (18.3), but the parser cannot parse it.

Is this some kind of problem with parsing?

create table t(n number)

/

begin

lock table t in share row exclusive mode;

end;

/

parser_syntax_error_3.png

This post has been answered by Vadim Tropashko-Oracle on Dec 19 2018
Jump to Answer
Comments
Post Details
Added on Dec 18 2018
6 comments
337 views