The table is present in oracle database, I am updating that table with one record. It's executing and when I type select *
from that table it's showing that record.
But the problem is when I commit the changes. The table is showing nothing - I am not seeing anythng inside table, it's showing 0 records.
Can you please help me?
insert into recon values(1,'sri',-1,'20090806');
after this if i write
select * from recon;
It's showing that record but after commit it's showing nothing. There is no trigger for that table.
its not a view.