Claus Pedersen
Member³
I have a command window with the following code:
The marking of pairs of column name and data does not work.
If I add another 'insert' statement after the first, it will work for the second statement, probably because of the semicolon after the first statement.
Note: the code was generated by PLD (SQL window -> right-click in grid -> export results -> SQL file)
Code:
prompt Importing table EMP...
set feedback off
set define off
insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)
values (7369, 'SMITH', 'CLERK', 7902, to_date('17-12-1980', 'dd-mm-yyyy'), 800.00, null, 10);
prompt Done.
The marking of pairs of column name and data does not work.
If I add another 'insert' statement after the first, it will work for the second statement, probably because of the semicolon after the first statement.
Note: the code was generated by PLD (SQL window -> right-click in grid -> export results -> SQL file)