New SQL Server project templates for VS2015 (Create External Table.sql)
1: CREATE EXTERNAL TABLE $SchemaQualifiedObjectName$
2: (
3: [Id] INT NOT NULL
4: )
5: WITH
6: (
7: LOCATION = '$SomeExternalTableLocation$',
8: DATA_SOURCE = [DataSource1],
9: FILE_FORMAT = [FileFormat1]
10: )
Comments (
)
Link to this page:
//www.vb-net.com/VS2015-SQL-Server-Project-Templates/Create-External-Table-sql.htm
|