Migrating from SAS Model Manager 2.3 to 3.1

This is an example of a migration from SAS Model Manager 2.3 to 3.1. This example can also be used when migrating from 2.2 or 3.1 to 3.1 M1.
  1. Run the %MM_migrationStep1 macro on the SAS Workspace Server in your source system.
    %MM_migrationStep1() Macro
    %MM_migrationStep1
    (
    MigrateFrom21=N,
    Server = mySourceServer,
    PortNumber = 6411,
    User = mmUser,
    Password = mmPassword,
    TargetDir= \\network1\port
    );
    
  2. Run the %MM_migrationStep2 macro on a SAS 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
    );