...
All ACLI applications provide the followinga set of actions that are useful for migration purposes, as follows:
Multiple
Run
actions that allow bulk automation across many application objects and generic support:runFromCsv
- run actions for each rowrunFromSql
- run action for each row of a database queryrunFromJson
- run actions based on JSON data like arrays
Database support for all list actions - the ability to automatically create or update database tables from application data.
The data is useful for analysis for planning migrations and understanding your application data.
For example, analyzing users, groups, and space permissions or looking for obsolete data that can be removed before migration.
Use database support to drive migration automation with ACLI actions (andrunFromSql
) or other tools that use databases.
-> Database support is particularly useful in cross application migration where data needs to be restructured for the target application.Test staging and migrations with ACLI script to retrieve data and verify against expected results either manually or in formal tests using Gint. Also, ad-hoc testing and automations to fix up migration errors to avoid error prone manual updates.
Help with instance management for test and staging instances and applications using UPM actions like
getAppList
,installApp
,addLicense
,runFromAppList
.
...