vote up 0 vote down star

I just want a simple tool that will help me quickly write scripts/packages that I can schedule to run. My transform requirements are pretty simple (changing column names, merging/splitting tables, and date conversions). I'll sacrifice flexibility for speed of development on this one.

Any come to mind?

flag

74% accept rate
Added some material about meta-programming packages. – Cade Roux Oct 7 '08 at 23:46

4 Answers

vote up 1 vote down check

SQL Server 2005? SSIS (but I wouldn't call it simple, but then again out of the list of things you gave, only the naming is really simple)

You can actually script package creation using C# (.NET/whatever, presumably even PowerShell).

Resources here and here

EDIT: (hope you don't mind me butting in here Cade) Check that your ODBC driver plays nicely with SSIS. Some drivers (DB2/400 and some versions of Sybase for example) don't work all that well.

link|flag
Just going to run with this since I already have it. I was hoping to avoid the 'bigness' but its going just fine so far. – TheDeeno Oct 7 '08 at 21:13
SSIS is not all that heavyweight to deploy. You can deploy the config (DB connections etc.) in XML files and point to the file with an environment variable. Wrap it with a batch file that sets the environment variable. – ConcernedOfTunbridgeWells Nov 26 '08 at 22:22
vote up 1 vote down

I like the Pentaho Data Integration tool (also known as kettle) - although that might be a bit "too big for you .. but worth checking out!

link|flag
vote up 1 vote down

At least with the older versions of SQL Server, they shipped with DTS. Not the simplest, but it does work with ODBC and SQL Server, and you may already have it.

link|flag
vote up 0 vote down

Some SQL development tools, like Advanced Query Tool (AQT), let you do lightweight ETL and schedule with command files... We have Informatica, but I used AQT to write from Oracle to files, for a short term request..

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.