Another way to initialize variables in SQL*PLUS

Everyone has some way to inititalize variables in SQL*PLUS. My favorite is to use the "col" directive with "new_val" option. This approach does not require a spoolfile making it somewhat easier to use in SQL*PLUS coding choirs.

-- Here is one way to set an ARCHIVE_KEY variable 
--=============================================== 

-- Clear the variable 
undefine ARCHIVE_KEY ; 

-- Set the column to define 
col ARCHIVE_KEYval new_val ARCHIVE_KEY 

-- Select and initialize the variable 
-- **** 
-- NOTE: This is my format of ARCHIVE_KEY. 
--       You can change the format as needed. 
select 
    to_char(sysdate 
           ,'YYYYMMDD_HH24MISS') ARCHIVE_KEYval 
from dual; 

-- This is just to display the value 
select 
 '&&ARCHIVE_KEY' ARCHIVE_KEY 
from dual ; 
--eof-- 

For More Information

  • What do you think about this tip? E-mail the Editor at

    Requires Free Membership to View


This was first published in March 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.