tMSSqlConnection
Opens a connection to the specified database that can then be reused in the
subsequent subjob or subjobs.
tMSSqlConnection opens a connection
to a Microsoft SQL Server database or a Microsoft Azure SQL database.
tMSSqlConnection Standard properties
These properties are used to configure tMSSqlConnection running in the Standard Job framework.
The Standard
tMSSqlConnection component belongs to the Databases and the ELT families.
The component in this framework is available in all Talend
products.
connector. The properties related to database settings vary depending on your database
type selection. For more information about dynamic database connectors, see Dynamic database components.
Basic settings
Database |
Select a type of database from the list and click |
Property type |
Either Built-in or |
 |
Built-in: No property data stored |
 |
Repository: Select the repository file |
JDBC Provider |
Select the provider of the JDBC driver to be used, either Microsoft (recommended) or Open When using this component with Datasource in Talend Runtime, you need Note that when Microsoft is selected, you |
Host |
Database server IP address. |
Port |
Listening port number of DB server. |
Schema |
Schema name. |
Database |
Name of the database. |
Username and Password |
DB user authentication data. To enter the password, click the […] button next to the |
Additional JDBC parameters |
Specify additional connection properties for the database |
Use or register a shared DB Connection |
Select this check box to share your This option is This check box is not available when the Specify a data source |
Specify a data source alias |
Select this check box and specify the alias of a data source created on the This check box is not visible when the Use or register a |
Data source alias |
Enter the alias of the data source created on the This field is available only when the Specify a data |
Advanced settings
Auto Commit |
Select this check box to commit any changes to the database With this check box selected, you cannot use the corresponding Note that the auto commit function commits each SQL statement as a |
Share identity insert in multi table |
Select this check box to share This option prevents errors caused by setting Note that checking this option may decrease the execution performance. |
tStatCatcher Statistics |
Select this check box to gather the job processing metadata at a Job |
Usage
Usage rule |
This component is more commonly used with other tMSSql* components, |
Limitation |
Due to license incompatibility, one or more JARs required to use |
Inserting data into a database table and extracting useful information from
it
The scenario describes a Job that reads the employee data from a text file, inserts the
data into a table of an MSSQL database, then extracts useful data from the table, and
displays the information on the console.
This scenario involves the following components:
-
tMSSqlConnection: establishes a connection to the
MSSQL server. -
tFileInputDelimited: reads the input file,
defines the data structure and sends it to the next component. -
tMSSqlOutput: writes data it receives from the
preceding component into a table of an MSSQL database. -
tMSSqlInput: extracts data from the table based
on an SQL query. -
tLogRow: displays the information it receives
from the preceding component on the console. -
tMSSqlCommit: commits the transaction in the
connected MSSQL server.
Setting up the Job
-
Drop the following components from the Palette onto the design workspace: tMSSqlConnection, tFileInputDelimited, tMSSqlOutput, tMSSqlInput,
tLogRow, and tMSSqlCommit. -
Connect tMSSqlConnection to tFileInputDelimited using a Trigger > OnSubjobOk
link. -
Do the same to connect tFileInputDelimited to
tMSSqlInput and tMSSqlInput to tMSSqlCommit. - Connect tFileInputDelimited to tMSSqlOutput using a Row > Main link.
-
Do the same to connect tMSSqlInput to
tLogRow.
Configuring the components
Opening a connection to the MSSQL server
-
Double-click the tMSSqlConnection component
to open its Basic settings view in theComponent tab. -
In the Host field, type in the IP address or
hostname of the MSSQL server, 192.168.30.47
in this example. -
In the Port field, type in the port number of
the database server, 1433 in this
example. -
In the Schema field, type in the schema name,
dbo in this example. -
In the Database field, type in the database
name, talend in this example. -
In the Username and Password fields, enter the credentials for the MSSQL
connection.
Reading the input data
-
Double-click the tFileInputDelimited
component to open its Component view. -
Click the […] button next to the File Name/Stream field to browse to the input file.
In this example, it is D:/Input/Employee_Wage.txt. This text file holds three columns:
id, name and wage.
id;name;wage
51;Harry;2300
40;Ronald;3796
17;Theodore;2174
21;James;1986
2;George;2591
89;Calvin;2362
84;Ulysses;3383
4;Lyndon;2264
17;Franklin;1780
86;Lyndon;3999
- In the Header field, type in 1 to skip the first row of the input file.
-
Click Edit schema to define the data to pass
on to the tMSSqlOutput component. In this
example, we define id as the key, and specify
the length and precision for each column respectively.Click OK to close the schema editor. A dialog
box opens, and you can choose to propagate the schema to the next
component.Related topic: tFileInputDelimited.
Writing the data into the database table
-
Double-click the tMSSqlOutput component to
open its Basic settings view in the Component tab. -
Type in required information for the connection or use the existing connection
you have configured before. In this example, we select the Use an existing connection check box. If multiple connections
are available, select the connection you want to use from the Component List drop-down list. -
In the Table field, type in the name of the
table you want to write the data to: Wage_Info in this example. You can also click the […] button next to the Table field to open a dialog box and select a proper
table. -
Select Create table if not exists from the
Action on table drop-down list. -
Select Insert if not exists from the
Action on data drop-down list. -
Click Sync columns to retrieve the schema
from the preceding component.
Extracting useful information from the table
-
Double-click the tMSSqlInput component to
open its Basic settings view in the Component tab. -
Select the Use an existing connection check
box. If multiple connections are available, select the connection you want to
use from the Component List drop-down
list. -
Click Edit schema to define the data
structure to be read from the table. In this example, we need to read all three
columns from the table. -
In the Table Name field, type in the name of
the table you want to read the data from: Wage_Info in this example. -
In the Query field, fill in the SQL query to
be executed on the table specified. To obtain the data of employees whose wages
are above the average value and order them by id, enter the SQL query as
follows:SELECT *
FROM Wage_Info
WHERE wage >
(SELECT avg(wage)
FROM Wage_Info)
ORDER BY id
Displaying information on the console
-
Double-click the tLogRow component to open
its Basic settings view. - In the Mode area, select Table (print values in cells of a table).
Committing the transaction and closing the connection
-
Double-click the tMSSqlCommit component to
open its Basic settings view. - Select the Close Connection check box.
Saving and executing the Job
- Press Ctrl+S to save your Job.
-
Execute the Job by pressing F6 or clicking
Run on the Run tab.The information of employees whose wages are above the average value ordered
by id is displayed on the console.