Does anyone know if I can send an e-mail from stored procedure? What i like to do is count number of records in a table for a particular day. If there are more than 10 records, I need to send an e-mail,
Is this possible, any other suggestion would be appreciated too.
Select @a_count = count(*) from tbla where ----
If @a_count > 10 send e-mail
Puredesi
Is this possible, any other suggestion would be appreciated too.
Select @a_count = count(*) from tbla where ----
If @a_count > 10 send e-mail
Puredesi