Informatica LookUp Transformation
This tutorial shows the process of creating an Informatica PowerCenter mapping and workflow which pulls data from Flat File  data sources and use LookUp and Filter Transformation.


For the demonstration purpose lets consider a flat file with the list of existing and potential customers. We need to create a mapping which loads only the potential customers but not the existing customers to a relational target table.

While creating the mapping we will cover the following.
  • Create a mapping which reads from a flat file and creates a relational table consisting of new customers
  • Analyze a fixed width flat file
  • Configure a Connected Lookup transformation
  • Use a Filter transformation to exclude records from the pipeline.

I. Connect to the Repository

  1. Connect to the repository.
  2. Open the folder where you need the mapping built.

II. Analyze the source files

  1. Import the flat file definition (say Nielsen.dat) into the repository.
  2. Select SOURCES | IMPORT FROM FILE from the menu.
  3. Select Nielsen.dat from the source file directory path. Hint : Be sure to set the Files of type: to All files (*.*) from the pull-down list, before clicking on OK.
    1. Set the following options in the Flat File Wizard:
    2. Select Fixed Width and check the Import field names from first line box. This option will extract the field names from the first record in the file. Informatica PowerCenter flat file Configuration
    3. Create a break line or separator between the fields.
    4. Click on NEXT to continue. Informatica PowerCenter flat file Configuration
    5. Refer Appendix A to see the structure of NIELSEN.DAT flat file. Informatica PowerCenter flat file Configuration
  4. Change field name St to State and Code to Postal_Code. Note : The physical data file will be present on the Server. At runtime, when the Server is ready to process the data (which is now defined by this new source definition called Nielsen.dat) it will look for the flat file that contains the data in Nielsen.dat.
  5. Click Finish.
  6. Name the new source definition NIELSEN. This is the name that will appear as metadata in the repository, for the source definition.

III. Design the Target Schema

Assumption: The target table does not exist in the database
  1. Switch to Target Designer.
  2. Select EDIT | CLEAR if necessary to clear the workspace. Any objects you clear from the workspace will still be available for use in Designer’s Navigator Window, in the Targets node.
  3. Drag the NIELSEN source definition from the Navigator Window into the workspace to automatically create a target table definition. You have just created a target definition based on the structure of the source file definition. You now need to edit the target table definition.
  4. Rename the table as Tgt_New_Cust_x.
  5. Informatica PowerCenter target Configuration
  6. Enter the field names as mentioned in the Figure below .Change the Key Type for Customer_ID to Primary Key. The Not Null option will automatically be checked. Save the repository.
  7. The target table definition should look like this Informatica PowerCenter target Configuration
  8. Create the physical table in the Oracle Database so that you can load data. Hint : From the Edit table properties in Target designer, change the database type to Oracle. Informatica PowerCenter target Configuration

IV. Create the mapping and drag the Source and Target

  1. Create a new mapping with the name M_New_Customer_x
  2. Drag the source into the Mapping Designer workspace. The SourceQualifier should be automatically created.
  3. Rename the Source Qualifier as SQ_NIELSEN_x
  4. Drag the target (Tgt_New_Cust_x) into the Mapping Designer workspace

V. Create a Lookup Transformation

  1. Select TRANSFORMATION | CREATE.
  2. Select Lookup from the pull-down list.
  3. Name the new Lookup transformation Lkp_New_Customer_x. Informatica PowerCenter lookup Configuration
  4. You need to identify the Lookup table in the Lookup transformation. Use the CUSTOMERS table from the source database to serve as the Lookup table and import it from the database.
  5. Select Import to import the Lookup table. Informatica PowerCenter lookup Configuration
  6. Enter the ODBC Data Source, Username, Owner name, and Password for the Source Database and Connect.
  7. In the Select Tables box, expand the owner name until you see a TABLES listing.
  8. Select the CUSTOMERS table.
  9. Click OK.
  10. Click Done to close the Create Transformation dialog box. Informatica PowerCenter lookup Configuration Note : All the columns from the CUSTOMERS table are seen in the transformation.
  11. Create an input-only port in Lkp_New_Customer_x to hold the Customer_Id value, coming from SQ_NIELSEN_x .
    1. Highlight the Cust_Id column from the SQ_NIELSEN_x
    2. Drag/drop it to Lkp_New_Customer_x.
    3. Double-click on Lkp_New_Customer_x to edit the Lookup transformation.
    4. Click the Ports tab, make Cust_Id an input-only port.
    5. Make CUSTOMER_Id a lookup and output port. Informatica PowerCenter lookup Configuration
  12. Create the condition for lookup.
    1. Click the Condition Tab.
    2. Click on the    icon.
    3. Add the lookup condition: CUSTOMER_ID = Cust_Id.
      Note : Informatica takes its ‘best guess’ at the lookup condition you intend, based on data type and precision of the ports now in the Lookup transformation. Informatica PowerCenter lookup Configuration
  13. Click the Properties tab.
  14. At line 6 as shown in the figure below, note the Connection Information.
    Informatica PowerCenter lookup Configuration

VI. Create a Filter Transformation

  1. Create a Filter transformation that will filter through those records that do not match the lookup condition and name it Fil_New_Cust_x.
  2. Drag all the ports from Source Qualifier to the new Filter. The next step is to create an input-only port to hold the result of the lookup.
  3. Highlight the CUSTOMER_ID port from Lkp_New_Customer_x .
  4. Drag it to an empty port in Fil_New_Cust_x .
  5. Double-click Fil_New_Cust_x to edit the filter.
  6. Click the Properties tab.
  7. Enter the filter condition: ISNULL(CUSTOMER_ID). This condition will allow only those records whose value for CUSTOMER_ID is = null, to pass through the filter.
  8. Click OK twice to exit the transformation.
  9. Link all ports except CUSTOMER_ID from the Filter to the Target table.
    Hint : Select the LAYOUT | AUTOLINK menu options, or right-click in the workspace background, and choose Auto link. In the Auto link box, select the Name radio button. This will link the corresponding columns based on their names.
    Informatica PowerCenter mapping Configuration
  10. Click OK.
  11. Save the repository.
  12. Check the Output window to verify that the mapping is valid.
  13. Given below is the final mapping.
Informatica PowerCenter mappingConfiguration

VII.    Create the Workflow and Set Session Tasks Properties

  1. Launch the Workflow Manager and connect to the repository.
  2. Select your folder.
  3. Select WORKFLOWS | CREATE to create a Workflow as wf_New_Customer_x.
  4. Select TASKS | CREATE to d create a Session Task as s_New_Customer_x.
  5. Select the M_New_Customer_x mapping.
  6. Set the following options in the Session Edit Task:
    1. Select the Properties tab. Leave all defaults.
  7. Select the Mapping tab.
    1. Select the Source folder. On the right hand side, under Properties, verify the attribute settings are set to the following:
      1. Source Directory path = $PMSourceFileDir\
      2. File Name = Nielsen.dat (Use the same case as that present on the server)
      3. Source Type: Direct
        Note : For the session you are creating, the Server needs the exact path, file name and extension for the file as it resides on the Server, to use at run time
    2. Click on the Set File Properties button. Informatica PowerCenter Session Configuration
    3. Click on Advanced. 
      Informatica PowerCenter Session file Configuration
    4. Check the Line sequential file format check box.
      Informatica PowerCenter Session file Configuration
    5. Select the Targets folder. 
      1. Under Connections on the right hand side, Select the value of
        Target Relational Database Connection.
    6. In the Transformations Folder, Select the Lkp_New_Customer transformation.
      1. On the right hand side, in Connections, Select the Relational Database Connection for the Lookup Table. Figure
        Informatica PowerCenter Session Configuration
  8. Run the Workflow.
  9. Monitor the Workflow.
  10. View the Session Details and Session Log.
  11. Verify the Results from the target table by running the query SELECT * FROM Tgt_New_Cust_x;

Video Tutorial



Hope you enjoyed this tutorial, Please let us know if you have any difficulties in trying out these exercise.

Share with your friends

Readers Comments