Hello,
I am trying to use VS Code add-on to spool INSERT scripts. As instead I get the incorrect output.
When I use the same script using SQL Plus, I get the correct output containing INSERT scripts.
The code:
show serveroutput
set sqlblanklines on
set heading off
set linesize 10000
set long 90000
-- not available in VSCode
-- set ddl pretty on
-- set ddl storage on
-- set ddl segment_attributes on
-- set ddl tablespace on
-- set ddl sqlterminator on
-- set pages 999
-- set longchunksize 1000
spool %userprofile%\Desktop\log_results.sql;
SELECT /*insert*/ * FROM CO_RDP_PROJECT where dwh_id < 0;
spool off;
It looks like the add-on is ignoring the /*insert*/
hint.
Could you please try to fix it?