Tagged Questions

Error: ORA-06512 is an error indicating the line number at which a PL/SQL error occurred if the previous exception was unhandled. Cause: If an exception was not handled, Oracle will display the unhandled exception with the specific error code and display the approximate line number at which the ...

learn more… | top users | synonyms

3
votes
1answer
7k views

ORA-29283: invalid file operation ORA-06512: at “SYS.UTL_FILE”, line 536

Below is the code i use to extract data from a table to a flat file. BEGIN DECLARE file_name VARCHAR2(50); file_handle utl_file.file_type; BEGIN file_name := 'table.txt'; ...
2
votes
2answers
319 views

Oracle error log file

I'm running following block in Oracle (what does it do is not so important) BEGIN SDO_RDF_INFERENCE.CREATE_RULES_INDEX( 'my_index', SDO_RDF_Models('my_model'), ...
2
votes
4answers
180 views

CREATE Oracle Procedure

I am trying to create a procedure and it created without error. However when I try to run it then I will get following error. Please advise SQL> begin 2 Update_STUD_Fin ( '1011'); 3 end; ...
1
vote
1answer
292 views

ORA-12545: Connect failed because target host or object does not exist ORA-06512

I have the following error message when I try to establish a HTTP request connection: ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1029 ORA-12545: Connect failed because ...
1
vote
3answers
297 views

How to use a stored procedure to read a file into an oracle DB

I'm trying to read a file into my oracle table as a blob. The file is *.gz data. I looked around the 'net and found some examples, and this is what I've come up with: create or replace PROCEDURE ...
1
vote
2answers
197 views

Oracle: Inconsistent Datatype Issue

I am getting inconsistent datatype error message and I am not sure why. I need some guidance to figure this out. I am creating two types as: My universe table have following columns with column ...
1
vote
1answer
119 views

Invalid privilege error?

Two related applications use a function in a package in several queries to return some data as CSV. The column being selected and concatenated is a CLOB field and can contain HTML, special characters, ...
1
vote
2answers
920 views

DBMS_Snapshot.refresh not working on 11g , materialized view error

I executed DBMS_Snapshot.refresh on Oracle 10g it worked fine, but when i execute the same on Oracle 11g it gives the following error DBMS_SNAPSHOT.refresh('Table1','F'); BEGIN ...
1
vote
1answer
191 views

11g XE: could not find the given license file

I'm trying to create a simple full-text index like this: exec ctx_ddl.create_preference('my_own_lexer', 'AUTO_LEXER'); create index myidx ON tbl(name) INDEXTYPE IS ctxsys.context PARAMETERS ...
1
vote
2answers
2k views

Oracle's dbms_metadata.get_ddl for object_type JOB

I'd like to create ddl scripts for most of my database objects. dbms_metadata.get_ddl works for most of the object types. For instance the following creates the ddl for a view: select ...
1
vote
2answers
724 views

SYSDATE - 1 error on pl/sql function

I have an issue: when i issue this function below ti gives me the following error: select 'EXECUTE DBMS_LOGMNR.ADD_LOGFILE(LOGFILENAME =>'''||name||'''||,OPTIONS=>DBMS_LOGMNR.NEW);' from ...
1
vote
4answers
4k views

Validating XML files against schema in Oracle PL/SQL

I have a requirement to validate an incoming file against an XSD. Both will be on the server file system. I've looked at dbms_xmlschema, but have had issues getting it to work. Could it be easier to ...
0
votes
0answers
41 views

Stored procedure for searching returns error in Oracle [closed]

Possible Duplicate: Searching data from a table using stored procedure in oracle by passing tablename as a parameter This procedure is not working properly, create or replace procedure ...
0
votes
1answer
41 views

Searching data from a table using stored procedure in oracle by passing tablename as a parameter

This procedure is not working properly. create or replace procedure bank_search_sp ( p_tablename in varchar2, p_searchname in varchar2, p_bankcode out varchar2, p_bankname out varchar2, p_dist_code ...
0
votes
1answer
59 views

pl sql exception message

I have following error message. 2011-08-08 14:27:09 [E]: xxx - ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "xxx", line 1671 ORA-06512: at "xxx", line ...
0
votes
2answers
252 views

RAISE_APPLICATION_ERROR issue

I have developed a trigger that checks the validity of a date. It works fine because it prevents me from storing an invalid date, but I also get a weird error message and I can't figure out why. My ...
0
votes
1answer
533 views

how to solve the problem ORA-06512 and ORA-04088 ( Oracle 10g)

Table Bonus ( bonuscode primary key, bonusname ) Table Condbonus ( noco primary key & foriegn key (Conducteur),bonuscode foreign key (bonus), noli primary key , date_voy primary key ) insert ...
0
votes
1answer
619 views

error reading xml from the plsql procedure

I am trying to read a xml from plsql procedure using the xmlparser package, i am getting this error ORA-31020: The operation is not allowed, Reason: Not supported ORA-06512: at "XDB.DBMS_XMLPARSER", ...
0
votes
0answers
97 views

Create Oracle Cursor

I create a cursor like this: SQL> CREATE OR REPLACE PROCEDURE Update_STUD_FinAid ( AIDY_CODE IN VARCHAR2 ) IS 2 CURSOR PublicationC IS 3 SELECT SGBSTDN_USER_ID from SGBSTDN 4 ...
0
votes
2answers
671 views

Problem with UTL_SMTP package (sending emails from ORACLE)

Everything's been working fine and haven't made any changes to our mail packages. But i just noticed that our unsent_emails table has been filling up, and when i tried to manually sent the unsent ...
0
votes
2answers
505 views

Call PL/SQL Web Toolkit procedures from Java

I need to call some PL/SQL procedures from my Java application. I can do it with JDBC. But the problem is that procedures are using the "PL/SQL Web Toolkit" and its packages (htp, owa _ util, owa _ ...
0
votes
3answers
2k views

Can you please help me in Oracle for writing the table contents in to a file using UTL functions

While writing the SQL procedure for creating a CSV file from the contents of the table, I am stuck at the error below: ERROR at line 1: ORA-29283: invalid file operation ORA-06512: at "SYS.UTL_FILE", ...
-2
votes
2answers
232 views

Oracle Error ORA-06512

Just can't figure out why it gives me ORA-06512 Error PROCEDURE PX(pNum INT,pIdM INT,pCv VARCHAR2,pSup FLOAT) AS vSOME_EX EXCEPTION; BEGIN IF ((pNum < 12) OR (pNum > 14)) THEN ...
-3
votes
3answers
183 views

ORA-01438 Error

Can anyone help me with this exception? ORA-01438: value larger than specified precision allowed for this column ORA-06512: at "DM001.DFEE_AFT_IUD_JOURNAL", line 58 ORA-04088: error ...