MicroStrategy ONE

Update package management: Create Undo Package statement

Creates an undo package based on an existing update package.

Copy
CREATE UNDOPACKAGE "undo_package" [FOR PROJECT "project_name"] FROM PACKAGE "file_name";

where:

  • UNDOPACKAGE "undo_package" is the file name and path of the new undo package, of type string. If the filename or path contain spaces, they must be enclosed in double quotes (" ").

  • PROJECT "project_name" is the name of the project used by the specified package, of type string. If the project name is omitted, the package is assumed to be a configuration package.

  • PACKAGE "file_name" is the path and name of the source update package file, of type string. If the filename or path contain spaces, they must be enclosed in double quotes (" ").

Example

Copy
CREATE UNDOPACKAGE "UndoProjectUpgrade" 
 FOR PROJECT "MicroStrategy Tutorial" FROM PACKAGE "C:\Config 
 Update.mdm";