5

I have a database PostGres database in the AWS Cloud. I would like to use SSIS to extract tables and move them over to a local SQL Server. Has anyone attempted to do this? Is it possible?

Ultimately I would like to move over tables from the PostGres to a SQL server, without having to purchase a tool.

2 Answers 2

1

As per the documentation, you would need to follow these steps to connect SSIS to a Postgres database:

  • get the PostgreSQL ODBC driver, either with Stack Builder or using ODBC
  • connect to PostgreSQL with the PostgreSQL ODBC driver (psqlODBC), using the proper connection string, typically Driver={PostgreSQL ODBC Driver(UNICODE)};Server=<server>;Port=<port>;Database=<database>;UID=<user id>;PWD=<password>
Sign up to request clarification or add additional context in comments.

Comments

1

You can use the Postgres OLE DB Provider to connect to Postgres using OLE DB Source. The following link contains a step by step guide to import data from Postgres into SQL Server:

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.