Azure Synapse has the Bulk Insert
option in its GUI for inserting tables.
But what is the underlying code that it is running? I would like to run it as TSQL rather than as a pipeline.
The documentation is unclear that is even supported while variations of this the below all fail
Running the following yields errors:
INSERT INTO [schema].[table][
SELECT * FROM OPENROWSET(
BULK 'filename.parquet',
FORMAT = 'PARQUET'
)