Hello,
We are inserting a record to dB table from an external application.
Table
Create table test(id number, insert_date date)
Insert statement like below
Insert into test values(10,sysdate);
We need to insert another null record to test table after insert completes automatically.
Insert into test values(null,null);
Can it be done ..