Hi,
Maybe I've missed something but when I setup sqlformat to insert in my sqlcl session it returns "MYTABLE" instead of actual table name in output.
Do we need to define a variable somewhere to change it?
Here is an example:
orclbd> select * from test_tab_2;
REM INSERTING into MYTABLE
SET DEFINE OFF;
Insert into MYTABLE (PK_ID,RND_STR_1,ACC_DATE) values ('7','IJWQRO7T',to_timestamp('07/07/13 08:13:52','RR-MM-DD HH24:MI:SSXFF'));
orclbd>