Tagged Questions
2
votes
1answer
74 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
2answers
239 views
Oracle Synonyms issue
My Scenario:
Schema name: schema1
Package name: pkg_system
procedure name: proc1
Now I am trying to create a synonyms for my proc1 as below
CREATE PUBLIC SYNONYM call_proc FOR ...
2
votes
1answer
149 views
why an oracle procedure is invalid
Can someone please explain to me why I keep getting this PLS-00905 error for the below simple procedure? Thank you.
create or replace procedure copy_table(
table_name IN varchar2,
...
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
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
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
38 views
Oracle : Eliminate the error
I have the holiday table whose description are
Name Null? Type
HOLIDAYDATE DATE
DESCRIPTION ...
0
votes
1answer
144 views
Import error using oracle 10g
When I am trying to import a file to a 10g database, Error message (given below) appears. Anybody can help me regarding this ?
IMP-00058: ORACLE error 6550 encountered
ORA-06550: line 1, column ...
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 ...
-1
votes
1answer
649 views
error ORA-06550 ORA-00933
I have a sales table:
Name Null? Type
SALE_ID NOT NULL NUMBER(4)
SALE_DATE DATE
NO_OF_PRODS NUMBER(4)
PROD_ID NOT NULL ...