Support for SQL Server Integration Services in Amazon RDS for SQL Server
Microsoft SQL Server Integration Services (SSIS) is a component that you can use to perform a broad range of data migration tasks. SSIS is a platform for data integration and workflow applications. It features a data warehousing tool used for data extraction, transformation, and loading (ETL). You can also use this tool to automate maintenance of SQL Server databases and updates to multidimensional cube data.
SSIS projects are organized into packages saved as XML-based .dtsx files. Packages can contain control flows and data flows. You use data flows to represent ETL operations. After deployment, packages are stored in SQL Server in the SSISDB database. SSISDB is an online transaction processing (OLTP) database in the full recovery mode.
Amazon RDS for SQL Server supports running SSIS directly on an RDS DB instance. You can enable SSIS on an existing or new DB instance. SSIS is installed on the same DB instance as your database engine.
RDS supports SSIS for SQL Server Standard and Enterprise Editions on the following versions:
-
SQL Server 2022, all versions
-
SQL Server 2019, version 15.00.4043.16.v1 and higher
-
SQL Server 2017, version 14.00.3223.3.v1 and higher
-
SQL Server 2016, version 13.00.5426.0.v1 and higher
Contents
Limitations and recommendations
The following limitations and recommendations apply to running SSIS on RDS for SQL Server:
-
The DB instance must have an associated parameter group with the
clr enabled
parameter set to 1. For more information, see Modifying the parameter for SSIS.Note
If you enable the
clr enabled
parameter on SQL Server 2017 or 2019, you can't use the common language runtime (CLR) on your DB instance. For more information, see Features not supported and features with limited support. -
The following control flow tasks are supported:
Analysis Services Execute DDL Task
Analysis Services Processing Task
Bulk Insert Task
Check Database Integrity Task
Data Flow Task
Data Mining Query Task
Data Profiling Task
Execute Package Task
Execute SQL Server Agent Job Task
Execute SQL Task
Execute T-SQL Statement Task
Notify Operator Task
Rebuild Index Task
Reorganize Index Task
Shrink Database Task
Transfer Database Task
Transfer Jobs Task
Transfer Logins Task
Transfer SQL Server Objects Task
Update Statistics Task
-
Only project deployment is supported.
-
Running SSIS packages by using SQL Server Agent is supported.
-
SSIS log records can be inserted only into user-created databases.
-
Use only the
D:\S3
folder for working with files. Files placed in any other directory are deleted. Be aware of a few other file location details:-
Place SSIS project input and output files in the
D:\S3
folder. -
For the Data Flow Task, change the location for
BLOBTempStoragePath
andBufferTempStoragePath
to a file inside theD:\S3
folder. The file path must start withD:\S3\
. -
Ensure that all parameters, variables, and expressions used for file connections point to the
D:\S3
folder. -
On Multi-AZ instances, files created by SSIS in the
D:\S3
folder are deleted after a failover. For more information, see Multi-AZ limitations for S3 integration. -
Upload the files created by SSIS in the
D:\S3
folder to your Amazon S3 bucket to make them durable.
-
-
Import Column and Export Column transformations and the Script component on the Data Flow Task aren't supported.
-
You can't enable dump on running SSIS packages, and you can't add data taps on SSIS packages.
-
The SSIS Scale Out feature isn't supported.
-
You can't deploy projects directly. We provide RDS stored procedures to do this. For more information, see Deploying an SSIS project.
-
Build SSIS project (.ispac) files with the
DoNotSavePasswords
protection mode for deploying on RDS. -
SSIS isn't supported on Always On instances with read replicas.
-
You can't back up the SSISDB database that is associated with the
SSIS
option. -
Importing and restoring the SSISDB database from other instances of SSIS isn't supported.
-
You can connect to other SQL Server DB instances or to an Oracle data source. Connecting to other database engines, such as MySQL or PostgreSQL, isn't supported for SSIS on RDS for SQL Server. For more information on connecting to an Oracle data source, see Linked Servers with Oracle OLEDB.
Enabling SSIS
You enable SSIS by adding the SSIS option to your DB instance. Use the following process:
-
Create a new option group, or choose an existing option group.
-
Add the
SSIS
option to the option group. -
Create a new parameter group, or choose an existing parameter group.
-
Modify the parameter group to set the
clr enabled
parameter to 1. -
Associate the option group and parameter group with the DB instance.
-
Enable Amazon S3 integration.
Note
If a database with the name SSISDB or a reserved SSIS login already exists on the DB instance, you can't enable SSIS on the instance.
Creating the option group for SSIS
To work with SSIS, create an option group or modify an option group that corresponds to the SQL Server edition and version of the DB instance that you plan to use. To do this, use the AWS Management Console or the AWS CLI.
The following procedure creates an option group for SQL Server Standard Edition 2016.
To create the option group
Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/
. -
In the navigation pane, choose Option groups.
-
Choose Create group.
-
In the Create option group window, do the following:
-
For Name, enter a name for the option group that is unique within your AWS account, such as
ssis-se-2016
. The name can contain only letters, digits, and hyphens. -
For Description, enter a brief description of the option group, such as
SSIS option group for SQL Server SE 2016
. The description is used for display purposes. -
For Engine, choose sqlserver-se.
-
For Major engine version, choose 13.00.
-
-
Choose Create.
The following procedure creates an option group for SQL Server Standard Edition 2016.
To create the option group
-
Run one of the following commands.
For Linux, macOS, or Unix:
aws rds create-option-group \ --option-group-name
ssis-se-2016
\ --engine-namesqlserver-se
\ --major-engine-version13.00
\ --option-group-description "SSIS option group for SQL Server SE 2016
"For Windows:
aws rds create-option-group ^ --option-group-name
ssis-se-2016
^ --engine-namesqlserver-se
^ --major-engine-version13.00
^ --option-group-description "SSIS option group for SQL Server SE 2016
"
Adding the SSIS option to the option group
Next, use the AWS Management Console or the AWS CLI to add the SSIS
option to your option
group.
To add the SSIS option
Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/
. -
In the navigation pane, choose Option groups.
-
Choose the option group that you just created, ssis-se-2016 in this example.
-
Choose Add option.
-
Under Option details, choose SSIS for Option name.
-
Under Scheduling, choose whether to add the option immediately or at the next maintenance window.
-
Choose Add option.
To add the SSIS option
-
Add the
SSIS
option to the option group.For Linux, macOS, or Unix:
aws rds add-option-to-option-group \ --option-group-name
ssis-se-2016
\ --options OptionName=SSIS \ --apply-immediatelyFor Windows:
aws rds add-option-to-option-group ^ --option-group-name
ssis-se-2016
^ --options OptionName=SSIS ^ --apply-immediately
Creating the parameter group for SSIS
Create or modify a parameter group for the clr enabled
parameter that
corresponds to the SQL Server edition and version of the DB instance that you plan
to use for SSIS.
The following procedure creates a parameter group for SQL Server Standard Edition 2016.
To create the parameter group
Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/
. -
In the navigation pane, choose Parameter groups.
-
Choose Create parameter group.
-
In the Create parameter group pane, do the following:
-
For Parameter group family, choose sqlserver-se-13.0.
-
For Group name, enter an identifier for the parameter group, such as
ssis-sqlserver-se-13
. -
For Description, enter
clr enabled parameter group
.
-
-
Choose Create.
The following procedure creates a parameter group for SQL Server Standard Edition 2016.
To create the parameter group
-
Run one of the following commands.
For Linux, macOS, or Unix:
aws rds create-db-parameter-group \ --db-parameter-group-name
ssis-sqlserver-se-13
\ --db-parameter-group-family "sqlserver-se-13.0
" \ --description "clr enabled parameter group
"For Windows:
aws rds create-db-parameter-group ^ --db-parameter-group-name
ssis-sqlserver-se-13
^ --db-parameter-group-family "sqlserver-se-13.0
" ^ --description "clr enabled parameter group
"
Modifying the parameter for SSIS
Modify the clr enabled
parameter in the parameter group that corresponds to
the SQL Server edition and version of your DB instance. For SSIS, set the clr
enabled
parameter to 1.
The following procedure modifies the parameter group that you created for SQL Server Standard Edition 2016.
To modify the parameter group
Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/
. -
In the navigation pane, choose Parameter groups.
-
Choose the parameter group, such as ssis-sqlserver-se-13.
-
Under Parameters, filter the parameter list for
clr
. -
Choose clr enabled.
-
Choose Edit parameters.
-
From Values, choose 1.
-
Choose Save changes.
The following procedure modifies the parameter group that you created for SQL Server Standard Edition 2016.
To modify the parameter group
-
Run one of the following commands.
For Linux, macOS, or Unix:
aws rds modify-db-parameter-group \ --db-parameter-group-name
ssis-sqlserver-se-13
\ --parameters "ParameterName='clr enabled',ParameterValue=1
,ApplyMethod=immediate"For Windows:
aws rds modify-db-parameter-group ^ --db-parameter-group-name
ssis-sqlserver-se-13
^ --parameters "ParameterName='clr enabled',ParameterValue=1
,ApplyMethod=immediate"
Associating the option group and parameter group with your DB instance
To associate the SSIS option group and parameter group with your DB instance, use the AWS Management Console or the AWS CLI
Note
If you use an existing instance, it must already have an Active Directory domain and AWS Identity and Access Management (IAM) role associated with it. If you create a new instance, specify an existing Active Directory domain and IAM role. For more information, see Working with Active Directory with RDS for SQL Server.
To finish enabling SSIS, associate your SSIS option group and parameter group with a new or existing DB instance:
-
For a new DB instance, associate them when you launch the instance. For more information, see Creating an Amazon RDS DB instance.
-
For an existing DB instance, associate them by modifying the instance. For more information, see Modifying an Amazon RDS DB instance.
You can associate the SSIS option group and parameter group with a new or existing DB instance.
To create an instance with the SSIS option group and parameter group
-
Specify the same DB engine type and major version as you used when creating the option group.
For Linux, macOS, or Unix:
aws rds create-db-instance \ --db-instance-identifier
myssisinstance
\ --db-instance-classdb.m5.2xlarge
\ --enginesqlserver-se
\ --engine-version13.00.5426.0.v1
\ --allocated-storage100
\ --manage-master-user-password \ --master-usernameadmin
\ --storage-typegp2
\ --license-modelli
\ --domain-iam-role-namemy-directory-iam-role
\ --domainmy-domain-id
\ --option-group-namessis-se-2016
\ --db-parameter-group-namessis-sqlserver-se-13
For Windows:
aws rds create-db-instance ^ --db-instance-identifier
myssisinstance
^ --db-instance-classdb.m5.2xlarge
^ --enginesqlserver-se
^ --engine-version13.00.5426.0.v1
^ --allocated-storage100
^ --manage-master-user-password ^ --master-usernameadmin
^ --storage-typegp2
^ --license-modelli
^ --domain-iam-role-namemy-directory-iam-role
^ --domainmy-domain-id
^ --option-group-namessis-se-2016
^ --db-parameter-group-namessis-sqlserver-se-13
To modify an instance and associate the SSIS option group and parameter group
-
Run one of the following commands.
For Linux, macOS, or Unix:
aws rds modify-db-instance \ --db-instance-identifier
myssisinstance
\ --option-group-namessis-se-2016
\ --db-parameter-group-namessis-sqlserver-se-13
\ --apply-immediatelyFor Windows:
aws rds modify-db-instance ^ --db-instance-identifier
myssisinstance
^ --option-group-namessis-se-2016
^ --db-parameter-group-namessis-sqlserver-se-13
^ --apply-immediately
Enabling S3 integration
To download SSIS project (.ispac) files to your host for deployment, use S3 file integration. For more information, see Integrating an Amazon RDS for SQL Server DB instance with Amazon S3.