移轉定義檔案的範例

Oracle Essbase 的移轉定義檔案中所用的產品代碼為 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>