You can authenticate with Microsoft SQL Server to create your own instance of the Microsoft SQL Server connector through the UI or through APIs. Once authenticated, you can use the connector instance to access the different functionality offered by the Microsoft SQL Server platform.
Create Instance Directly via IP Address and Port Number
The following is required to create a Microsoft SQL Server connector instance:
- Database Host: e.g.
123.123.1.123:3306
- Database Name
- Database Username
- Database Password
- Database Schema (default is
dbo
) - Database Tables (OPTIONAL: Can connect a set of tables i.e. contacts, accounts or prefixed tables, i.e.
data_*
via comma separated list)
Step 1. Create an Instance
To provision your Microsoft SQL Server connector, use the /instances API.
Below is an example of the provisioning API call.
- HTTP Headers: Authorization- User , Organization
- HTTP Verb: POST
- Request URL: /instances
- Request Body: Required – see below
- Query Parameters: none
Description: token is returned upon successful execution of this API. This token needs to be retained by the application for all subsequent requests involving this connector instance.
A sample request illustrating the /instances API is shown below.
HTTP Headers:
Authorization: User <INSERT_USER_SECRET>, Organization <INSERT_ORGANIZATION_SECRET>
This instance.json file must be included with your instance request. Please fill your information to provision. The “key” into SAP Open Connectors Microsoft SQL Server is "sqlserver". This will need to be entered in the “key” field below depending on which connector you wish to instantiate.
CONNECTING DIRECTLY VIA IP ADDRESS AND PORT NUMBER
{
"element": {
"key": "sqlserver"
},
"configuration" : {
"db.host": "<INSERT_DATABASE_HOST_EG_123.123.1.123:3306>",
"db.name": "<INSERT_DATABASE_NAME>",
"username": "<INSERT_DATABASE_USERNAME>",
"password": "<INSERT_DATABASE_PASSWORD>",
"db.schema": "<INSERT_DATABASE_SCHEMA_dbo_is_default>",
"db.table.names": "<OPTIONAL:_INSERT_DATABASE_TABLES>"
},
"tags": [
"<INSERT_TAGS>"
],
"name": "<INSERT_INSTANCE_NAME>"
}
Here is an example cURL command to create an instance using /instances API.
Example Request:
curl -X POST
-H 'Authorization: User <INSERT_USER_SECRET>, Organization <INSERT_ORGANIZATION_SECRET>'
-H 'Content-Type: application/json'
-d @instance.json
'https://api.openconnectors.us2.ext.hana.ondemand.com/elements/api-v2/instances'
If the user does not specify a required config entry, an error will result notifying her of which entries she is missing.
Below is a successful JSON response:
{
"id": 1234,
"name": "Test",
"token": "VAnlQ/V28PT+M62kdajlsd90eHHtUJai+Efq8=",
"id": 479,
"name": "SQLServer",
"key": "sqlserver",
"description": "Add a SQLServer connector to connect your existing SQLServer database, allowing you to manage data for your database tables. You will need your SQLServer database information to add an instance.",
"image": "elements/provider_mysql.png",
"active": true,
"deleted": false,
"typeOauth": false,
"trialAccount": false,
"transformationsEnabled": true,
"bulkDownloadEnabled": false,
"bulkUploadEnabled": false,
"cloneable": false,
"authentication": {
"type": "custom"
},
"hub": "db"
},
{
"valid": true,
"maxCacheSize": 0,
"cacheTimeToLive": 0,
"configuration": {},
"eventsEnabled": false,
"traceLoggingEnabled": false,
"cachingEnabled": false
}
Note: Make sure you have straight quotes in your JSON files and cURL commands. Please use plain text formatting in your code. Make sure you do not have spaces after the in the cURL command.
Instance Configuration
The content in the configuration
section or nested object in the body posted to the POST /instances
or PUT /instances/{id}
APIs varies depending on which connector is being instantiated. However, some configuration properties are common to all connectors and available to be configured for all connectors. These properties are -
event.notification.enabled
: This property is aboolean
property, and determines if event reception (viawebhook
orpolling
) is enabled for the connector instance. This property defaults to false.event.vendor.type
: Whenevent.notification.enabled
property is set to true, this property determines the mechanism to use to receive or fetch changed events from the service endpoint. The supported values arewebhook
andpolling
. Most connectors support one mechanism or the other, but some like Salesforce.com support both mechanisms. This property is optional.event.notification.type
: This property can be used to determine how an event notification should be sent to the consumer of the connector instance, in most cases your application. Currently,webhook
is the only supported value for this property. This means that when an event is received by the connector instance, it will get forwarded to the providedevent.notification.callback.url
via awebhook
to you. This property is optional.event.notification.callback.url
: As mentioned above, the value of this property is anhttp
orhttps
URL to which we will post the event for consumption by your application. This property is optional.filter.response.nulls
: This property defaults to true, i.e., it'sboolean
property, and determines ifnull
values in the responseJSON
should or should not be filtered from the response returned to the consuming application. By default, allnull
values are filtered from the response before sending the response to the consuming application.