Search Results

1
vote
1answer
328 views

Oracle dbms_scheduler - react to change of system date

I've got a dbms_scheduler-Job running in Oracle 10.2.0. When I change the system date back to yesterday, the job will wait for one day to continue its work. The reason for this is …
0
votes
2answers
1k views

Getting only one row in outer join using oracle

I've got a table and want to outer-join another table, getting only the first row (the one with lowest nr) of the second table using Oracle 10g. Edit: nr is unique within a …
6
votes
3answers
63 views

Impact of defining VARCHAR2 column with greater length

What are the effects of defining a column with VARCHAR2(1000) instead of VARCHAR2(10) in Oracle, when the values are not longer than 10 Byte? Does the column only …
0
votes
2answers
36 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 enc …
1
vote

How can I confirm a database is Oracle & what version it is using SQL?

You can either use SELECT * FROM v$version; or SET SERVEROUTPUT ON EXEC dbms_output.put_line( dbms_db_version.version ); if you d …
1
vote

What does “Standard” mean in the datatype column of describe

The type is "<ADT_1>" which is defined in package standard. According to the reference these …
0
votes

Transpose select results with Oracle

If you want to generate the query for each call or use a hardcoded max-column-count, then you can do something like that: WITH tab AS ( SELECT table_name, column_name FROM user_ta …