Daily exports in SQL Server Express

1

I have the following query, I have previously made several information exports from SQL Server Standard or Enterprise, when these versions of SQL have been I have not had much problem since the SQL Server Agent is the ideal tool to do it through Jobs scheduled.

The problem in which I find myself is that I must make a daily export of information through a server with SQL Server Express that as we know lacks SQL Server Agent. So my question is how to schedule my exports to run daily with this version of SQL?

    
asked by Gio Gómez 16.10.2018 в 19:36
source

1 answer

0

Use the Windows task scheduler, it is a bit more rudimentary than the SQL Agent, but it will be useful for scheduling tasks.

    
answered by 17.10.2018 / 16:32
source