sql server - Using SSIS to build a database from a VS2005/2008 database project -


How do I allow an SSIS package to use the Visual Studio 2005 or 2008 database project, which is the creation script for tables Keeps and other objects (Note: this is not a Visual Studio Database version - just Pro with Business Intelligence)?

It is intended to be used to recreate the examples of my test by creating data from secure schemas and data from source testing.

I have access to both VS 2005 and 2008 Pro and it is killing SQL Server 2005 for both Prod and Test.

The short answer is, "to consume the ssis package VS 2005 or 2008 db project". I'm not sure why you want to use SSIS to create scripts You can run scripts from the sqlcmd utility.

If you still want to use SSIS, then I do this:

  • A deployment script (VS for DB Pro)
  • Create a package
  • In your control flow, use the task execution function and configure it to run sqlcmd with a script file such as your input

Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -