To integrate NetSuite with Azure Synapse Analytics, you can use Azure Data Factory (ADF) or Synapse pipelines as the data integration layer. ADF supports connecting to NetSuite either directly through REST/SOAP APIs or via third-party connectors (such as CData, KingswaySoft, or Informatica).
Here are the typical approaches:
- Using Azure Data Factory or Synapse Pipelines:
- Create a linked service for your NetSuite source (via REST API or custom connector).
- Copy data to Azure Blob Storage or Azure SQL Database as a landing zone.
- From there, load or transform the data into Azure Synapse Analytics using Copy or Data Flow activities.
You can schedule or orchestrate these integrations through ADF or Synapse pipelines. Alternative Option: Export NetSuite data in CSV/JSON via SuiteAnalytics or REST Web Services and ingest those files using ADF Copy Activity into Blob or directly into Synapse tables.
References:
- Copy data using Azure Data Factory
- Synapse pipelines overview
- NetSuite REST API documentation (external)
If this addresses your question, please click Accept Answer and Yes for was this answer helpful. Feel free to share if you need help with authentication or connection setup steps.