I'm working on a bidding system.
People bid when bidding time start and when it ends they get the result.
Is it possible to create a SQL job with query?
What I wanted to do is, once the bidding time ends, I want to update every bidders records as to who is the winner or loser.
So, what I have in mind is that, when the administrator set the start date and end date of bidding, I want to dynamically create a schedule job that would automatically run the stored proc that would update every record when the date is equal to end date.
Is it possible?
Another way that I'm thinking is, put a checker on the bidding page that would constantly check with database about bidding time, if it detects bidding has ended, it will automatically execute a stored proc that updates every user record? The thing that I'm scared with this method is that, what if many users are accessing the page, many users will call that stored proc now.
Any suggestions greatly appreciated.