Steve
Steve

Reputation: 558

Dump DDL for EXTERNAL FILE FORMAT - Azure SQL DW

If one had used

CREATE EXTERNAL FILE FORMAT ... 

to create a file format on Azure SQL Data Warehouse, how would one reverse engineer the DDL?

Upvotes: 1

Views: 322

Answers (1)

wBob
wBob

Reputation: 14379

From the latest version of SQL Server Management Studio > Object Explorer > yourDatabase > External File Formats > right-click the external format you are interested in, then click `Script External File Format as...' > CREATE To > New Query Editor Window:

SSMS Scripting

Upvotes: 3

Related Questions