Tagged Questions

2
votes
1answer
73 views

“local collection types not allowed” error in PL/SQL ORA-06550

i am trying trying to get a query from oracle table called "sys.all_objects" into a string variable, so then i can give it to "dbms_obfuscation_toolkit.DESEncrypt" as input, after than encrypted ...
2
votes
1answer
290 views

Some Syntax Error - Can't figure out where

Here is the script that i wrote and it has weird syntax error at EXCEPTION block. If i remove exception block the script compiles properly. but no sooner i write it back it gives me error ...
2
votes
3answers
424 views

What is the correct syntax to break a PL/SQL procedure call in multiple lines?

I am calling a PL/SQL procedure like this: execute util.verify(src_schema => '&username', stab => '&tab_name'); and I get these errors: SQL> execute ...
2
votes
1answer
184 views

When SET SCAN ON used after END throws error

Im trying to use SET SCAN ON after as follows.. SET SCAN OFF; DECLARE -- declared a variable BEGIN --update statement END; SET SCAN ON; The use of SET SCAN ON; is causing the error when i try ...
1
vote
2answers
528 views

Oracle SQL Developer: PL/SQL: ORA-00903: invalid table name

I am getting this error: Error starting at line 2 in command: BEGIN DELETE * FROM book_copies; DELETE * FROM books; /* more code here */ END; Error report: ORA-06550: line 2, column 10: PL/SQL: ...
1
vote
1answer
452 views

How to initialize a varray table of {TABLE}%ROWTYPE?

I have a varray defined like: declare TYPE tnr_l IS VARRAY(30) of lve%ROWTYPE; I want this varray to be initialized with a fetch from the database: select * into tnr_l from lve where type = ...
1
vote
2answers
4k views

PLS-00103: Encountered the symbol “end-of-file” in simple update block

The following Oracle statement: DECLARE ID NUMBER; BEGIN UPDATE myusername.terrainMap SET playerID = :playerID,tileLayout = :tileLayout WHERE ID = :ID END; Gives me the following error: ...
1
vote
2answers
127 views

How to see errors in Oracle?

I am getting the following error when trying to execute a stored procedure in Oracle that contains two input parameters: ORA-06550: line 1, column 7: PLS-00306: wrong number or types of ...
0
votes
1answer
77 views

PLS-00103: Encountered the symbol “EXCEPTION” err while checking for a value in the bind variable

I am getting the below error for the PL/SQL block i executed. ORA-06550: line 16, column 1: PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following: My anonymous procedure ...
0
votes
3answers
791 views

Calling Oracle PL/SQL PLS-00201: identifier '001' must be declared

I am trying to call a PL/SQL script with the following header: PL/SQL: CREATE OR REPLACE PROCEDURE GETQUOTE(i_QUOTEID IN HR.QUOTEID, o_QUOTE OUT HR.QUOTE) ...
0
votes
1answer
147 views

Nested Tables in a stored procedure

The PL/SQL script shown below is failing to execute at line # 20: declare type string_table is table of varchar(100); v_names string_table := string_table(); begin ...
0
votes
3answers
2k views

Oracle : receiving ORA-06550 and PLS-00905

i have a holiday table which contains the data are HOLIDAYDA DESCRIPTION --------- -------------------- 19-JAN-11 to 17-JAN-11 to 10-JAN-11 new day Now I want the first business day ...
0
votes
1answer
316 views

Telling me my stored procedure isn't declared

Here is where the error is occuring in the stack: public static IKSList<DataParameter> Search(int categoryID, int departmentID, string title) { Database db = new ...
0
votes
1answer
1k views

Oracle refresh materialized view - Compile error

Im trying to execute a refresh on a materialized view, but I cant get the script to compile. CREATE OR REPLACE PROCEDURE REFRESH_MV AS BEGIN exec DBMS_MVIEW.REFRESH('my_mat_view_mv','C'); END ...
0
votes
2answers
2k views

Oracle - Java - wrong number or types of arguments in call to 'SP_GET_MENU_PARENTS'

Below is my Oracle Procedure. When i call this procedure using java, it throws error like this. CREATE OR REPLACE PROCEDURE sp_Get_Menu_Parents ( v_inMenuID IN VARCHAR2 DEFAULT NULL, cv_1 IN OUT ...
0
votes
3answers
3k views

Package creation issues using SQL Developer

So I've never worked with stored procedures and have not a whole lot of DB experience in general and I've been assigned a task that requires I create a package and I'm stuck. Using SQL Developer, I'm ...