I have an application that is used by more than one user, however backups need to be performed twice a day. I don't have SQL server agent and i was wondering if i should create an exe that would run in the background.
I have read other posts about using the scheduler, but i would look it to be away from the end user and simple exe is used. As i am looking to incorporate sending an email once back up is complete.
basically what is the best approach for creating a backup on SQL server and how does other applications allow for this?
Update Would a good idea be to create a windows service that checks the time, if time matches then perform backup, i have never created a windows service. What are the positives and negatives ? will this start on pc boot? any other suggestions?