2

I am a SQL Server developer and I have been asked to write some stored procedures to be used to connect a database (Pervasive) to the website.

I was completely unfamiliar with Pervasive before this was asked of me, so I though the best thing to do was to create a SQL Server database (probably express) and have some ETL running nightly moving the data from Pervasive to Microsoft, then I can write all the website code on the SQL Server rather than the live Pervasive database.

Is anyone aware of any free/cheap methods/software for the daily ETL I am planning?

Would SSIS be an option with SQL Server Express?

marc_s
  • 675,133
  • 158
  • 1,253
  • 1,388
c.j.smith
  • 23
  • 2

1 Answers1

0

Lets go the opposite way..

If you are gonna use SQL Server express for your website i would propose something else:

Use SQLite / MySQL for the website.

If you do this, then you can use SSIS to make your ETL from Pervasive -> SQLite / MySQL.

If and only IF your ETL logic is simple and you just want to get rid of Pervasive, then instead of SSIS you can write your own .NET application to handle the data transfer. In that case you can use SQL Express if you want.

e4rthdog
  • 4,841
  • 4
  • 31
  • 79