1

I have a date column in my table, an SSIS package that sends a warning email must be executed as soon as a date is equal the current date.

The problem is that I don't know what procedure to follow to set up a SSIS package that runs, checks the database and sends an alert email every time it finds a date that is equals to the current date

I'm a beginner in SSIS.

Yahfoufi
  • 2,220
  • 1
  • 22
  • 41
amokrane oulmi
  • 53
  • 1
  • 2
  • 11

1 Answers1

0

Maybe you do not need an SSIS package. You can do it with a trigger. Send e-mail from a trigger

In this way it is executed at the time of creation of the record and you do not need to execute the package every x time

Ricardo
  • 111
  • 1
  • 9
  • 1
    I don't recommend sending an email from a trigger. A trigger should be as lightweight as possible. Plus the fact that if the email fails, so too will the insert. – Thom A Jul 02 '19 at 12:41