ODI 11g逆向工程文件修改

ODI 11g Reverse Engineering File modification

抱歉,如果这个问题有点太宽泛,我经常使用逆向工程来读取 ODI 11g 中的 .TXT 文件。

我想知道是否有任何方法可以修改或创建 RKM(不确定这是否负责)默认情况下将字符串数据类型的列物理和逻辑长度分配给 300。

ODI 11g 指定的默认长度为 50。

有什么办法可以修改吗?

您可以使用下一个 Groovy 脚本批量更改物理长度和长度。

转到 ODI > 工具 > Groovy > 新脚本并复制粘贴下一个 Groovy 代码:

//Created by DI Studio
import ro.ns.odi.proxy.*
import oracle.odi.domain.model.*
import oracle.odi.domain.model.finder.*
import oracle.odi.domain.xrefs.expression.*
import oracle.odi.languages.support.*

IOdiEntityFactory odiFactory=OdiEntityFactory.createInstance(odiInstance)
IOdiBasicTemplate odiTemplate=odiFactory.newOdiTemplate()


String TABLE_NAME="SB_FINANCIALS_NEW_UU" //change with what you need
String MODEL_CODE="FILE" //change with what you need

odiTemplate.executeInTransaction{IOdiCommandContext ctx->

  IOdiEntityManager odiManager=ctx.getSupportingOdiInstance().getTransactionalEntityManager()
  IOdiDataStoreFinder dataStoreFinder=odiManager.getFinder(OdiDataStore)
  OdiDataStore dataStore=dataStoreFinder.findByName(TABLE_NAME,MODEL_CODE)

  assert dataStore!=null : "No data store was found. Please review the model code and data store name" 

  for (OdiColumn column:dataStore.columns){
     println "Analyzing column ${column.name} with type ${column.dataType.name}, length ${column.getLength()} and scale ${column.scale}"

     String dataTypeName=column.dataType.name

     column.fileFieldDescriptor.bytes=4000 //change with what you need
     //column.fileFieldDescriptor?.bytes=3000
     column.length=4000 //change with what you need
     column.dataType.name="String"

     switch(dataTypeName){
      case "String":
        //column.scale=2
        //column.fileFieldDescriptor?.decimalSeparator="x"
        println "--Column Modified"
      break
       case "Numeric":
        //column.scale=2
        //column.fileFieldDescriptor?.decimalSeparator="x"
        println "--Column Modified"
      break

    } 


  }
}

阅读Groovy代码并修改:

  • TABLE_NAME - 您需要更改数据类型的数据存储的名称;
  • MODEL_CODE - 来自 ODI > 模型的模型代码;
  • column.fileFieldDescriptor;
  • column.length;
  • column.dataType.