Click here to Skip to main content
15,891,725 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
http://www.codeproject.com/Questions/748275/How-Do-I-Schedule-A-Job-In-Sql-Server-R
http://www.codeproject.com/Questions/748018/How-Do-I-Schedule-A-Job-In-Sql-Server-R

this was my previous questions.from the solutions i have clearly understand that i can not set a job in server where my permissions are limited.

now i want to know that is there any other procedure
I mean i want to execute some store procedure or sql query in the server time to time basis.Like some query or store procedure will execute automatically in the server after 10 mins and produce some result to the client
i am using vs10 (vb.net) and sql server 2008
Posted

If you don't have permissions on your server then the only thing you can do is schedule a timer in your application (this means your app must be running all the time).

http://www.dotnetperls.com/timer-vbnet[^]
 
Share this answer
 
In Addition to Mehdi Gholam's[^] Solution , some alternatives are

windows task scheduler[^]
Quartz scheduler[^]
 
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