I'd like to request the ability to schedule MS SQL Server Scripts as deferred custom actions. Sorry if this is suggested before, but I haven't found anything through searching the forum.
We have a fairly decent chunk of data to load into some SQL Database tables during our installation and upgrade process. Thea amount of data is too large for Advanced Installer's SQL Scripts functionality and breaking the data into smaller pieces would be unmaintainable as the data changes fairly frequently. Instead, we're using a deferred custom action that loads the data into the database tables from a compressed file format we have developed.
This issue we're running into is we would like to use Advanced Installer's SQL Script capabilities, but we can't run some scripts, execute our custom action, and then run more scripts.
The workflow we need is:
- Create the database (Script)
- Create the tables, views, stored procedures, and functions (Script)
- Import the data (Custom Action, which also updates progress)
- Create Indexes (Script)
- Create foreign key/check constraints (Script)
Right now our work-around is to code our own custom action to execute SQL Scripts, which is unfortunate. We'd really like to be able to use the functionality built-in to Advanced Installer.
Thanks for your time.