William Robertson
Member³
I create a table in SQL*Plus as:
CREATE TABLE test_ts (ts TIMESTAMP);
INSERT INTO test_ts VALUES (SYSTIMESTAMP);
INSERT INTO test_ts VALUES (SYSTIMESTAMP);
INSERT INTO test_ts VALUES (SYSTIMESTAMP);
COMMIT;
When I go into PL/SQL Developer and try to query the data, I get:
ORA-03120: Two-task conversion routine: integer overflow
TOAD 7.3, TOra and OraEdit give similar errors. Is there a fix on the horizon? We are just starting to use TIMESTAMPs and this could be a big advantage for PL/SQL Dev if it was the only IDE to support them.
[This message has been edited by WilliamRobertson (edited 19 September 2003).]
CREATE TABLE test_ts (ts TIMESTAMP);
INSERT INTO test_ts VALUES (SYSTIMESTAMP);
INSERT INTO test_ts VALUES (SYSTIMESTAMP);
INSERT INTO test_ts VALUES (SYSTIMESTAMP);
COMMIT;
When I go into PL/SQL Developer and try to query the data, I get:
ORA-03120: Two-task conversion routine: integer overflow
TOAD 7.3, TOra and OraEdit give similar errors. Is there a fix on the horizon? We are just starting to use TIMESTAMPs and this could be a big advantage for PL/SQL Dev if it was the only IDE to support them.
[This message has been edited by WilliamRobertson (edited 19 September 2003).]