Claus Pedersen
Member³
I have a command script with the commands:
SELECT &&1 FROM dual;
SELECT &&2, &&1 FROM dual;
PLD does not prompt for the variable &&1, but instead automatically replaces it with the text
SELECT Developer\login.sql FROM dual
PLD prompts for variable &&2 correctly: Enter value for 2.
If I enter e.g. '?' in the prompt for 2, my second select becomes:
SELECT '?', Developer\login.sql FROM dual
Where does this "Developer\login.sql" string come from and what do I do to get rid of it? Does &&1 have a special meaning in PLD?
I am using PLD version 11.0.6.1776 32 bit.
The 64 bit version also sometimes gives this error, but only when you call command scripts from other command scripts (at least that is the situation where I have noticed it)
SELECT &&1 FROM dual;
SELECT &&2, &&1 FROM dual;
PLD does not prompt for the variable &&1, but instead automatically replaces it with the text
so my first select becomesDeveloper\login.sql
SELECT Developer\login.sql FROM dual
PLD prompts for variable &&2 correctly: Enter value for 2.
If I enter e.g. '?' in the prompt for 2, my second select becomes:
SELECT '?', Developer\login.sql FROM dual
Where does this "Developer\login.sql" string come from and what do I do to get rid of it? Does &&1 have a special meaning in PLD?
I am using PLD version 11.0.6.1776 32 bit.
The 64 bit version also sometimes gives this error, but only when you call command scripts from other command scripts (at least that is the situation where I have noticed it)
Last edited: