An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
BCP loads through the head node, so definitely not as scalable as COPY INTO.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
what's the fastest way to load/insert in to Current fact table(NOT CREATE A NEW ONE) ?
– INSERT INTO … SELECT FROM …
– CREATE TABLE … AS SELECT …
– Polybase
– BCP
– OPENROWSET / BULK INSERT
– COPY INTO …
??
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
BCP loads through the head node, so definitely not as scalable as COPY INTO.
Hello @sakuraime ,
Thanks for the ask and using thge forum .
Since you mentioned that you do not want to create a new one , you should not consider the below will create the table .
INSERT INTO … SELECT FROM … : This is a logged event as so it will be slower the below ones .
BULK INSERT : This is minimally logged and so its will be slower then BCP .
BCP should be the fastest among these .
Polybase shoule be the fastest as polybase automatically parallelizes the data load process
Thanks
Himanshu