var run_id_query = `INSERT INTO STG.RUN_STATUS (RUNID,STATUS,STATUS_DESCRIPTION)
VALUES (TO_CHAR(CURRENT_DATE,'YYYYMMDD'),0,'RUN START')`;
var run_id_stmt = snowflake.createStatement({ sqlText: run_id_query});
var run_id = run_id_stmt.execute();
getting error SQL compilation error: syntax error line 3 at position 8 unexpected 'ID_DEV'.
insert is present in STG schema, i am trying to insert it from INT schema