0

I have written a query I want to run against a MySQL db every hour and then email the results to a fixed email address. I know how to do this using DTS on SQL server but have no clue how to do it on MySQL. Does MySQL have an equivalent to DTS.

Paul
  • 613
  • 2
  • 9
  • 35

2 Answers2

2

You could just write this using your favorite scripting language and then set it up as a cron job.

Taylor Leese
  • 46,410
  • 27
  • 106
  • 138
0

What I ended up doing is downloading the MySQL connector for SQL Server and then used CDO in VB Script to send the email.

Paul
  • 613
  • 2
  • 9
  • 35