I have the following code in Test Window:
While in debug mode (F9):
1. Click "Execute SQL in debug session" button
2. Type the following code:
3. Click OK button
You get the result window. Now
4. Click "Execute SQL in debug session" button again
5. Modify the code to
6. Click OK button
Get error ORA-06550: line 78, column 28:
PLS-00103: Encountered symbol "" when expecting one of the following:
This error is becoming a "Du jour" here, as many developers are getting the same.
IC
Code:
-- Created on 2013/03/08 by IC
declare
-- Local variables here
i integer;
begin
-- Test statements here
null;
end;
While in debug mode (F9):
1. Click "Execute SQL in debug session" button
2. Type the following code:
Code:
select count(*) from <schema>.[TABLE]
3. Click OK button
You get the result window. Now
4. Click "Execute SQL in debug session" button again
5. Modify the code to
Code:
select * from <schema>.[TABLE]
6. Click OK button
Get error ORA-06550: line 78, column 28:
PLS-00103: Encountered symbol "" when expecting one of the following:
This error is becoming a "Du jour" here, as many developers are getting the same.
IC