The Input Data Source provides a way to connect to an existing
database resource such as a table, a view, or a stored procedure. Click
on the Open Data Source button ( ![]() The Dynamic view is for joining together several data sources. These data sources can be located on different database systems. Dynamic views produce a composite record set that contains all fields from the linked data sources. The dynamic view is constructed using the dynamic view designer. Select the "Design View" check box on the Data Source tab to use a dynamic view and uncheck the box to use only the root data source. Use the Add Data Source button ( The setup of a dynamic view can take place in two ways: Equi Join ![]() With Equi Join, you can visually link two tables. You can
drag a field from the left field list and drop it onto another field
from the right field list to establish a link or you can select two
fields from the different field lists and click the Connect button ( Custom Join ![]() You can enter an arbitrary valid SQL expression into the SQL Expression editor, which can be used as a logical expression for joining two tables. For example: Left( Accounts.Name, 5 ) = Left( LineItems.RefNumber, 5 ) AND LineItems.DueDate IS NOT NULL The "All records from the right" option specifies that all the rows from the right table appear in the output, even if there are no corresponding matches in the left table. Columns with no matching data in the left table appear as null.
|