Transformation type: Active Connected |
For more information about Application Source Qualifier transformations, see the corresponding help topic for your PowerExchange product.
When you add a relational or a flat file source definition to a mapping, you need to connect it to a Source Qualifier transformation. The Source Qualifier transformation represents the rows that the Integration Service reads when it runs a session.
Use the Source Qualifier transformation to complete the following tasks:
| Join data originating from the same source database. You can join two or more tables with primary key-foreign key relationships by linking the sources to one Source Qualifier transformation. |
| Filter rows when the Integration Service reads source data. If you include a filter condition, the Integration Service adds a WHERE clause to the default query. |
| Specify an outer join rather than the default inner join. If you include a user-defined join, the Integration Service replaces the join information specified by the metadata in the SQL query. |
| Specify sorted ports. If you specify a number for sorted ports, the Integration Service adds an ORDER BY clause to the default SQL query. |
| Select only distinct values from the source. If you choose Select Distinct, the Integration Service adds a SELECT DISTINCT statement to the default SQL query. |
| Create a custom query to issue a special SELECT statement for the Integration Service to read source data. For example, you might use a custom query to perform aggregate calculations. |
Transformation Datatypes
The Source Qualifier transformation displays the transformation datatypes. The transformation datatypes determine how the source database binds data when the Integration Service reads it. Do not alter the datatypes in the Source Qualifier transformation. If the datatypes in the source definition and Source Qualifier transformation do not match, the Designer marks the mapping invalid when you save it.
Target Load Order
You specify a target load order based on the Source Qualifier transformations in a mapping. If you have multiple Source Qualifier transformations connected to multiple targets, you can designate the order in which the Integration Service loads data into the targets.
If one Source Qualifier transformation provides data for multiple targets, you can enable constraint-based loading in a session to have the Integration Service load data based on target table primary and foreign key relationships.
Datetime Values
When you use a datetime value or a datetime parameter or variable in the SQL query, change the date format to the format used in the source. The Integration Service passes datetime values to source systems as strings in the SQL query. The Integration Service converts a datetime value to a string, based on the source database.
The following table describes the datetime formats for each database type:
Source | Date Format |
DB2 | YYYY-MM-DD-HH24:MI:SS |
Informix | YYYY-MM-DD HH24:MI:SS |
Microsoft SQL Server | MM/DD/YYYY HH24:MI:SS |
ODBC | YYYY-MM-DD HH24:MI:SS |
Oracle | MM/DD/YYYY HH24:MI:SS |
Sybase | MM/DD/YYYY HH24:MI:SS |
Teradata | YYYY-MM-DD HH24:MI:SS |
Some databases require you to identify datetime values with additional punctuation, such as single quotation marks or database specific functions. For example, to convert the $$$SessStartTime value for an Oracle source, use the following Oracle function in the SQL override:
to_date (‘$$$SessStartTime’, ‘mm/dd/yyyy hh24:mi:ss’)
For Informix, use the following Informix function in the SQL override to convert the $$$SessStartTime value:
DATETIME ($$$SessStartTime) YEAR TO SECOND
For information about database specific functions, see the database documentation.
Parameters and Variables
You can use parameters and variables in the SQL query, user-defined join, source filter, and pre- and post-session SQL commands of a Source Qualifier transformation. Use any parameter or variable type that you can define in the parameter file. You can enter a parameter or variable within the SQL statement, or you can use a parameter or variable as the SQL query. For example, you can use a session parameter, $ParamMyQuery, as the SQL query, and set $ParamMyQuery to the SQL statement in a parameter file.
The Integration Service first generates an SQL query and expands each parameter or variable. It replaces each mapping parameter, mapping variable, and workflow variable with its start value. Then it runs the query on the source database.
When you use a string mapping parameter or variable in the Source Qualifier transformation, use a string identifier appropriate to the source system. Most databases use a single quotation mark as a string identifier. For example, to use the string parameter $$IPAddress in a source filter for a Microsoft SQL Server database table, enclose the parameter in single quotes as follows: ‘$$IPAddress.’
When you use a datetime mapping parameter or variable, or when you use the built-in variable $$$SessStartTime, change the date format to the format used in the source. The Integration Service passes datetime values to source systems as strings in the SQL query.
Tip: To ensure the format of a datetime parameter or variable matches that used by the source, validate the SQL query.
Configure the following Source Qualifier transformation properties on the Properties tab:
Option Description SQL Query Defines a custom query that replaces the default query the Integration Service uses to read data from sources represented in this Source Qualifier transformation. A custom query overrides entries for a custom join or a source filter. User-Defined Join Specifies the condition used to join data from multiple sources represented in the same Source Qualifier transformation. Source Filter Specifies the filter condition the Integration Service applies when querying rows. Number of Sorted Ports Indicates the number of columns used when sorting rows queried from relational sources. If you select this option, the Integration Service adds an ORDER BY to the default query when it reads source rows. The ORDER BY includes the number of ports specified, starting from the top of the transformation.When selected, the database sort order must match the session sort order. Tracing Level Sets the amount of detail included in the session log when you run a session containing this transformation. Select Distinct Specifies if you want to select only unique rows. The Integration Service includes a SELECT DISTINCT statement if you choose this option. Pre-SQL Pre-session SQL commands to run against the source database before the Integration Service reads the source. Post-SQL Post-session SQL commands to run against the source database after the Integration Service writes to the target. Output is Deterministic Relational source or transformation output that does not change between session runs when the input data is consistent between runs. When you configure this property, the Integration Service does not stage source data for recovery if transformations in the pipeline always produce repeatable data. Output is Repeatable Relational source or transformation output that is in the same order between session runs when the order of the input data is consistent. When output is deterministic and output is repeatable, the Integration Service does not stage source data for recovery.Warning: If you configure a transformation as repeatable and deterministic, it is your responsibility to ensure that the data is repeatable and deterministic. If you try to recover a session with transformations that do not produce the same data between the session and the recovery, the recovery process can result in corrupted data.
Default Query
For relational sources, the Integration Service generates a query for each Source Qualifier transformation when it runs a session. The default query is a SELECT statement for each source column used in the mapping. In other words, the Integration Service reads only the columns that are connected to another transformation.
Although there are many columns in the source definition, only three columns are connected to another transformation. In this case, the Integration Service generates a default query that selects only those three columns:SELECT CUSTOMERS.CUSTOMER_ID, CUSTOMERS.COMPANY, CUSTOMERS.FIRST_NAMEFROM CUSTOMERS
If any table name or column name contains a database reserved word, you can create and maintain a file, reswords.txt, containing reserved words. When the Integration Service initializes a session, it searches for reswords.txt in the Integration Service installation directory. If the file exists, the Integration Service places quotes around matching reserved words when it executes SQL against the database. If you override the SQL, you must enclose any reserved word in quotes.When generating the default query, the Designer delimits table and field names containing the following characters with double quotes:/ + - = ~ ` ! % ^ & * ( ) [ ] { } ' ; ? , < > \ | <space>Viewing the Default Query
You can view the default query in the Source Qualifier transformation.To view the default query:
1. From the Properties tab, select SQL Query.The SQL Editor displays the default query the Integration Service uses to select source data.
2. Click Generate SQL.
3. Click Cancel to exit.Note: If you do not cancel the SQL query, the Integration Service overrides the default query with the custom SQL query.Do not connect to the source database. You only connect to the source database when you enter an SQL query that overrides the default query.You must connect the columns in the Source Qualifier transformation to another transformation or target before you can generate the default query.Overriding the Default Query
You can alter or override the default query in the Source Qualifier transformation by changing the default settings of the transformation properties. Do not change the list of selected ports or the order in which they appear in the query. This list must match the connected transformation output ports.When you edit transformation properties, the Source Qualifier transformation includes these settings in the default query. However, if you enter an SQL query, the Integration Service uses only the defined SQL statement. The SQL Query overrides the User-Defined Join, Source Filter, Number of Sorted Ports, and Select Distinct settings in the Source Qualifier transformation.Note: When you override the default SQL query, you must enclose all database reserved words in quotes.Joining Source Data
Use one Source Qualifier transformation to join data from multiple relational tables. These tables must be accessible from the same instance or database server.When a mapping uses related relational sources, you can join both sources in one Source Qualifier transformation. During the session, the source database performs the join before passing data to the Integration Service. This can increase performance when source tables are indexed.Tip: Use the Joiner transformation for heterogeneous sources and to join flat files.Default Join
When you join related tables in one Source Qualifier transformation, the Integration Service joins the tables based on the related keys in each table.This default join is an inner equijoin, using the following syntax in the WHERE clause:Source1.column_name = Source2.column_nameThe columns in the default join must have:
A primary key-foreign key relationship
Matching datatypesFor example, you might see all the orders for the month, including order number, order amount, and customer name. The ORDERS table includes the order number and amount of each order, but not the customer name. To include the customer name, you need to join the ORDERS and CUSTOMERS tables. Both tables include a customer ID, so you can join the tables in one Source Qualifier transformation.
When you include multiple tables, the Integration Service generates a SELECT statement for all columns used in the mapping. In this case, the SELECT statement looks similar to the following statement:SELECT CUSTOMERS.CUSTOMER_ID, CUSTOMERS.COMPANY, CUSTOMERS.FIRST_NAME, CUSTOMERS.LAST_NAME, CUSTOMERS.ADDRESS1, CUSTOMERS.ADDRESS2, CUSTOMERS.CITY, CUSTOMERS.STATE, CUSTOMERS.POSTAL_CODE, CUSTOMERS.PHONE, CUSTOMERS.EMAIL, ORDERS.ORDER_ID, ORDERS.DATE_ENTERED, ORDERS.DATE_PROMISED, ORDERS.DATE_SHIPPED, ORDERS.EMPLOYEE_ID, ORDERS.CUSTOMER_ID, ORDERS.SALES_TAX_RATE, ORDERS.STORE_IDFROM CUSTOMERS, ORDERSWHERE CUSTOMERS.CUSTOMER_ID=ORDERS.CUSTOMER_IDThe WHERE clause is an equijoin that includes the CUSTOMER_ID from the ORDERS and CUSTOMER tables.Custom Joins
If you need to override the default join, you can enter contents of the WHERE clause that specifies the join in the custom query. If the query performs an outer join, the Integration Service may insert the join syntax in the WHERE clause or the FROM clause, depending on the database syntax.You might need to override the default join under the following circumstances:
Columns do not have a primary key-foreign key relationship.
The datatypes of columns used for the join do not match.
You want to specify a different type of join, such as an outer join.Heterogeneous Joins
To perform a heterogeneous join, use the Joiner transformation. Use the Joiner transformation when you need to join the following types of sources:
Join data from different source databases
Join data from different flat file systems
Join relational sources and flat filesCreating Key Relationships
You can join tables in the Source Qualifier transformation if the tables have primary key-foreign key relationships. However, you can create primary key-foreign key relationships in the Source Analyzer by linking matching columns in different tables. These columns do not have to be keys, but they should be included in the index for each table.Tip: If the source table has more than 1,000 rows, you can increase performance by indexing the primary key-foreign keys. If the source table has fewer than 1,000 rows, you might decrease performance if you index the primary key-foreign keys.For example, the corporate office for a retail chain wants to extract payments received based on orders. The ORDERS and PAYMENTS tables do not share primary and foreign keys. Both tables, however, include a DATE_SHIPPED column. You can create a primary key-foreign key relationship in the metadata in the Source Analyzer.Note, the two tables are not linked. Therefore, the Designer does not recognize the relationship on the DATE_SHIPPED columns.You create a relationship between the ORDERS and PAYMENTS tables by linking the DATE_SHIPPED columns. The Designer adds primary and foreign keys to the DATE_SHIPPED columns in the ORDERS and PAYMENTS table definitions.The following figure shows a relationship between two tables:
If you do not connect the columns, the Designer does not recognize the relationships.The primary key-foreign key relationships exist in the metadata only. You do not need to generate SQL or alter the source tables.Once the key relationships exist, use a Source Qualifier transformation to join the two tables. The default join is based on DATE_SHIPPED.
Adding an SQL Query
The Source Qualifier transformation provides the SQL Query option to override the default query. You can enter an SQL statement supported by the source database. Before entering the query, connect all the input and output ports you want to use in the mapping.
When you edit the SQL Query, you can generate and edit the default query. When the Designer generates the default query, it incorporates all other configured options, such as a filter or number of sorted ports. The resulting query overrides all other options you might subsequently configure in the transformation.
You can use a parameter or variable as the SQL query or include parameters and variables within the query. When including a string mapping parameter or variable, use a string identifier appropriate to the source system. For most databases, you need to enclose the name of a string parameter or variable in single quotes.
When you include a datetime value or a datetime mapping parameter or variable in the SQL query, change the date format to match the format used by the source. The Integration Service converts a datetime value to a string based on the source system. For more information about date conversion, see Datetime Values.
When creating a custom SQL query, the SELECT statement must list the port names in the order in which they appear in the transformation.
When you override the default SQL query for a session configured for pushdown optimization, the Integration Service creates a view to represent the SQL override. It then runs an SQL query against this view to push the transformation logic to the database.
If you edit the SQL query, you must enclose all database reserved words in quotes.
To override the default query:
1. | Open the Source Qualifier transformation, and click the Properties tab. |
2. | Click the Open button in the SQL Query field. |
The SQL Editor dialog box appears.
3. | Click Generate SQL. |
The Designer displays the default query it generates when querying rows from all sources included in the Source Qualifier transformation.
4. | Enter a query in the space where the default query appears. |
Every column name must be qualified by the name of the table, view, or synonym in which it appears. For example, if you want to include the ORDER_ID column from the ORDERS table, enter ORDERS.ORDER_ID. You can double-click column names appearing in the Ports window to avoid typing the name of every column.
You can use a parameter or variable as the query, or you can include parameters and variables in the query.
Enclose string mapping parameters and variables in string identifiers. Alter the date format for datetime mapping parameters and variables when necessary.
5. | Select the ODBC data source containing the sources included in the query. |
6. | Enter the user name and password to connect to this database. |
7. | Click Validate. |
The Designer runs the query and reports whether its syntax was correct.
8. | Click OK to return to the Edit Transformations dialog box. Click OK again to return to the Designer. |
Tip: You can resize the Expression Editor. Expand the dialog box by dragging from the borders. The Designer saves the new size for the dialog box as a client setting.
Entering a User-Defined Join
Entering a user-defined join is similar to entering a custom SQL query. However, you only enter the contents of the WHERE clause, not the entire query. When you perform an outer join, the Integration Service may insert the join syntax in the WHERE clause or the FROM clause of the query, depending on the database syntax.
When you add a user-defined join, the Source Qualifier transformation includes the setting in the default SQL query. However, if you modify the default query after adding a user-defined join, the Integration Service uses only the query defined in the SQL Query property of the Source Qualifier transformation.
You can use a parameter or variable as the user-defined join or include parameters and variables within the join. When including a string mapping parameter or variable, use a string identifier appropriate to the source system. For most databases, you need to enclose the name of a string parameter or variable in single quotes.
When you include a datetime parameter or variable, you might need to change the date format to match the format used by the source. The Integration Service converts a datetime parameter and variable to a string based on the source system. For more information about automatic date conversion, see Datetime Values.
To create a user-defined join:
1. | Create a Source Qualifier transformation containing data from multiple sources or associated sources. |
2. | Open the Source Qualifier transformation, and click the Properties tab. |
3. | Click the Open button in the User Defined Join field. |
The SQL Editor dialog box appears.
4. | Enter the syntax for the join. |
Do not enter the keyword WHERE at the beginning of the join. The Integration Service adds this keyword when it queries rows.
Enclose string mapping parameters and variables in string identifiers. Alter the date format for datetime mapping parameters and variables when necessary.
5. | Click OK to return to the Edit Transformations dialog box, and then click OK to return to the Designer.
Adding Pre- and Post-Session SQL CommandsYou can add pre- and post-session SQL commands on the Properties tab in the Source Qualifier transformation. You might want to use pre-session SQL to write a timestamp row to the source table when a session begins. The Integration Service runs pre-session SQL commands against the source database before it reads the source. It runs post-session SQL commands against the source database after it writes to the target. You can override the SQL commands in the Transformations view on the Mapping tab in the session properties. You can also configure the Integration Service to stop or continue when it encounters errors running pre- or post-session SQL commands. Use the following guidelines when you enter pre- and post-session SQL commands in the Source Qualifier transformation:
|
HI Suresh,
ReplyDeleteMy question, is does the pre sql or post sql have its own session running in the database. I mean, for ex: pre sql, executes the sql statement in database with a particular SID in database. but when it goes to execute the source qualifier, will it use the same session or create a new session.what I have to do is set an oracle parameter for a source qualifier query's session and I cannot do it. Do you have any ideas
All the SQLs execute in the same session.
DeleteFor more on source qualifier check:
Source Qualifier Transformation in Informatica
This is very nice and inforamtive infromation.
ReplyDeleteinformatica training, informatica training in bangalore, informatica online training
It was really a nice article and i was really impressed by reading this Informatica Online Training India
ReplyDelete