Search Results

0
votes

Sybase Developer Asks: How To Create a Temporary Table in Oracle?

Yes, carson has it right. Global temporary tables are only visible to the session that creates them, and disappear either at the first commit or rollback, or at the end of the session. You can set …
13
votes

How can I create a copy of an Oracle table without copying the data?

Just use a where clause that won't select any rows: create table xyz_new as select * from xyz where 1=0; …
0
votes

Oracle: loading a large xml file?

Seems like you're talking about 2 issues -- first, getting the XML document to where Oracle can see it. And then maybe making it so that standard relational tools can be applied to the data. …
3
votes

In Oracle, is starting the SQL Query’s WHERE clause with 1=1 useful?

If they are building the query dynamically, you should check whether they're using bind variables. Building the query from literals requires extra parsing, potentially limiting scalability, and als …
0
votes

default value of a variable at the time of declaration in PL SQL

And another small addition: if you're dealing with BLOBs (or CLOBS), "empty" is not the same as null. See the Oracle large objects manual if you need to. …
0
votes

Update a newly created row before final commit [Oracle]

The important words in Vincent's response are "your session". A separate session will only see the unmodified data until you commit. That's part of read consistency means. Dependi …
0
votes

Is there an autmatic modification time stamp type for Oracle columns?

Another way to deal with this is by turning on fine-grained audit. The individual rows won't have a timestamp, but you'll have a record of all changes. Overkill in most situations, though -- I usua …
1
vote

How does one cheaply validate the existance of a column in a table in another schema with Oracle?

As with the other replies, normally I use ALL_TAB_COLUMNS for a query like this. But that will only show columns in tables where you have SELECT. And it's select on that column -- in the unlikely e …
2
votes

In Oracle, how do I create the “CREATE TABLE…” syntax for an existing table?

Using a tool like SQL Developer or Toad is probably simplest. But the information is all available in the data dictionary. In particular, check the documentation for DBMS_METADATA.get_ddl. Somethin …
1
vote

Executing Dynamic SQL in Oracle (PL/SQL) and Ensuring Security…

Take a look at Oracle's paper on writing injection proof pl/sql. The …