PL/SQL

  • Enable/Disable Bind Variable in SQL*Plus

    As state in the title, this post is about turning off the bind variable in SQL*Plus. Actually, this is also applicable in PL/SQL Developer and Toad but I’ll be discussing more on SQL*Plus. You see, I have a problem wherein whenever I load my backup data (saved as insert statements) and there are ampersand (&)…

  • How to Get Oracle DB Version

    I only know two ways of getting the Oracle DB version you are currently connected to. They are as follows: SELECT * FROM product_component_version SELECT * FROM v$version This is quite handy if your program has SQL commands that are not applicable for earlier versions of Oracle Database.