Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to update a particular row automatically after a certain time in sql ..........
Posted

1 solution

You can do that with the help of SQL Server scheduler job.
Keep a columns in that table which keeps track of the last updated time.
Write the query with neccessary condition to filter that row and update.
Then schedule this by creating a job and to do that follow these links-
how to schedule a job for sql query to run daily?[^]
Schedule a Job[^]

Hope, it helps :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900