...
Panel | ||
---|---|---|
| ||
DELETE from SCOTT."REQUESTS" and NAMES_PACEIDSPACEID = 1 and STATUS_LASTMODIFIED = to_timestamp('2013.06.12 13:40:18.360000000', 'yyyy.mm.dd hh24:mi:ss.ff') and ISRELATIVE IS NULL Error: Command affected 0 row(s). |
Then this query can be turned into a SELECT statement that can be run manually on the target database:
Panel | ||
---|---|---|
| ||
SELECT * from SCOTT."REQUESTS" where (1=1) and NAMES_PACEIDSPACEID = 1 and STATUS_LASTMODIFIED = to_timestamp('2013.06.12 13:40:18.360000000', 'yyyy.mm.dd hh24:mi:ss.ff') |
...
Panel | ||
---|---|---|
| ||
SELECT * from SCOTT."REQUESTS" where (1=1) and NAMES_PACEIDSPACEID = 1 and STATUS_LASTMODIFIED = to_timestamp('2013.06.12 13:40:18.360000000', 'yyyy.mm.dd hh24:mi:ss.ff') |
...