Hi guys,
In one of my code, I want to delete my custom table, but somehow while in the middle of process, when I do debugging, the table has not being deleted.
I'm using this kind of syntax:
MY_PaymentGroupTmp recPaymGroupPayDel;
ttsbegin;
delete_from recPaymGroupPayDel;
ttscommit;
While I debug this, after passed ttscommit, then checking in SSMS, the data still there. Ain't "delete_from" will delete all the records in the specified table ?
Anything that I missed ?
Thanks,