Hello,
I believe this is possible but I need to export all (SELECT * ) data from one TABLE and schedule an email to send every morning. Is this possible? I would like to create a stored procedure like
CREATE PROC dbo.Customers
AS
SELECT *
FROM tblCustomers
I would like this sproc Customers run a DTS every morning and email it to user in Customer Service Dept. Can someone fill in the gaps please and let me know how to complete this task.
Thanks In Advance,
Lawrence