I am writing a script to be run in sqlplus 11. I have a user defined variable called compression. If this is true then I want to run the script CreateTablesCompression, otherwise run. I have the following:
decode(compression,'true',@@CreateTablesCompression,@@CreateTables);
However,when I run this I am thrown the error: unknown command beginning "decode...
Am I missing something here, I can't see why SQLPlus wouldn't recognise decode?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…