Forum: Oracle Feb 28th, 2006 |
| Replies: 2 Views: 3,785 Hi,
Use 'sysdate' - without the quotes.
example:
select sysdate from dual
/
Kate |
Forum: Oracle Jul 14th, 2005 |
| Replies: 4 Views: 37,521 Hi Adi, I am glad you have it figured out now. |
Forum: Oracle Jul 12th, 2005 |
| Replies: 4 Views: 37,521 I am not sure what your problem is being caused by, but this is the definition of ORA-01019 if you didn't know.
ORA-01019: unable to allocate memory in the user side
Cause: The user side... |
Forum: Oracle Jul 4th, 2005 |
| Replies: 1 Views: 2,279 Hi benjamins,
Try this:
select tbl3.tbl3_name,
tbl4.tbl4_name,
tbl3.tbl3_flag,
tbl4.tbl4_flag
from tbl2,
tbl3, |
Forum: Oracle Jul 1st, 2005 |
| Replies: 2 Views: 6,991 Look into the 'execute immediate' command. You can use it to drop your constraint using the value in PKNAME. |
Forum: Oracle Jun 26th, 2005 |
| Replies: 1 Views: 7,060 Try 'Oracle PL/SQL Programming' from O'Reilly. I have the third edition by Feuerstein & Pribyl, it covers Oracle up to version 9i. I am not sure if a new edition has been released, but the series is... |