1
vote
2answers
32 views

How to return columns before update using returning?

Hey in PL/SQL consider this query : update cards s set s.column1= null, s.column2= null where s.column3= in_column3 returning s.column1,s.column2 into v_column1,v_column2; Problem is this puts the ...
0
votes
0answers
29 views

accessing varray from jdbc

TYPE phone_no_tab_typ IS VARRAY (6) OF VARCHAR2 (20); CREATE OR REPLACE PROCEDURE myproc (arr_in IN phone_no_tab_typ) IS BEGIN END; How to call this procedure from JDBC. I tried examples and ...
0
votes
1answer
48 views

Oracle PL/SQL and Java dependencies

When a PL/SQL package is invalid, Java code accessing this package reports an exception that the PL/SQL is invalidated. However, when the PL/SQL block is recompiled and it is in valid state, Java ...
-4
votes
2answers
30 views

Copying data from one field to another in different tables [closed]

I need to know the ps/sql syntax for copying data from one field in Table A into a user defined date field in Table B
0
votes
2answers
56 views

When the column is NULL

I have a curious scenario that I have been looking at the last hour and cannot get my head around... CASE WHEN A.ADMIN IS NULL THEN 0 ELSE CASE WHEN NULLIF(A.ADMIN, 0.0) = ...
1
vote
1answer
31 views

oracle: connection timeout when calling a plsql procedure from Java

We have a daily batch job executing a oracle-plsql function. Actually the quartz scheduler invokes a java program which makes a call to the oracle-plsql function. This oracle plsql function deletes ...
0
votes
1answer
41 views

PL SQL - Dynamic SQL in the where clause of a select statement

I'm really new to Oracle PL/SQL, but experienced in Sql Server, and I'm trying to learn the ins and outs of it. For an introductory to it I've decided to optimize a query that is generated as a C# ...
-7
votes
0answers
44 views

Implementation of Pivot keyword in oracle 2 [closed]

Because somebody closed the question: Implementation of Pivot keyword in oracle SQL> EXPLAIN PLAN SET STATEMENT_ID = 'PIVOT' for 2 SELECT * 3 FROM EMP 4 PIVOT 5 ( 6 ...
1
vote
2answers
50 views

using the NOT IN operator on a column with NULL values

I have a table employee which has a column company which has all null values Now, I want to use a NOT IN operator for the company name as select * from employee where employee.company NOT IN ('ABC', ...
0
votes
3answers
58 views

Oracle Sequence not generating the continuous number [duplicate]

I have one sequence in oracle which will be used as SYSID. The sequence is not generating in orderly fashion, means some where it is skipping the numbers, then it is continuing. Below is my sequence ...
1
vote
1answer
28 views

PL/SQL to fetch sample rows for each month in a year

I need to fetch 200 rows a month per year randomly sampled for each month from this table in Oracle 10g: Documents -------------------------------------- Doc_ID Date 95687 25-AUG-12 99283 ...
0
votes
4answers
86 views

Update million rows using rowids from one table to another Oracle

Hi I have two table with million rows in each.I have oracle 11 g R1 I am sure many of us must have gone through this situation. What is the most efficient and fast way to update from one table to ...
2
votes
1answer
50 views

replace double quotes within double quoted strings

We have some GUI issues that converted all our xml entities to their character format and stored in our Oracle DB. The biggest problem is with " being converted to " within quoted xml ...
0
votes
3answers
34 views

Check Values in sys_refcursor

I have the following code in a function CREATE OR REPLACE FUNCTION my_func ( v_dt events.raised_date%TYPE ) RETURN SYS_REFCURSOR IS p_events ...
-2
votes
1answer
36 views

using oracle object type with number attribute on odp.net

After mapping Oracle Object Type as Class in C# using odp.net, while passing back the class to the stored procedure to insert the data into the table for all attributes with number data is empty. We ...
2
votes
1answer
49 views

Oracle 11g - factorial not working with large numbers

I'm trying to replicate some formulae form an Excel sheet in Oracle. In the Excel sheet the formula is: LN(FACT(n)) However I found that if you get up to n=170 it returns an error because the ...
0
votes
2answers
41 views

Procedure with VARRAY created with compilation errors

I am trying to create a procedure which will accept a VARRAY as an argument and will delete some records from the table. Below are the steps I followed: Step1 Created the VARRAY inside a package: ...
1
vote
2answers
30 views

RECORD TYPE too many values error in Oracle 10g

Below is the structure of my emp table: Name Null? Type ------------------ -------- ------------ EMP_ID NOT NULL NUMBER EMP_NAME VARCHAR2(20) DEPT_ID ...
0
votes
1answer
34 views

Oracle: Inheritance in triggers

I'm working with two objects Paper and Internal_Paper. Internal_Paper inherits from Paper and has one additional attribute. I've only one table to insert both objects Paper_Table. The thing is I've ...
1
vote
1answer
31 views

How run two or more instances of an oracle job in the same time?

I have defined a function that when it is called it will define an oracle job with dbms_scheduler.create_job that runs a store_procedure with arguments my Function Begin job created and ...
1
vote
1answer
39 views

How to print text from PL SQL using Visual Studio [duplicate]

I am using Visual Studio for PL/SQL. It does not let me print. How can I print any text and test my methods? It just says "PL/SQL procedure successfully completed". for this block It just says ...
0
votes
2answers
48 views

Using ROWTYPE in PL/SQL VARRAY giving compilation errors

If I try out the below code then it works fine: declare type v_varray is varray(50) of emp%rowtype; v_emp_details v_varray; begin select * bulk collect into v_emp_details from emp where dept_id = 1; ...
0
votes
2answers
34 views

Error in Oracle procedure, object is invalid

Where is the bug? Compilation ends with errors and I have no idea where I'm going wrong. create or replace PROCEDURE make_payoff(user_id_argument number) is begin payoff_amount:= 0; CURSOR Clicks IS ...
-4
votes
0answers
35 views

Oracle Plsql Stored Procedure or Stored Function [closed]

Thanks for the quick reply. My requirement is... I have to develop either a stored procedure or Function just to calculate sum(order_items.quantity*items.price) and store the aggregated value as ...
-2
votes
1answer
29 views

Creating Oracle Stored Procedure with joining multiple tables [closed]

I have 2 tables order_items and items. I have to get quantity(Column data) from order_items and price from items. Now I have to calculate Profit as derived column(quantity*price). The whole work ...
0
votes
1answer
60 views

Update multiple columns in MERGE statement ORACLE

I want to update multiple columns in MERGE statement,but for each column the conditions are different.How can I achieve it. I have more than 1 million rows in both the tables.All columns are ...
0
votes
2answers
35 views

SQL fiscal periods over multiple years

I am writing a command for Crystal reports in Oracle SQL Dev and i have ran into a problem. My User wants to have parameters that allow them to use a starting year/period in the format 'yyyymm' and ...
1
vote
1answer
25 views

Difference between DBMS_METADATA and right click 'view'

Something strange happened to me today ,my friends(developers) said its probably a bug ... Usually when I want to see the DDL of a table in PL/SQL , I right-click on the table and then I click on view ...
0
votes
1answer
23 views

Oracle Insert Data Into Object Table

What is the most per-formant manner to insert data into an object table? Create Type R_Emp Is Object (Emp_Id number, Last_Name varchar(50)); create type T_Emp is table of R_Emp; Then given ...
1
vote
1answer
25 views

Multi-schema select statement doesn't work in PL/SQL procedure?

I'm trying to create a procedure to run multiple PL/SQL statements, but I haven't gotten very far. The select statement works fine if I run it out of a procedure, but if I try to execute it inside one ...
0
votes
2answers
37 views

ignore a user defined exception in oracle

In pl/sql I have some inner begin, end blocks and "Exception Others" blocks. When I throw my user defined exception from an inner block I just want to catch this exception in the last "Exception ...
1
vote
1answer
53 views

Oracle datapump exported tables

My situation is quite strange, and i don't have any ideea on how to handle it. Scenario: In variable v_tables_param I have the following string (the names of the tables that iwant to export) ...
0
votes
2answers
50 views

how to use ComparisonPredicate as part of query in a procedure using oracle

I am writing a query where i am checking for column value based on the values like Equals,Not Equals and Starts With.I want to pass these values to query dynamically. can any one suggest me. SELECT * ...
0
votes
1answer
14 views

Oracle: how to get an object reference?

I have a sales object and a table (tab1) of sales objects. I want to create a second table (tab2) that contains references to the objects in tab1. CREATE TYPE sales AS OBJECT ( marca ...
3
votes
2answers
55 views

PL/SQL optimize searching a date in varchar

I have a table, that contains date field (let it be date s_date) and description field (varchar2(n) desc). What I need is to write a script (or a single query, if possible), that will parse the desc ...
4
votes
1answer
86 views

Oracle: getting references in PLSQL

I need to get the reference of :new.OBJECT_VALUE but I don't now how. I tried doing this. Declaration of types: CREATE TYPE Virus_ObjType AS OBJECT ( name VARCHAR2(50), description ...
1
vote
1answer
40 views

ORA-01779: cannot modify a column which maps to a non key-preserved table

I have this procedure: create or replace procedure changePermissionsToRead( datasource in varchar2 ) IS begin update ( select * from WEB_USERROLE ur , WEB_USERDATASOURCE ds where ...
0
votes
0answers
22 views

Mybatis, call Oracle PLSQL function which returns sys_refcursor

I have Oracle PLSQL function which returns Oracle sys_refcursor. How can I call this function which returns sys_refcursor from mybatis ?
0
votes
3answers
33 views

bulk collect …for all usage

I want to understand the usage and need for bulk collect forall statements. An example mentioned here In most examples in different web pages; authors first fetch data from a table by using bulk ...
-1
votes
2answers
76 views

Need to delete duplicate records from a table with 30 columns [closed]

I need to delete the exact duplicate records from a table with 30 columns. My data would look something as attached.Advance Thanks!!
3
votes
0answers
100 views

ORA-01001 invalid cursor

I have an "ORA-01001 invalid cursor" issue I am not able to solve. In our production environment, we have three application server and it's pointing the single Database(Oracle 10g). I am receiving ...
1
vote
2answers
31 views

How to insert records from multiple rows in a table into single rows (group my ID) in other table?

I have a table with records as: ID |NAME |FULLNAME ID1 |John |John S ID1 |Tom |Tom S ID2 |Tin |Tin J ID2 |Jim |Jim B ID2 |Kethy |Kethy T ID3 |Neo |Neo L I want to create a new ...
1
vote
0answers
62 views

How can I improve Oracle performance when performing a user defined Statistics function?

An associate of mine converted a javascript inverse chi-square routine to Oracle. The good news is that it returns the same results as the javascript routine. The bad news is that where it takes 1.5 ...
0
votes
1answer
24 views

Use SA_USER_NAME in function

I tried to create a simple function like this but it not working. Data is returned but it's the same as if there were no policy. CREATE OR REPLACE FUNCTION test (schema in varchar2, tab in varchar2) ...
0
votes
3answers
45 views

PL SQL table parameter

I would like pass a table type to a procedure as parameter. create or replace package FOO is type FOOTYPE is record ( FOOTYPE_A varchar2(5) null, FOOTYPE_B varchar2(5) null, ...
1
vote
0answers
32 views

Implementing Oracle Object Type in C# / Dot net

we are implementing oracle object type and its method in C#, we followed below link, http://www.magic-dev.com/map-udt-asp-net-oracle.htm but ODP.Net is only converting the Attributes to C# Class, we ...
0
votes
1answer
57 views

how to reduce the Procedure time in oracle which is running based on Cursor for loop?

How can I reduce the time of the procedure? Now it is taking 7 minutes to completed, I am using Cursor for loop in my report to loop around the 400 employees (using Cursor for loop) for 30 days ...
0
votes
2answers
44 views

Oracle SQL Dynamic columns count

Simple question: I have a cursor that runs against a select statement provided in the parameter of a stored procedure, so the number of columns is not known. The question is How can I print the ...
0
votes
2answers
30 views

How to catch error in cursor declaration?

I have a need to write PL SQL that fetches data from another database over a DB link and perform some actions on it. DECLARE CURSOR cur_progs IS SELECT * FROM ...
1
vote
1answer
25 views

SQL Retrieving varray elements of a subobject in Oracle 11g Database

I am building a SQL query of a database where I am trying to retrieve an element of a VARRAY that is a subobject of several objects that is an element of another VARRAY. I can successfully query ...

1 2 3 4 5 84