mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
9 lines
432 B
SQL
9 lines
432 B
SQL
-- Define an external data source
|
|
-- For accessing non-public external data sources, make sure to setup credentials
|
|
-- Read more here: https://azure.microsoft.com/en-us/documentation/articles/sql-data-warehouse-get-started-load-with-polybase/#step-2-create-an-external-table-for-the-sample-data
|
|
CREATE EXTERNAL DATA SOURCE NYTPublic
|
|
WITH
|
|
(
|
|
TYPE = Hadoop
|
|
, LOCATION = 'wasbs://2013@nytpublic.blob.core.windows.net/'
|
|
); |