Migrating from SAS Model Manager 2.1 to 3.1

This is an example of a migration from SAS Model Manager 2.1 to 3.1
  1. Run the %MM_migrationStep0() macro on the SAS Workspace Server in your target system.
    %MM_migrationStep0() Macro
    (
    MMRootURL = %nrstr(http://mySourceServer:8300/ModelManager),
    Server = myTargetServer,
    PortNumber = 8651,
    User = mmUser,
    Password = mmPassword,
    TargetDir= \\network1\port
    );
    
  2. Run the %MM_migrationStep1() macro on the SAS Workspace Server in your source system.
    %MM_migrationStep1() Macro
    %MM_migrationStep1
    (
    MigrateFrom21=Y,
    Server = mySourceServer,
    PortNumber = 6411,
    User = mmUser,
    Password = mmPassword,
    TargetDir= \\network1\port
    );
    
  3. Run the %MM_migrationStep2() macro at workspace server in your target system. This macro imports all .cpo and .dpo files in to the SAS Content Server.
    %MM_migrationStep2() Macro
    (
    Server = myTargetServer,
    PortNumber = 8651,
    User = mmUser,
    Password = mmPassword,
    SourceDir = \\network1\port,
    TargetDir = c:\myTargetDirectory
    );