running upgrade package via command line
Brian Donahue
Posts: 6,590 Bronze 1
Hi Paul,
If you are writing a SQL Toolkit application to create a database package, you need to specify a property to the package so that it will create a database upgrade package rather than a new database package. If you add the line
If you are writing a SQL Toolkit application to create a database package, you need to specify a property to the package so that it will create a database upgrade package rather than a new database package. If you add the line
before calling the Engine.Package() method, the package will become an upgrade package and you will not get an error.Engine.AddProperty(“PACKAGE_UPGRADE_DATABASEâ€, “Trueâ€);
This discussion has been closed.