샘플 마이그레이션 정의 파일

Oracle Essbase Studio의 마이그레이션 정의 파일에 사용되는 제품 코드는 ESBAPP입니다.

주:

마이그레이션 정의 파일에서 정확한 구문을 사용하지 않으면 '부정확한 MDF 파일 형식'을 나타내는 오류가 표시됩니다.

예 C-1 파일 시스템으로 익스포트

<xml version="1.0" encoding="UTF-8" ?>
<Package>
   <LOCALE>en_US</LOCALE>
   <User name="" password="" />
   <Task>
      <Source type="Application" product="ESBAPP" project="EssbaseCluster-1" application="Sample" />
      <Target type="FileSystem" filePath="/ESB-Sample" />
      <Artifact recursive="true" parentPath="/Configuration" pattern="*" />
      <Artifact recursive="true" parentPath="/Databases" pattern="*" />
      <Artifact recursive="true" parentPath="/Substitution Variables" pattern="*" />
   </Task>
</Package>

예 C-2 파일 시스템에서 임포트

<xml version="1.0" encoding="UTF-8" ?>
<Package>
   <LOCALE>en_US</LOCALE>
   <User name="" password="" />
   <Task>
      <Source type="FileSystem" filePath="/ESB-Sample" />
      <Target type="Application" product="ESBAPP" project="EssbaseCluster-1" application="Sample" />
      <Artifact recursive="true" parentPath="/Configuration" pattern="*" />
      <Artifact recursive="true" parentPath="/Databases" pattern="*" />
      <Artifact recursive="true" parentPath="/Substitution Variables" pattern="*" />
   </Task>
</Package>