%MM_migrationStep1 Macro

%MM_migrationStep1 macro ports all catalogs and SAS data sets from the source server into .cpo and .dpo files, and then places them in a user-specified directory.

Requirement: You must run this macro if you are migrating from one UNIX system to a different type of UNIX system.

Syntax

options metaPort=8561
metaServer=server-address
metaRepository=Foundation
metaUser=user-ID
metaPass=password;
filename mycode catalog "sashelp.modelmgr.migration.source";
%include mycode;
filename mycode;
%MM_migrationStep1(
Server = mySourceServer,
PortNumber = port,
User = mmUser,
Password = mmPassword,
TargetDir= \\network\port);

Required Arguments

The metadata system options are required only if you are migrating SAS Decision Manager 3.2 from one UNIX system to a different type of UNIX system. For more information, see Connection Options in SAS Language Interfaces to Metadata.

Server

specifies the server name or multicast address for the migration source server that hosts the model repository. This argument is ignored for a SAS Decision Manager 2.2 or 3.1 to 3.1 migration, which uses the ServiceRegistryURL argument.

Example
Server=myserver.com

PortNumber

specifies the port number for the migration source server that hosts the model repository.

Example
PortNumber=6411

User

specifies a valid SAS Decision Manager user to access migration source server.

Password

specifies the password for the SAS Decision Manager user to access migration source server.

TargetDir

specifies the directory where all of the portable files are saved.

Example
TargetDir=\\network1\transfer
Last updated: February 22, 2017