Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Variable interpolation in a file to be read in

by tapolyaip (Initiate)
on Oct 06, 2011 at 15:43 UTC ( [id://930008]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
       ...
       WHERE asof_date = '$test_date'
       ...
    
  2. or download this
       ...
       s/\$test_date/$test_date/g;
       ...
    
  3. or download this
    #===============================================#
    $ss_source_file   = "C:/code/mla/tmp.sql";
    ...
       print $trancd_sql{$trcd};
    }   
    #====================================================#
    
  4. or download this
    #=====================================================#
    -- tran_code 1752
    ...
          ... and so on, you get the idea
    ;      
    #==================================================#
    
  5. or download this
    SELECT *
       FROM DEV.TRANSACTOPMS
          WHERE TRANSACTION_CD IN ('146','147')
          AND AMT < 0
          AND ASOF_DATE = '30-APR-2011'
    
  6. or download this
    SELECT *
       FROM $schema.TRANSACTOPMS
          WHERE TRANSACTION_CD IN ('146','147')
          AND AMT < 0
          AND ASOF_DATE = '$test_date'
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://930008]
Approved by zwon
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-25 16:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found