Tagged Questions

You tried to compile a block of PLSQL code, but a compilation error occurred.

learn more… | top users | synonyms

2
votes
1answer
76 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
283 views

ORA-06550 wrong number or types of arguments when calling Oracle stored procedure

Have been fighting this for two days and am very frustrated but feel like I am making progress. After reviewing Oracle's online docs I am here. Receiving the following error upon code execution: ...
2
votes
1answer
292 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
2answers
301 views

Why can't I execute the stored procedure? (OracleException was caught)

This is code to connect to an Oracle database. It fails at the last line: dbDataAdapter.Fill(dtResult); private object Execute(CommandType commandType, Common.DATA.SqlCommonExecutionType ...
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, ...
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
4answers
252 views

Having trouble calling Oracle stored procedure in java

I'm having trouble calling an Oracle stored procedure in Java. I added a stored procedure to the database like this: String SQL = "CREATE OR REPLACE PROCEDURE LIVERESULTS() " + ...
1
vote
2answers
531 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
285 views

APEX: apex_application.g_print_error_message problem

When i'm using this command apex_application.g_print_success_message := '<span style="color:GREEN">Message</span>'; to show success message is works fine but when i used the error ...
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
3answers
555 views

ORA-06550, PLS-00306; Error inserting data to Oracle procedure

I have tried to troubleshoot this problem but to no avail. I get error while inserting a big chuck of data to Oracle package containing procedure 'INSCRAPP'. The error message is, ORA-06550: line ...
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
1answer
624 views

how do I catch errors globally, log them and show user an error page in J2EE app

I have searched this topic on google a bit and seen some best practices. But I need some specific advice. I am working on a J2EE app that has servlets/Struts2/Call to DAO's from JSP's. So the app is ...
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 ...
1
vote
4answers
902 views

Running Oracle stored procs from C#

A beginner question: I have a stored proc (just a procedure, without any packages) in the Oracle Database: CREATE OR REPLACE procedure FII_DBO.CLEAR_UNIT_TEST_PRODUCT IS BEGIN ... END ...
0
votes
1answer
78 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
796 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
1answer
1k views

Calling an Oracle stored procedure in C# using “Oracle.DataAccess” (with a parameter)

So I'm trying to call an Oracle stored procedure from my C# .NET application. Most online references I can find suggest "using System.Data.OracleClient;", but .Net 3.5 doesn't recognize that namespace ...
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
638 views

ORA-06550 and PLS-00103

HI, I am using UNIX OS and working on oracle. I am getting the error message below E ORA-06550: line 1, column 8: PLS-00103: Encountered the symbol "" when expecting one of the following: begin ...
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
1answer
174 views

Any help with Oracle exception with ADO.Net !

When I'm trying to execute the following sql block, I got the following Exception ORA-06550: line 1, column 6: PLS-00103: Encountered the symbol "" when expecting one of the following: begin case ...
0
votes
1answer
462 views

Integrating PL/JSON with Oracle APEX 4.0

I am trying to use PL/JSON in my Oracle APEX application but get the following errors when I attempt to run a Hello, world example (which works fine when I run the example from SQL*PLUS as sys): ...
0
votes
1answer
318 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
1answer
184 views

Strange behaviour with a pl/sql query and .net

I run this query to read the count of the Records with an output parameter using OracleCommand: var query = "declare MyCount number; begin SELECT COUNT(*) INTO :MyCount FROM T_ISSUE; end;"; this ...
0
votes
2answers
575 views

Go over all columns in tables in Oracle

This is a noobie question, most likely syntax one. But I am kinda lost... I need to go over all columns in all tables in Oracle to generate trigger script. That trigger should insert the row being ...
0
votes
1answer
981 views

Calling an oracle function from C#

I have an Oracle function GetEmployeeDetails which saves all the employee details into a temporary table TempEmployeeDetails table. I have to call the function followed by a select query on the ...
0
votes
2answers
1k views

multiple instances of named argument in list

I have a problem executing oracle procedures from Visual Studio 2008's Server Explorer, when i try to execute a procedure all the input parameters are doubled! it only happend to me in one ...
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 ...
-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 ...