Hi,
I'm begeinner in pl/sql framework and i need help pls
How do i can use data generator tool to create values for my table with timestamp atribute?
Tahnks,
Aron
This will not work as intended, because adding numerical data to TIMESTAMP data gives DATE result, not TIMESTAMP.
What should work is:
SQL(systimestamp - numtodsinterval(dbms_random.value * 10, 'DAY'))