There are other ways but two basic ways:
- Create and schedule SQL Server Agent job that executes the bcp utility from the command line (or PowerShell) (probably the easiest if you just want a dump of the table data)
- If you want more control, you could create a SQL CLR stored procedure and just schedule that like any other T-SQL command using a SQL Server Agent job.