Skip to content

Commit ce6626a

Browse files
adding on-demand option to SSIS AppDeploy sample.
1 parent 276a447 commit ce6626a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • samples/features/sql-big-data-cluster/app-deploy/SSIS

samples/features/sql-big-data-cluster/app-deploy/SSIS/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Scheduling a SQL Server Integration Services package in SQL Server big data cluster
1+
# Running or scheduling a SQL Server Integration Services package in SQL Server big data cluster
22

33
### Contents
44

@@ -12,7 +12,7 @@
1212

1313
## About this sample
1414

15-
This is a sample [SQL Server Integration Services (SSIS)](https://docs.microsoft.com/en-us/sql/integration-services/sql-server-integration-services?view=sql-server-2017) app, which shows how to run a SSIS package as a scheduled service. This sample creates an app that is called each minute that executes an SSIS package. The SSIS package creates a backup of the `DWConfiguration` database on the master SQL instance to disk. Also, the package cleans any backup files for the `DWConfiguration` database that are older than one hour, making sure that maximum 60 backup files will be on disk at any moment.
15+
This is a sample [SQL Server Integration Services (SSIS)](https://docs.microsoft.com/en-us/sql/integration-services/sql-server-integration-services?view=sql-server-2017) app, which shows how to run a SSIS package as a scheduled service. This sample creates an app that is called each minute that executes an SSIS package. It also shows you how to run the SSIS package on demand. The SSIS package creates a backup of the `DWConfiguration` database on the master SQL instance to disk. Also, the package cleans any backup files for the `DWConfiguration` database that are older than one hour, making sure that maximum 60 backup files will be on disk at any moment.
1616

1717
<a name=before-you-begin></a>
1818

@@ -73,7 +73,7 @@ Here is the spec file for this application. This sample uses the `SSIS` runtime
7373
|Setting|Description|
7474
|-|-|
7575
|options|Specifies any command line parameters passed to the execution of the SSIS package|
76-
|schedule|Specifies when the job should run. This follows cron expressions. A value of '*/1 * * * *' means the job runs *every minute*.|
76+
|schedule|Specifies when the job should run. This follows cron expressions. A value of '*/1 * * * *' means the job runs *every minute*. If omitted the package will not run automatically and you can run the package on demand using `mssqlctl run -n back-up-db -v [version]` or making a call to the API.|
7777

7878
```yaml
7979
name: back-up-db

0 commit comments

Comments
 (0)