Files
MachineLearningNotebooks/how-to-use-azureml/automated-machine-learning/sql-server/setup/aml_connection.sql
Jeff Shepherd 61b396be4f Added sql files
2019-06-26 14:26:01 -07:00

19 lines
398 B
Transact-SQL

-- This is a table to store the Azure ML connection information.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[aml_connection](
[Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[ConnectionName] [nvarchar](255) NULL,
[TenantId] [nvarchar](255) NULL,
[AppId] [nvarchar](255) NULL,
[Password] [nvarchar](255) NULL,
[ConfigFile] [nvarchar](255) NULL
) ON [PRIMARY]
GO