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

learn more… | top users | synonyms

0
votes
1answer
57 views

oci_execute identifier must be declared ORA-06550

The procedure: FUNCTION f_exists ( p_pidm gobansr.gobansr_pidm%TYPE, p_num gobansr.gobansr_num%TYPE, p_rowid ...
0
votes
2answers
51 views

Syntax error in for loop

Error starting at line 1 in command: DECLARE x NUMBER := 0; counter NUMBER := 0; BEGIN FOR i IN 1..4 LOOP x := x + 1000; counter := counter + 1; INSERT INTO temp VALUES (x, ...
0
votes
3answers
269 views

ORA-06550 when trying to check if a table exists

I'd like to check weather a table exists before creating one, in an Oracle database. Though, the following statement is not working throwing error ORA-06550 on line 7 (CREATE). DECLARE cnt NUMBER; ...
1
vote
1answer
77 views

Oracle SQL No argument Exception?

I'd like to add an exception in my procedure when no argument is specified. Right now, I'm using when OTHERS then dbms_output.put_line('Error Occured'); But I'd like something that ...
1
vote
2answers
2k views

Using bind variables in SQL Plus with more than one row returned?

This is a stupid problem, but I can't seem to get around it. I have a query that's causing trouble in an OCI program, so I want to run it manually in SQL*Plus to check if there is any difference ...
2
votes
1answer
390 views

Actual source line in ORA-06550 message

When developing an Oracle PL/SQL procedure in Toad, I encounter errors like ORA-06550: line 97, column 25: PLS-00330: invalid use of type name or subtype name ORA-06550: line 97, column 9: PL/SQL: ...
0
votes
1answer
1k views

java.sql.SQLException: ORA-06550

When I am trying to execute this sql statement, I am getting exception as- java.sql.SQLException: ORA-06550: line 1, column 429: PLS-00103: Encountered the symbol "/" The symbol "/" was ignored. ...
2
votes
2answers
2k views

What is the correct format to input a date parameter in an Oracle database from c#

This is the error message I am getting ORA-06550: line 1, column 15: PLS-00306: wrong number or types of arguments in call to 'OBPL_SU_PLAN_UPDATE_PLAN_DTLS' ORA-06550: line 1, column 7: PL/SQL: ...
0
votes
1answer
1k views

Oracle stored proc call returning exception ORA-06550 with PLS-00103

I am trying to execute an Oracle stored proc via an Entity Framework data context. My stored procedure looks as follows: PROCEDURE "GET_SUPPLIERS" ( SUPP_LIST OUT SYS_REFCURSOR) AS BEGIN ...
3
votes
1answer
2k 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 ...
0
votes
1answer
2k 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 ...
3
votes
1answer
5k 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: ...
1
vote
4answers
1k 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() " + ...
2
votes
3answers
10k 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
2k 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 ...
1
vote
2answers
3k 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
4k 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 ...
2
votes
1answer
993 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 ...
2
votes
1answer
1k 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
1k 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 ...
0
votes
3answers
8k 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
59 views

Oracle : Eliminate the error

I have the holiday table whose description are Name Null? Type HOLIDAYDATE DATE DESCRIPTION ...
2
votes
3answers
1k 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
14k views

Using variables in PLSQL SELECT statement

I have a query that queries on ReportStartDate and ReportEndDate so I thought I would use variables in PLSQL. Not sure what I am missing here, but I get an error: CLEAR; DECLARE ...
0
votes
1answer
2k 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 ...
2
votes
1answer
2k 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 = ...
0
votes
1answer
334 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 ...
2
votes
2answers
947 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
580 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, ...
0
votes
1answer
283 views

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 ...
1
vote
2answers
1k 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 ...
0
votes
1answer
851 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): ...
3
votes
2answers
17k 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: ...
0
votes
1answer
2k 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 ...
2
votes
1answer
309 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
1answer
1k 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 ...
0
votes
1answer
4k 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 ...
1
vote
2answers
223 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
2answers
4k 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
265 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
961 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
3k 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 ...
-1
votes
1answer
898 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 ...
0
votes
2answers
2k 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 ...
2
votes
4answers
2k 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
2answers
4k 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 ...