SQL Azure databases can host both CICS regions and VSAM data files. A CICS system deployed either on-premise by an Enterprise Option product installation, or off-premise by an Azure Hosted Service can access a SQL Azure region and VSAM file databases. Performance when accessing SQL Azure on-premise is significantly slower than accessing it directly from an Azure Hosted Service where the Azure Hosted Service and SQL Azure database(s) are hosted in the same data center.
By default, Enterprise Option uses Windows authentication (SSPI), using the logged in user's credentials to access SQL Server databases. However, connecting to a SQL Azure database requires a specially formatted connection string that includes your SQL Azure database server name, user name and password. Do the following to determine the connection string for your master database.
By default, the administration tool wizard will create connection strings automatically, but if you want to override the defaults, follow these steps to obtain the database connection strings:
The SQL databases screen will be displayed.
The connection string is similar to the following:
Server=tcp:[servername].database.windows.net; Database=master; User ID=[username]@[servername]; Password=[userpassword]; Trusted_Connection=False; Encrypt=True;where:
The connection string for each of your SQL Azure databases has the same format except with master replaced by the appropriate database name.