Tagged Questions

1
vote
3answers
25 views

Poll Oracle DB for changes

Hi, I am trying to figure out how I could poll for changes that are made to an Oracle Table without using a trigger. The only changes I currently care about are new/inserted records. Any …
4
votes
3answers
55 views

How to send arbitrary parameters to Oracle trigger?

The purpose is to send extra information to triggers like current user id from a web application. Since a connection pool is used, and same user id is used for all connections how do I pass the …
0
votes
2answers
35 views

PLSQL with Oracle 11g

I have quite a few lines of PL/SQL code in Oracle 10g, and we are going to move to 11g. I expect my code to work there too, but: Are there any pitfalls to expect, any problems you encountered? What …
1
vote
2answers
19 views

Renaming tags in XML output

I have some code that generates XML from some tables. The tables that I'm querying were generated from an XSD file the describes the XML I am supposed to be generating. The problem is that the names …
1
vote
5answers
58 views

how to loop accepting user input with pl/sql?

I want to be able to insert a variable number of rows into a table based on user input? eg. Please enter value, enter "done" when no more values: value 1 Please enter value, enter "done" when no more …
2
votes
8answers
150 views

Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rows

I'm getting some strange behaviour from an Oracle instance I'm working on. This is 11gR1 on Itanium, no RAC, nothing fancy. Ultimately I'm moving data from one Oracle instance to another in a data …
0
votes
2answers
40 views

Evaluation of PL/SQL boolean variables in Oracle Forms

Suppose I have a BOOLEAN variable within a PL/SQL block in an Oracle Form: DECLARE is_viewable BOOLEAN; BEGIN is_viewable := ...; IF NOT is_viewable THEN raise_my_error(); // pseudo-code …
1
vote
4answers
50 views

Does anyone have a sample data migration script (Oracle 10g to Oracle 10g, but different schemas)?

I am trying to write a data migration pl/sql script to transfer some of the data in one schema to a different schema on another server. The second database started as a subset of the original …
1
vote
3answers
40 views

ORA-02014- How do I update a randomly selected row from a table?

I'm trying to randomly select a card from a table of cards with columns c_value and c_suit using a procedure. After selecting it, the procedure should update that entry's taken field to be 'Y'. …
3
votes
1answer
43 views

Oracle nested tables and column names

I'd like to do the following in Oracle 10g (this is a contrived example to show the concepts, not real code) create table orders (order_id NUMBER); insert into table orders values (1); …
0
votes
1answer
60 views

Oracle stored function/procedure with VARRAY or user-defined type as IN parameter

I've defined VARRAY of a user-defined type such as this : CREATE OR REPLACE TYPE TEST_T AS OBJECT (C1 VARCHAR2(20 BYTE), C2 VARCHAR2 (11 Byte)); CREATE OR REPLACE TYPE ARRAY_TEST_T AS …
0
votes
3answers
65 views

Check sql script valid

As part of a release we run a load of PL/SQL scripts against a database. Recently someone left the ; off the end of a line in one script that was called another script so this meant that script did …
1
vote
3answers
76 views

oracle stored procedure problem

Hi I am using oracle 10g express edition. It has a nice ui for db developers. But i am facing some problems executing stored procedures. Procedure: create or replace procedure temp_proc is begin …
1
vote
1answer
47 views

Post a file to a .php page from Oracle

On my website I have a .php script to which our customers can post orders. if (is_uploaded_file($_FILES['file']['tmp_name'])) { if (move_uploaded_file($_FILES['file']['tmp_name'], …
0
votes
2answers
30 views

triggers in new and old columns

Why can't we use :new and :old columns in a statement level trigger?

1 2 3 4 5 37 next
15 30 50 per page