0
votes
1answer
31 views

How to write a trigger to move data I want to delete from a table to antother before deleting it

I wrote this trigger which monitor a table called employees , and when deleting an employee from that table the trigger should fire , and copy the employee we want to delete from the table employees ...
0
votes
1answer
54 views

Using UPDATE cursor in PL/SQL

As far as I can see, I can make an UPDATE in PL/SQL without using a CURSOR. For example: CREATE OR REPLACE PROCEDURE update_my_table (id NUMBER) AS ... BEGIN ... UPDATE my_table SET ...
0
votes
0answers
18 views

Retrieving an Oracle cursor from a Stored Procedure using Access 2003

I need to retrieve data from an Oracle Stored Procedure. The stored Procedure is as follows: CREATE OR REPLACE PROCEDURE ATP_CONTRACT_SP ( p_ContractNumber IN VARCHAR2, p_ResultSet OUT ...
-1
votes
1answer
23 views

ws02 dataservice use parameter IN ORACLE_REF_CURSOR

I use WSO2 DataService for my web services. How can declare a parameter with: parameter IN type ORACLE_REF_CURSOR I do not have any problem with OUT parameter.
1
vote
0answers
56 views

How should I use the cursor in the Function?

I want to use the cursor in the package's function like this: PACKAGE PKG AS TYPE RESULT_T IS TABLE OF varchar2(30); FUNCTION GENERATEF RETURN RESULT_T PIPELINED; END PKG; / create or replace ...
0
votes
3answers
56 views

Oracle Package or function in invalid state

Trying to create a pl/sql cursor based function to return details from an oracle database. The relevant table, MEETING, has the columns MEETING_ID: number(10), TIME: timestamp(4), TITLE: varchar(20) ...
0
votes
2answers
73 views

PL/SQL block and LOOP exercise

I have to create a PL/SQL block to insert 10 to 100 multiples of 10 in a table called TEN_MULTIPLES that I have to create... (SCHEMA -> TEN_MULTIPLES(numbervalue)). I will have to insert inside the ...
1
vote
1answer
44 views

Using cursor in order to fullfill a table

this is my scenario: I have a table Employees where I need only to consider one attribute (salary) all the others are not needed in order to do the exercise. I have to create another table ...
0
votes
1answer
23 views

ORACLE DECLARE CURSOR for LONG datatyped Column inserting

I want to transfer values in a database to another database. But in my source database there are table with columns with LONG datatype. So i cant simply use the insert command for these LONG typed ...
1
vote
1answer
57 views

Return cursor results from anoymous block

I have the following SELECT which I want to change into an anonymous block (need to use an anonymous block as doing it within Java and do not have access to created stored functionality) in order to ...
0
votes
1answer
35 views

Wierd PL SQL invalid cursor

When running the following code I get a ORA-01001: invalid cursor Not sure whats going on, I converted it to a procedure and it started happening; CREATE OR REPLACE PROCEDURE ...
0
votes
1answer
75 views

Cursor column value randomly getting truncated?

I have a cursor in an oracle stored procedure that randomly truncates the value in one of the returned columns. I cannot see any pattern to this, sometimes it works other times it just truncates the ...
0
votes
1answer
12 views

Return implicit string from oracle SP

Hi i have the following stored procedure... CREATE OR REPLACE PROCEDURE DB.INSERTGOOD ( --CapRefCursor OUT Cap_Cur_Pkg.CapCur, p_APPLIANT_TLT IN GOODRIGHT_MANUAL.APPLICANT_TLT%TYPE, p_APPLIANT_NME IN ...
0
votes
2answers
59 views

Correct order for closing various JDBC objects

I have the following code sample: try { conn = this.jdbcTemplate.getDataSource().getConnection(); stm = conn.prepareCall("{? =" + query + "}"); stm.registerOutParameter(1, ...
0
votes
1answer
33 views

Join in Cursro query or two cursors, which is faster?

I need some suggestions for my cursor which is expected to run against millions of records. Here is my cursor query. CURSOR items_cursor IS -- Brings only records that need to be updated ...
0
votes
1answer
59 views

joins in oracle cursor

I am trying to use a join in oracle cursor, which it is failing. Can anybody give me some help to fix below cursor. Is it possible to use joins in oracle cursor?? CURSOR items_cursor IS SELECT ...
0
votes
2answers
42 views

cursor_sharing parameter in Oracle

I would like to know the tradeoff in setting cursor_sharing parameter in Oracle as "FORCE" . As this would try to soft-parse any SQL statement, and certainly the performance must be improved. But the ...
0
votes
1answer
33 views

Oracle create precedure with cursor loop

I'm creating a procedure in Oracle to search for some keywords specified in the parameter and print out the line. This is my code below. It works but I don't know why it keeps printing the last line ...
0
votes
2answers
158 views

PL/SQL FOR LOOP IMPLICIT CURSOR

What i am trying to do here is that... There are 2 tables EMPLOYEES and DEPARTMENTS with department_id as primary key for departments and foreign key on employees. I want to print all the employees ...
1
vote
0answers
45 views

How to optimize usage of pipelined, weakly typed ref cursor

I am having some trouble with a procedure; when run for “big” sets (800+ parents, 1300+ children), it is very slow (30 - 60 secs). Basic idea is to fetch all parent records (and their respective ...
2
votes
1answer
47 views

How to retrieve sql text of cursor?

If I have a cursor and would like to log the text of the cursor during execution is it possible to use the cursor name in some way and retrieve the SQL? For example, OPEN cursor_1 for SELECT ...
1
vote
1answer
621 views

Calling Oracle stored procedures with MyBatis

I am in the process of moving our database over to Oracle from SQL Server 2008 but cannot get MyBatis to work. Given the following example: UserMapper.xml (example) <resultMap type="User" ...
0
votes
0answers
58 views

Cursor occasionally lose data when open in run time

This is my cursor with SELECT statement which always return right result. But when i use it in a procedure, it sometimes get wrong result (return only one row). This problem appears with a large ...
2
votes
2answers
179 views

PLS-00386: type mismatch found between FETCH cursor and INTO variables

The following package throws : PLS-00386: type mismatch found at 'V_STUDYTBL' between FETCH cursor and INTO variables Purpose of the code: Define two types outside the package, one is used to send a ...
2
votes
1answer
82 views

Reference cursor gets lost in XMLType.createxml

I am calling a function that returns a reference cursor, and I am using XMLType.createxml to convert the results to XML, e.g. select XMLType.createxml(package_name.storedProcName('PARAM1', 'PARAM2', ...
0
votes
1answer
406 views

Attempting to call an Oracle Stored Function that returns a ref cursor to C#

I have been pulling my hair trying to get a resultset back from an oracle stored function that returns a ref cursor. Here is the declaration for by Oracle Stored Function: TYPE GetInspectorCursor IS ...
0
votes
3answers
101 views

Oracle loop insert

I'm having issues to perform one mass update in our Oracle DB. I would like to do mass insert to mapping table which we can call map There are other two tables from which I have to obtain the data ...
0
votes
2answers
201 views

How can I use PL/SQL Cursor for loop for a Trigger

Hi I'm a newbie to plsql this is the first time I use plsql I created trigger using plsql. Here is the syntax that I use to create that trigger. but it giving an error as "[Err] ORA-24344: ...
0
votes
2answers
67 views

PL/SQL Cursor is not displaying the results

I'm very new to PL/SQL programming. I have a table named course. When I do: select * from course where branchid = 'B1'; it returns the results as below: And here is the PL/SQL programs I try to ...
2
votes
1answer
83 views

When is the query in a cursor executed?

Suppose I have something like: CURSOR foo_cur IS SELECT * FROM foo; ... DELETE FROM foo WHERE bar=1; FOR row IN foo_cur LOOP ... END LOOP; If I delete rows from foo before I open the cursor, ...
0
votes
1answer
158 views

Retrieve a select count(*) in Oracle inside a cursor

I need to retrieve the number of rows in a SELECT COUNT(*) statement that is inside a cursor (in Oracle). The following code should explain it clearly: PROCEDURE Save(CF_CURSOR OUT ...
2
votes
3answers
137 views

Is it advantageous using cursor in Oracle for frontend applications?

I have two tables in my database. Each table is having 2000 records. As I have a large number of records I would like to write the most optimal code for retrieving records. USER_DETAILS table is: ...
1
vote
0answers
144 views

Oracle PL SQL procedure to disaggregate value from parent to child

I am working on a case where I have Parent-Child hierarchy of products: [highest level] Raw Material RM > Work in Progress WIP > End Product EP [lowest level] Orders for End Products for specific ...
0
votes
2answers
191 views

Oracle 11g PL/SQL cursor,intersect query

I have the following query select distinct name from table1 intersect select distinct name from table2; I load the resultset into a cursor in a PL/SQL procedure, like so: cursor c1 is (select ...
0
votes
1answer
57 views

iterating thru cursor in Oracle

I've found a good question at http://dba.stackexchange.com/questions/3587/oracle-automate-export-unload-of-data. Is it valid to use such a construction: FOR r IN (SELECT * FROM table) LOOP ...
2
votes
2answers
775 views

ORA-06511: PL/SQL Cursor already open

Anyone have any ideas as to why the system is telling me that PAR_CUR is already open? Everything was working fine until I added the outer most cursor (dup_cur) and now I'm getting this error. Thanks ...
0
votes
1answer
35 views

Oracle cursor with IF inside, help needed

I am struggling with a cursor, tried different version with no luck and decided to ask for help here. How to make the IF condition work? I have to count something and then check if this count is ...
0
votes
4answers
250 views

JAVA Getting data from Database Without a loop

I am Programming a software with JAVA and using the Oracle DB. Normally we obtain the values from the Database using a Loop like Resultset rt = (Resultset) cs.getObject(1); while(rt.next){ ...
3
votes
1answer
2k views

PLS-00201: identifier 'USER INPUT' must be declared

I'm getting the error "PLS-00201: identifier 'CHICAGO' must be declared" when I try to enter the user input at the prompt "Please enter the Region:" If I enter "CHICAGO" for example(without quotes of ...
2
votes
1answer
188 views

Performance issue when using ORDER BY dbms_random.value for Oracle database

I need to get 1000 random rows from a table and found solution for Oracle. But if I use this query when retrieving data from table containing large amount of rows it takes up to 3 minutes to complete: ...
3
votes
1answer
362 views

Oracle 11g: Cursors lifetime inside procedure. Do I have to close opened cursors?

In Oracle 11g when PL/SQL context finishing function/procedure automatically close opened cursors. Why in many examples over the web users opening and closing their cursors? Is this backward ...
0
votes
2answers
69 views

Oracle cursor with variables help needed

I am trying to do a cursor which does something like below, struggling with different approaches with no results. Seems, I won't be able to do it by myself, and decided to ask you for help. Below code ...
0
votes
1answer
246 views

convert T-sql cursor to oracle cursor: FETCH_STATUS equivalent in Oracle cursor

I need to to convert following T-SQL cursor to PL-SQL cursor: DECLARE employe_cur CURSOR FOR SELECT name FROM #table where salary = 0 OPEN employe_cur FETCH NEXT FROM employe_cur WHILE ...
0
votes
1answer
175 views

Can I alias columns from a cursor in SELECT statement in Oracle?

I am writing a client application that calls a stored procedure from an Oracle database via a select statement. The stored procedure returns a cursor. I need to define aliases for the columns returned ...
0
votes
1answer
288 views

getting last record of a cursor

If I have a cursor cur which contain these records DEPTNO ENAME ORD CNT 10 KING 1 3 10 CLARK 2 3 10 ...
1
vote
0answers
141 views

Using a SELECT TABLE.COLUMN, CURSOR(SELECT OTHER_STUFF) in iReport

I am tasked with moving some existing PL/SQL queries into Jasper Server by making some rudimentary JasperReports. So far this has been straightforward, but I have come across a query that has the ...
1
vote
3answers
103 views

Collection type as a cursor parameter

I need to do a cursor that receives a list as a parameter. I've tried this: declare type array_t is table of varchar(50); -- //also tried varray(10) instead of table cursor c_cursor (p_list ...
0
votes
1answer
211 views

ORA-01001 Invalid cursor error

I have written two database procedures in Oracle that are using multiple cursors. The problem faced is that while the procedures are getting executed without any errors in 98% of the cases, for few ...
1
vote
1answer
53 views

How to declare a Cursors With different conditions

I have a procedure EMPHIRESEPCHAN which is used to fetch the employees list who are hired, seperated and changed their titles based on a particular time frame. The procedure is as follows: PROCEDURE ...
0
votes
1answer
81 views

Processing LONG RAW data within cursor

Firstly, I know LONG RAW is deprecated/evil/awful/hard to use. I don't have control of my database's schema. :) I currently have a program that retrieves a LONG RAW column from the database and ...

1 2 3 4 5