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
0answers
11 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 ...
0
votes
1answer
15 views

Using a parameter to filter out multiple values in plsql query

In my query (note that I'm NOT using a procedure) I need to use a Boolean parameter that will define whether to filter out certain records or not. My parameter's name is "WO" (= without). So - if the ...
0
votes
2answers
31 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
1answer
17 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
42 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 ...
2
votes
3answers
47 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 ...
0
votes
0answers
20 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
33 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
23 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
38 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
48 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
41 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
47 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
33 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
41 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
47 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
49 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
41 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
49 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 ...
-2
votes
0answers
30 views

Oracle EXECUTE IMMEDIATE gives PLS-00382: expression is of wrong type? why?

The following oracle procedure produces error PLS-00382: expression is of wrong type. How to fix this? CREATE OR REPLACE PROCEDURE ResetVersionNumberValue IS sql_stmt VARCHAR2(1000); BEGIN ...
1
vote
2answers
27 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
20 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
56 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
35 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
40 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
48 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 ...
0
votes
0answers
14 views

Oracle Apex JSON non whitspace error

i'm stumbling over a json error while writing an item plugin. I'm trying to add some js code to the html code via *apex_javascript.add_onload_code*: e.g. apex_javascript.add_onload_code( p_code ...
1
vote
2answers
39 views

Function resumes execution after exception in subprogram

I am raising an exception in a subprogram, and I'm expecting to see the calling function halt execution at this point. However, the calling function continues processing as if nothing happened, and I ...
1
vote
1answer
60 views

PL/SQL Using aliases and functions in the subquery of an insert statement

I'm pretty new to PL/SQL, but I was wondering if there was a way to achieve the following : INSERT INTO aTable ( SELECT FN_TO_VALUE(b.field1, b.field2, b.field3) as alias1, ...
1
vote
2answers
40 views

PL/SQL: What happens to collection contents inside a compound trigger in case of unhandled exception

Let's say we have the following trigger: create or replace trigger TR_TEST for update or insert or delete on TABLE_X compound trigger type array is table of TABLE_X%rowtype index by ...
0
votes
0answers
34 views

How to get a list of PL/SQL Stored procedure referenced inside a PL/SQL stored procedure or function

I have a PL/SQL stored procedure that is very huge (in terms of number of lines). I want to split this stored procedure to make it more maintainable . This stored procedure has reference to a number ...
0
votes
4answers
76 views

Oracle: dynamically select script

How do I run a script in SQLPlus whose pathname is passed in a string. Something like the following (fails): SET SERVEROUTPUT ON; DECLARE path VARCHAR2(128); BEGIN path := ...
0
votes
2answers
44 views

ORACLE Update with MINUS result

In Oracle 10g, I want to update the records of the resulting minus query below: ( SELECT A,B,C FROM Table1 MINUS SELECT A,B,C FROM Table2 ) The column that is to be updated is not part of ...
1
vote
2answers
35 views

Oracle Forms 6i Comparing Fields

I have a form with two fields which are type Char 128 each i am trying to compare the contents of these fields. However i am not getting a proper comparison done. When both fields have the same data ...
1
vote
1answer
27 views

oracle dynamic sql using params with brackets as table name

I have a table in my schema with brackets in its name (that's a legacy, cannot be modified): CREATE TABLE "Addresses" ("ID" NUMBER(*,0) , "FullAddress" ...
1
vote
2answers
36 views

PL/SQL Case Statement - IS NULL

I have some SQL, far too much to add all of the statement in this question, that I am trying to improve in order to drive out system slowdowns. In part of the PL/SQL there is an AND Exists clause ...
0
votes
1answer
21 views

How to populate a single-dimension array with result of a query FOR DB2?

I need to populate a single-dimension array with a result set from a select query. I have created the array type using: create or replace type UR.array_traveler_id as BIGINT array[]; and in the ...
2
votes
4answers
44 views

How do you search for PL/SQL code in Oracle forms fmb files?

How do you find code if you don't know which Form it's in. If you know the form you can search pl sql but what if you don't know form? For example I know the name of a field that is used in some ...
2
votes
2answers
66 views

Correct way of writing PL SQL conditions

Below is the condition for my table Request. level of till 300$ 301-500$ 501-3400$ credit card usage in 3 month 0% 0% 0% 0% 1-30% 30% ...
1
vote
2answers
37 views

Redirect to apex page and set error message to be displayed

I have a process that runs when a page is submitted. In the process I am catching an exception and if an exception occurs, I want to redirect to a different page and display the error message of the ...
3
votes
2answers
43 views

Oracle equivalent of Java's Varargs

I'm trying to create a PL/SQL Procedure which can handle an unknown, but relatively small, number of Strings/Varchar2s as a parameter. The equivalent in Java could be to use Varargs: public void ...
0
votes
1answer
37 views

PL/SQL value of a boolean after execution using SQL%NOTFOUND

Just started learning about PL/SQL and the cursor attributes. I am confused to how the SQL%NOTFOUND works. In the below code should v_1 compile to true at all times? DECLARE v_1 BOOLEAN; ...
0
votes
2answers
49 views

How to configure PL/SQL Developer IDE to leave the columns names as they are?

I have created a table with some columns using PL/SQL Develper to access this Oracle database. After clicking the "Apply" button that will create the table, all my column names suddenly become upper ...
0
votes
1answer
62 views

Why am i getting ORA-01843: not a valid month error?

I've asked this question in the previous post (ORA-01843: not a valid month?) but its changed since then and i thought it would be better to make it clearer from the start. I am receiving this error ...
0
votes
1answer
40 views

Convert Julian date to JDE Julian date

Does anybody know how to convert today's Julian date (2456425) to JDE Julian date (113133)? Thanks
1
vote
2answers
29 views

PLS--00103 error in pl/sql

I was writing a simple program of senior citizen checking. But the error baffled me. The code as follows declare gen char(1); age number(3); begin gen:='&gen'; age:=&age; if ...
0
votes
4answers
45 views

Manipulating tables in Oracle

Creating and using pl/sql proceedures which do not interact with data stored in a database are simple to make and execute, but of obvious limited use. But I'm having some difficulty in manipulating ...
0
votes
4answers
66 views

Oracle: function only returning null

The following function is supposed to return information relating to a particular meeting, stored in a meeting table: CREATE TABLE "MEETING" ( "MEETING_ID" NUMBER(10,0) NOT NULL ENABLE, ...
0
votes
1answer
39 views

oracle declare variable integer to be used as counter

Could anyone show me an example how you would run this type of MySQL style query in Oracle? SET @counter = 0; SELECT (@counter+1) AS rowCount, t.username FROM USER AS t I've seen various examples ...
0
votes
0answers
13 views

Spring Tool Suite - JDBC - PL/SQL configuration and integration

I need to implement a simple prototype that interfaces my application with an Oracle schema and in particular with PL/SQL packages (can't use any SQL code from Java). I've created a new project from ...

1 2 3 4 5 106