PL/SQL (Procedural Language/Structured Query Language) is Oracle Corporation's procedural language extension for SQL. Questions about PL/SQL should probably be tagged "oracle" as well.

learn more… | top users | synonyms (1)

0
votes
1answer
32 views

Oracle Function In Package Fails as Part of Select

When I call my function from my package like the following, it works. It is a bit complex but there are a lot of conditional variable. resultval := TG_PKG_ENTITY_TOTAL.user_entity_total('0012345678', ...
-1
votes
0answers
32 views

PL/SQL statement

Write an anonymous PL/SQL block to raise the salaries with 5%. Take care of the following: The employees with the lowest salary receives the salary raise of 5% first. Next the employee with the ...
0
votes
0answers
12 views

ORACLE OTL : using RETURNING INTO to return int

I need to return the value of a sequence from a INSERT Trying something like INSERT () () RETURNING uid INTO :uid<int>, but what I get back in the code is not correct. I see all examples ...
0
votes
1answer
13 views

Using Oracle PL/SQL table of record with multiple %rowtype fields

how can i populate a table of records wich has more than one field of %rowtype using bulk collect? my code: drop table child_table; drop table parent_table; / create table ...
0
votes
0answers
14 views

View is not visible to readonly account users

I am the admin of one DB and i have created View in admin account using below code to know the status of running jobs. CREATE OR REPLACE VIEW CAF_DB_REFRESH AS SELECT * FROM ...
0
votes
2answers
24 views

Here a pl-sql function with some defintios for new datatypes , can I get an explination for it

I can't really understand what's happening in this code , I want to understand it , I tried but it seems like I'm memorizing it instead of understand it . create or replace type t_num_table as table ...
1
vote
3answers
49 views

Dynamic Update query in procedure

I'm trying to create an Dynamic UPDATE query for a column listed out in all tables in DB. However, the query is failing with the error Code: -942 Message: ORA-00942: table or view does not exist ...
0
votes
3answers
38 views

Function format number

For oracle, Can anyone fixes the function below to let it works with "a number (10,2)"? Just this condition only. Here I come with the function.. CREATE OR REPLACE FUNCTION Fmt_num(N1 in NUMBER) ...
0
votes
1answer
17 views

pl /sql procedure execution giving an error

My stored proc is defined as create or replace procedure TEST( name IN table1.col_name%type, price IN table1.col_price%type ) is begin update table1 t set t.name =name where t.price = ...
0
votes
1answer
16 views

How to rxecute an ad-hoc stored procudure in UNIX shell script? Also is it possible to have IF-ELSE/WHILE LOOPS in sql-plus?

I have a three part question which arises out of my following requirement. I have been asked to automate some stored procedures using shell scripts. Earlier the nature of the stored proc(not the ...
1
vote
3answers
32 views

Stuck on PL/SQL: ORA-00933: SQL command not properly ended

I can't see my error. I marked the places SQL Developer is citing errors. Can you see where I am going wrong? ZCTA5_2000 is a valid table with data. CREATE OR REPLACE TRIGGER zip_trigger BEFORE ...
0
votes
2answers
33 views

Better way to program in matrix style selections in plsql?

By matrix style, I mean having n variables, each with some number of inputs, and having to handle all possible values. The simplest case of this is multiple boolean values and having to handle every ...
1
vote
3answers
41 views

SQL*Plus how to accept text variable from prompt?

Im very beginner in psql and i have a question. Here is the code: SET serveroutput ON ACCEPT myVariable PROMPT "Input value: "; BEGIN dbms_output.put_line('My input variable is: ...
0
votes
1answer
25 views

Dynamic Sql: Create array from records using array of column names

I am pulling all of the column_names (cname1) from a crosstab table that I made. There are thousands of these column names so I combined them into an array. I then want to use dynamic sql (or whatever ...
0
votes
3answers
46 views

Returning the results of hundreds of columns into an array

I have a table with hundreds of columns. I need to take the result of every column (except one) and put them into an array and bring back the rest of the results. Here it was the table looks like: ID ...
0
votes
0answers
23 views

Getting genereic [object Object] exception when I should get an ORA-error

I've this function call: try{ foo("func", "params") } catch (e){ throw e; } func is only a ora:plsql query. This first block generates an ORA-exception message. CODE1: DECLARE part_no_ ...
-2
votes
1answer
12 views

Can we add comments to an object using 'Alter type ' command

Can we add comments to type object in Oracle 10g using 'Alter type ' command.?
0
votes
0answers
20 views

ODI || Create Multiple Rows From Single Comma Separated Row

I have a comma separated list of values for 2 columns and a unique key for single row. I want to create a single row for each comma separated row with key repeating for each value. For Example, I ...
1
vote
1answer
39 views

CREATE OR REPLACE TYPE with Type and Table Dependencies

Before submitting this question I've checked the Oracle docs about this subject: Using CREATE OR REPLACE TYPE with Type and Table Dependencies but still don't get my error solved. I've created some ...
-2
votes
0answers
29 views

Don't work insert cascade PL/SQL

CREATE OR REPLACE PROCEDURE pins_billet(a1 billet.lieu%TYPE, a2 billet.tribune%TYPE, a3 billet.prix%TYPE, a4 stade.nom%TYPE, a5 stade.adresse%TYPE, a6 ...
0
votes
2answers
75 views

Oracle insert loop - PLS-00103 error

I am trying to create an insert statement based off of a loop but I am getting PLS-00103 Encountered the symbol "end of file" when expecting one of the following: ; The point of the script is to ...
0
votes
1answer
22 views

Organize a Set of PL-sql query in Asp.net page

i have an interface on which the user can select multiple values: Input x: a , b , c , d .....(100 values for have an estimation ) Input y: aa, bb, cc, dd .... (100 values for have ...
2
votes
2answers
42 views

What is the best practice on sending emails from PL/SQL?

From what I understand (correct me if I'm wrong): The older package utl_smtp is very flexible and lets you send emails of any length. Once you open the connection, you can keep writing to it. ...
0
votes
1answer
31 views

Reversed cursor for loop plsql

Is there a way to iterate a cursor in a descending order using plsql? I tried this: FOR item IN REVERSE items LOOP -- do stuff END LOOP; but it seems to ignore the reverse key word. Any ...
-1
votes
2answers
52 views

How to write a trigger to check if salary is out of min or max range of salaries pl-sql Oracle

I'm trying to write a trigger that check if the salary is less or greater the min or max salary using pl-sql in oracle but it keeps giving me an error , it says:Error(11,1): PLS-00103: Encountered the ...
0
votes
0answers
25 views

How to keep the military format when converting string to timestap in Oracle?

This is my code: l_ts := to_timestamp((d || ' 13:00:00'), 'DD.MM.YYYY:HH24:MI:SS'); u_ts := to_timestamp((d || ' 17:00:00'), 'DD.MM.YYYY:HH24:MI:SS'); I keep getting: 26-MAY-13 01.00.00.000000 ...
-9
votes
1answer
75 views

Creating stored procedures in Oracle [closed]

I come from mysql and sqlserver, really time ago that I doesn't create objects in oracle (really it have changed a lot) I just want create a procedure that doesn't retrieve parameters and inside code ...
0
votes
2answers
44 views

create or replace table in oracle pl/sql

i need a script which creates table or if it already exist drops it, and when recreates table. After some research i have found out that CREATE OR REPLACE TABLE in pl/sql doesn`t exist. So i come up ...
0
votes
2answers
33 views

Keeping track of user ID with custom authentication

I am currently making an app on apex.oracle.com, and I've been trying to solve this for a couple hours now, but I have no idea how to. Alright, so basically my application has custom authentication ...
-2
votes
1answer
50 views

Oracle query - Stored proc

I am running a stored proc : CREATE OR REPLACE MYSP (runDate Date) BEGIN EXECUTE IMMEDIATE 'CREATE TABLE MYTABLE AS (SELECT * FROM DATATABLE WHERE DATADATE = :1' USING runDate); END MYSP; I get ...
3
votes
3answers
61 views

Efficient updating of a row on one table with data from multiple rows on another table

So in my database, I have two tables which have a many to one relationship. I am trying to update the 'parent' table by looking at all the rows on the 'child' table (sorry if I'm not using the ...
1
vote
1answer
30 views

Oracle APEX Shuttle Box Output

I am new to APEX, and I am having issues with displaying output. The shuttle box itself works fine, but below it I have a submit button. When this is pressed it should display the user's manager in ...
0
votes
1answer
42 views

BULK COLLECT into a table of objects

When attempting to use a BULK COLLECT statement I got error ORA-00947: not enough values. An example script: CREATE OR REPLACE TYPE company_t AS OBJECT ( Company VARCHAR2(30), ...
0
votes
2answers
29 views

Replacing characters at specific positions in strings in Oracle

I'm trying to write a function that can decode a message by switching pairs of characters around. Say I have the message hello! which, when encoded, turns into ehll!o. Is there an existing function ...
0
votes
1answer
45 views

What does caret(^) in Oracle translate function mean?

I encountered this statement from other developer's code which returns ABCDEF: SELECT TRANSLATE('ABC123DEF456', '^0123456789', '^') FROM DUAL; Then I tested with the following which have the same ...
2
votes
2answers
49 views

Where is object_id of Stored Procedure stored in Oracle?

I am an beginner in PL/SQL, so I do not know whether this question makes sense. I am trying to find out the object_id of a stored procedure under a package (not under a schema) in Oracle 11g. I tried ...
-1
votes
0answers
44 views

How to learn Sql and PL/SQL(forms,reports etc.) [closed]

Since beginning I am not interested in programming. I am working in an MNC on oracle financial functional(ERP) I really found ERP very interesting but when I tried to find out something oracle ...
0
votes
2answers
48 views

PL/SQL TRIGGER for updating

I have two tables emp & copy_emp with same structure and same datas. I want if any changes occurred in emp should be reflect in copy_emp. Hence i created a trigger which i gave below. create or ...
0
votes
0answers
39 views

Code erases previous month record while updating current month record

Using 11gR2, windows 7 client machine. I need to update the table missing_volume (below), where I need to calculate the estimated_missing column. The calculation of estimated_missing column for ...
0
votes
4answers
48 views

oracle sql query to get column values without space

I am trying to run a query to select values from a column in a table, which doesn't have space at specific position in the data in the column. i.e. first two positions. Select test_col from A where ...
-1
votes
0answers
48 views

Unknown source of performance issue when setting, named parameter = named parameter (crazy, I know, read the details)

I have a java class that is part of a custom framework for making PL/SQL prepared statement querys. The usage of this class within said framework requires that all the prepared SQL statements called ...
3
votes
2answers
50 views

Oracle MERGE deadlock

I want to insert rows with a MERGE statement in a specified order to avoid deadlocks. Deadlocks could otherwise happen because multiple transaction will call this statement with overlapping sets of ...
0
votes
1answer
45 views

PL/SQL : Handling exception in Case Statement

I am having trouble handling exception in Case statment , for exmaple Case when someiput is null then select something from sometable where somecondition=somevalue Exception ...
0
votes
1answer
61 views

Java Desktop application using dbms_alert

I have an idea to create a little Java desktop application that displays notification when it finds a new record in an oracle db. I don't want all the desktop clients to run the queries so what I was ...
1
vote
2answers
33 views

Why the Oracle procedure not compiling?

CREATE OR REPLACE PROCEDURE ResetVersionNumberValue IS sql_stmt VARCHAR2(2000); BEGIN FOR sql_stmt IN (select 'update '|| table_name || ' set version = 0' ...
0
votes
2answers
23 views

oracle plsql WITH statement combined with INSERT

During migration of postgresql 9 functions faced the following issue: in Oracle you can use WITH just in complex select statements. Meanwhile in postgres (and MS SQL 2008 too) you can use WITH and ...
0
votes
2answers
70 views

Oracle PL/SQL function that accepts variable number of string parameters and returns comma separated

I need an Oracle PL/SQL function that accepts a variable number of string parameters and returns those strings comma separated with any null values ignored. Can't find any examples on google. So ...
0
votes
1answer
37 views

PL/SQL Procedure Variable instead of column name in insert statement

I would like to insert data into an Oracle database, but the column name where I want to insert isn't known in the first step, it depends on the user's choice. For example: colonne varchar(12) ...
0
votes
2answers
46 views

How to run batch file from within PL/SQL procedure

I have a batch file which will execute some .exe which do some operations (like connecting to DB, fetching data, insert data etc...) All the things are configured in the batch file and when I run it, ...
0
votes
2answers
52 views

Subtract a given date from sysdate to get the number of days

I am trying to do something like this v_target_date := trunc (sysdate) - trunc (TO_DATE (iv_target_date, 'DD-MM-YYYY HH:MI AM')); but i am not getting what i am looking for ? I want to see what is ...

1 2 3 4 5 107