I want some help with creating a copy of my database in SQL Server 2008. So I found this article
http://blog.sqlauthority.com/2011/05/07/sql-server-2008-2008-r2-create-script-to-copy-database-schema-and-all-the-objects-data-schema-stored-procedure-functions-triggers-tables-views-constraints-and-all-other-database-objects/
which tells how to generate a script that creates a copy of the entire database including the data, key constraints, triggers etc, this is great but I want to automate the process such that once every month or so I can run the stored procedure that will generate this script to create a copy of the database with all the current data and run the script to create a copy of database. Is this possible to do? Please help.
Thanks