0
votes
3answers
59 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
75 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 ...
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
2answers
164 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 ...
0
votes
0answers
38 views

Add single value from cursor to a view

This seems like a pretty straight forward task but I have yet to find the structure that will execute it. I have a function that returns a cursor, which I pass off to some Java that sets it up for ...
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 ...
0
votes
1answer
141 views

Cursor For Loop with dynamic SQL-Statement

Is there a way to perform a Cursor For Loop with an dynamic SQL-statement? If I don't want to declare a record I can do something like this (only if I declared the cursor..): For I in cuSelect Loop ...
0
votes
2answers
202 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
161 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 ...
5
votes
3answers
155 views

Will an implicit cursor ever fail to close in PL/SQL?

With PL/SQL will there ever be a situation, say in the case of an exception, where an implicit cursor will fail to close? I understand that an implicit cursor is supposed to close itself after use, ...
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: ...
0
votes
2answers
191 views

ROWTYPE definition in pl/sql

I have written a PL/SQL Procedure which compares data between two tables and print the difference if any, but the twist is the table names to the procedure is dynamic. Here is the procedure create or ...
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
193 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 ...
2
votes
2answers
790 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 ...
1
vote
3answers
829 views

Oracle Forms 6I Navigating to Cursor nth Record

i have an application i have several blocks they are not database blocks. However i am populating it with records from a Cursor. I have a procedure that loops through the cursor records and displays ...
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 ...
3
votes
1answer
366 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
1answer
291 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
104 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
82 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 ...
0
votes
1answer
171 views

PL/SQL Fetch cursor into cursor

I have package in which I have declared cursor. And I want to return that cursor as OUT variable of PROCEDURE. I can't just get data from that cursor cause data needs to be loaded first by load_data ...
0
votes
1answer
50 views

Call a function in a cursor for loop

I have created a procedure which finds some records with a missing date which needs to be populated. I have written a cursor which uses a select statement to find these records and was going to use a ...
0
votes
1answer
131 views

using cursor after a delete statement in a stored proc [duplicate]

Possible Duplicate: Oracle Accessing updated records during the same transaction I've a oracle store proc somewhat like this (actual sqls are different) CREATE OR REPLACE PROCEDURE mysp IS ...
0
votes
1answer
272 views

PL/SQL Cursor ORA-00936 Missing Expression

Can anyone help me out with this: CURSOR csr(start IN NUMBER, finish IN NUMBER, sort IN VARCHAR2, search IN VARCHAR2) IS SELECT id, text, code, name FROM (SELECT rownum r, id, ...
0
votes
1answer
120 views

PLSQL : Dynamic table record holder

If I want to fetch records from a table (table name is dynamic from input), how to define the record holder or how to fetch the data from this defined table? p_table_name%rowtype will not complie ...
0
votes
1answer
101 views

Error with Query SELECT in cursor

I have problem with my select in cursor. Select works normal in other windows but I got error in procedure with cursor why ? I change name of Tabele and Database but Select is OK outside this ...
1
vote
1answer
190 views

When declaring or defining a cursor in a package specification, is there a way to avoid the definition of a record type?

My employer uses an application which stores metadata about business cases in a master table and some 40 detail tables. Currently, I maintain a package which reads from these tables and generates for ...
0
votes
3answers
82 views

PLSQL block takes very long time to declare a cursor

I'm executing a PL/SQL blocks that updates some rows from an explicit cursor. The code to declare the cursor is the following: cursor DUP_SUBJECTS is select * from ODS_SUBJECT_D ...
1
vote
1answer
219 views

comparing cursor values for equality in plsql

declare course_id char(10); course_idA char(10); cursor task3 is select c_id from certificationrequirement where pcp_id = 101; cursor task3A is select o.c_id from ...
0
votes
1answer
1k views

How to update cursor records using WHERE CURRENT OF?

I'm getting "ORA-01410: Invalid ROWID" exception when executing this block. Any ideas why? DECLARE CURSOR c_orders IS SELECT * from orders FOR UPDATE OF no; v_order_record c_orders%ROWTYPE; ...
0
votes
1answer
75 views

How to fetch columns in cursor using FETCH?

create or replace PROCEDURE newprocedur(outname OUT VARCHAR2,outroll OUT NUMBER) AS CURSOR c1 IS select Name,Rollno,Section from emp; BEGIN Open c1; fetch c1 into outname,outroll; ...
0
votes
2answers
762 views

PL SQL Nested IF ELSE with Cursor

I have three cursors declared CUR_AD1, CUR_AD1_C, CUR_AD_2. All they contain is result coming from a 3 mere select statements which works fine. Later on I have the following statements: BEGIN ...
0
votes
2answers
115 views

PLS/QL : Nasty cursor error

I need a hand for a PL/SQL. Indeed, i can't figure out why Oracle doesn't want to accept this code : set serveroutput on; CREATE OR REPLACE PROCEDURE route (gagnant VARCHAR2) IS CURSOR perdants IS ...
2
votes
3answers
281 views

PL/SQL Dynamic SQL

I need help. I have a problem in constructing my PL/SQL block. In the cursor, I have a query constructed, and i want to insert a filter on cursor. Below is an example: DECLARE code NUMBER; ...
1
vote
4answers
134 views

Execute delete and update the respective rows in other table

I have following tables CREATE TABLE A2SKU ( SKUID NUMBER NOT NULL, SKUNAME VARCHAR2(20), SKUQTY NUMBER, CONSTRAINT A2SKU_PK PRIMARY KEY (SKUID) ); CREATE TABLE A2LOC ( LOCID NUMBER ...
0
votes
1answer
137 views

How to define a row type that has columns of different tables?

Normally, I should do something like my_record my_table%ROWTYPE; cursor c1 (bla bla) is select * from my_tables... but what happens if I have something like select b.*, c.col1, c.col2 from ...
0
votes
1answer
362 views

need to get the output of 2 cursors in one temp table

Here is my first procedure (sample) CREATE OR REPLACE PROCEDURE GPTOWNER_CORP_AMF.testt1 AS po_status VARCHAR2(100); po_cur_1 SYS_REFCURSOR; po_cur_2 SYS_REFCURSOR; BEGIN OPEN po_cur_1 FOR select ...
0
votes
1answer
846 views

ORA-12805:parallel query server died unexpectedly

I have a PL/SQL script like this... DECLARE CURSOR curs_delete IS SELECT cus_num FROM dob.cust_table GROUP BY cust_num HAVING COUNT(*)>1; ...
2
votes
2answers
528 views

Does a cursor store a SELECT result record-set in memory?

From a book, I have read Whenever you perform a SQL statement, the Oracle opens an area of memory in which the command is parsed and executed. This area is called a cursor. It applies both ...
1
vote
1answer
922 views

Casting Oracle cursor row into user-defined record type for a pipelined function

In my package, I have defined a record type and a corresponding table type. I then have a pipelined function that opens a cursor and attempts to pipe each result out. The problem is that it's giving ...
0
votes
1answer
136 views

JPA and SYS_REFCURSOR like OUT parameter

I'm new in JPA. I want to call a procedure using JPA with SYS_REFCURSOR like OUT parameter. I have seen that this is very easy using plain JDBC but I'm not sure that is possible in JPA. My procedure ...
1
vote
1answer
362 views

Populate an oracle collection type using a SYS_REFCURSOR and close the cursor

In my stored procedure, I have a code snippet like this: OPEN p_result FOR SELECT * FROM TABLE (CAST ( l_data AS Rpt_mapping_TableType)); COMMIT; p_result is an IN OUT parameter of type ...
0
votes
1answer
242 views

Pl-sql Procedure to print table details

SQL. I have created 1 procedure but I am not getting the desired output. My procedure is below: --/ CREATE OR REPLACE procedure Update_TB_INTERACTLOG IS BEGIN FOR records in (select TNAME from ...
0
votes
1answer
778 views

cursor in a trigger

I have an existing TABLE postn_matrix which contains a list of employees and a count of their resp. positions in the organisation. Whenever a position of a user is added or removed, the corresponding ...

1 2 3