top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between $ vs $$ Informatica parameters?

+3 votes
711 views

What is the difference between $myvar and $$myvar parameters in Informatica PowerCenter?

posted Mar 10, 2014 by Madhavi Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote

Actually $ means internal Parameter/Variable (such as $DBConnection prefix or $PMSessionLogDir) whereas $$ are used for user-defined parameters or variables (which could be defined at mapping or workflow/worklet level).

You can declare and use variables and parameters starting with $$ You can override and use pre-defined parameters starting with $PM* (i.e. $PMSessionLogDir, $PMWorkflowLogCount) You can use without declaration parameters following predefined templates (i.e. $InputFile, $DBConnection, etc.).

answer Mar 10, 2014 by Shweta Singh
0 votes

$ - These are the system variables/Session Parameters like $Bad file, $input file, $output file, $DB connection, $source, $target etc.
$$ - User defined variables/Mapping Parameters like $$State, $$SRC, $$Time, $$Entity, $$Business_Date etc.
You can create a mapping variable/parameter with the name of $$myvar to pass the value in the mapping.

answer Apr 25, 2014 by Shatark Bajpai
...