1
vote
8answers
117 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
3answers
29 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 …
1
vote
4answers
31 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 …
7
votes
11answers
3k views
SELECT COUNT(*) vs. fetching twice with an explicit cursor
I have read a book whose title is "Oracle PL SQL Programming" (2nd ed.) by Steven Feuerstein & Bill Pribyl. On page 99, there is a point suggested that
Do not "SELECT COUNT(*)" from a table …
0
votes
1answer
48 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
60 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
38 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
38 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
2answers
28 views
triggers in new and old columns
Why can't we use :new and :old columns in a statement level trigger?
1
vote
1answer
45 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'], …
1
vote
3answers
68 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
…
2
votes
6answers
78 views
How to create a menu in SQLPlus or PL/SQL
I have several scripts that I would like to start from a menu presented to the SQLPlus user. Something like:
Please make a selection:
1: Do script a
2: Do script b
3: Do script c
I just need a point …
3
votes
2answers
36 views
T-SQL’s equivalent of Oracle’s %TYPE operator?
When writing a procedure in PL/SQL, I can declare a parameter's type as myTable.myColumn%TYPE so that when I alter myColumn's type from say varchar2(20) to varchar2(50) I don't have to change the …
1
vote
3answers
72 views
SQL to create table with weeks in period - having breaks at month’s end (Oracle)
Hello,
I need to create a table with the following structure:
calendar week; week start date; week end date
which contains all weeks beginning in 2007 until the current week.
The special thing …
3
votes
2answers
64 views
Stored Procedure for copying data from one table to another
I have pairs of tables in the format TABLE and TABLE_TWIN now
TABLE is the main table with lots of data
TABLE_TWIN is a table with the exact same fields with a little data (different data)
Now I …
