How to clear stored substitution variables in Oracle SQL developer

12,449

Solution 1

UNDEFINE starttime;

Just use above command.

Solution 2

Just use one ampersand at the start. You will be prompted to enter the value fresh. See the difference between & and &&

Solution 3

You can try these commands:

select &&v_value from table_name;
undefine v_value;
Share:
12,449
SuryaVal
Author by

SuryaVal

Updated on June 14, 2022

Comments

  • SuryaVal
    SuryaVal almost 2 years

    Suppose I have a query:

    SELECT * from table1 tr where tr.start_time < &&starttime;
    

    First time i execute the query, SQL Developer prompts me to enter the value for the substitution variable 'starttime' and is stored. Next time I run the script, it reuses the same value again, how do I reset/clear the stored value?