I have a stored procedure and it's scheduled to run for every 15 mins.And its working fine.But now I want to modify my stored procedure.If i modify the stored procedure it it going to run as per the old schedule or should I reschedule it?
Are you talking about a SQL Job or a stored procedure? If you change a stored procedure that is run by a SQL Agent job, then the job will run the updated proc; no need to "reschedule" the job.