February 9, 2007 at 8:58 am
how to trigger fire on speceific date,days or time
February 9, 2007 at 11:18 am
Does sound like you need a trigger, but a scheduled job to accomplish a specifc task or set of tasks. Triggers are fired on a table in response to an INSERT, UPDATE, or DELETE action occuring on the target table.
February 12, 2007 at 4:21 am
Create a one-column table.
Create a stored procedure that updates that single row.
Create an update trigger for the table to do what you want.
Create a job that runs the stored procedure mentioned above.
DONE!
Mike Harris
Data Modeling & Administration
Charlotte, NC
February 12, 2007 at 6:09 am
Just create a job that does what you want and schedule it to run when you need it.
No need for all the rest.
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply