Tagged Questions
0
votes
1answer
48 views
What does `delete <table name>` in PLSQL code mean?
I have a PLSQL code with the following line of code.
delete my_table;
Where my_table is a Global Temporary Table. I am guessing the above code means, delete all rows from the table. However, I am ...
0
votes
1answer
149 views
Create temporary TABLE inside a FUNCTION [duplicate]
How can I create a temporary table that I can return when the function is called?
0
votes
3answers
112 views
ORA-14551 when inserting into GTT
I have the following code:
CREATE OR REPLACE FUNCTION repeatable_rand_text(ftype IN VARCHAR2
, in_val IN VARCHAR2)
RETURN VARCHAR2 IS
...
-2
votes
2answers
2k views
Creating table before creating a cursor in Oracle
I have a PL/SQL procedure which creates a temporary table and then extracts the data from this temporary table using cursors, processes the data and then drops the temporary table. However Oracle ...
0
votes
3answers
885 views
using Global Temporary table in a Job
I am working on a PL-SQL stored procedure which will run depending on a daily job.
in the stored procedure I am trying to use a global temporary table like that:
CREATE GLOBAL TEMPORARY TABLE ...
0
votes
2answers
213 views
Global temporary table of object type with ref attribute
In oracle 9i database, I have a table of objects type. The object has a REF attribute.
When i do "select deref..." works fine.
THE PROBLEM IS:
Due to architectural issues, i have to make the table a ...
4
votes
1answer
926 views
TO_CHAR of an Oracle PL/SQL TABLE type
For debugging purposes, I'd like to be able to "TO_CHAR" an Oracle PL/SQL in-memory table. Here's a simplified example, of what I'd like to do:
DECLARE
TYPE T IS TABLE OF MY_TABLE%ROWTYPE INDEX BY ...
2
votes
3answers
24k views
Create a temp table in PL/SQL
I'm working with an Oracle 10g database, and I want to extract a group of records from one table, and then use that for pulling records out of a bunch of related tables.
If this were T-SQL, I'd do it ...
1
vote
3answers
12k views
ORA-14551: cannot perform a DML operation inside a query
I have the following inside a package and it is giving me an error:
ORA-14551: cannot perform a DML operation inside a query
Code is:
DECLARE
CURSOR F IS
SELECT ROLE_ID
FROM ...
13
votes
2answers
12k views
ways to avoid global temp tables in oracle
We just converted our sql server stored procedures to oracle procedures. Sql Server SP's were highly dependent on session tables (INSERT INTO #table1...) these tables got converted as global ...