Ludwig
Ludwig

Reputation: 832

Establish AWS connection to SQL Server

Is there a way by which we can establish a connection from AWS to sql server and pull the data. I am aware of the method of using cdata connector with glue jobs and it looks promising but I want to explore options here. The idea is to pull the data from sql server to s3 bucket.

Upvotes: 0

Views: 263

Answers (1)

Aditya Sahu
Aditya Sahu

Reputation: 63

You can directly use from_options method of GLUE to pull data from below data stores

s3, mysql, postgresql, redshift, sqlserver, oracle, and dynamodb

and dump wherever you required.

More Information on

https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-crawler-pyspark-extensions-dynamic-frame-reader.html

Upvotes: 1

Related Questions