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!

SQL worksheet F9 problem

481013Jan 17 2006 — edited Jun 29 2006
Try this, paste the following lines into the SQL statement area

select 8

select count(*) from user_tables;

position the cursor on the count(*) line, press F9. the command at the cursor should be executed, but it is not. and ora-00923 error is returned.

the problem is that the parsing is starting at the first line in the window. it will work if the first line is commented out. the proper way to handle this is to find the command associated with the cursor, and just parse (and execute) that command. that is the difference between run script and execute statement.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 27 2006
Added on Jan 17 2006
50 comments
15,671 views