I'd like to automatically generate database scripts on a regular basis. Is this possible.
|
2
|
|||
|
|
|
To generate script for an object you have to pass up to six parameters:
http://www.databasejournal.com/features/mssql/article.php/2205291 |
||
|
|
|
|
You might want to look at the SQL Server Management Objects (SMO). There are objects for scripting that will assist in generating T-SQL scripts from database objects. A good reference for this is "Programming SQL Server 2005" by Bill Hamilton. Chapter 12 in particular references the SMO utility classes. |
||
|
|
|
|
You can use the Database Publishing Wizard, from CodePlex. It has a command-line interface. |
||
|
|
