Hi I am trying to schedule my store procedure which does the backup of a table, but when I am trying to use the Sql server agent, it is disabled in my SSMS. so, I need to write the T-sql statement to
schedule the job for this store procedure which can run every day morning 9 AM. Can anyone help in writing the T-sql query for this?
My procedure is:
Create proc BackupFTP
As
Begin
Drop table dbo.FTPBackup
Select * into FTPBackup from FTP
End
My procedure is:
Create proc BackupFTP
As
Begin
Drop table dbo.FTPBackup
Select * into FTPBackup from FTP
End