powerDesigner连接oracle数据库导pdm

  • Post author:
  • Post category:其他


powerDesigner我也是第一次用,之前并没有接触,为此我也百度了连接方法,自己捣鼓后也是成功了,避免遗忘还是记录一下连接步骤

我是用的同事发的安装包,版本相对老,新版没用过,大差不差吧

首先创建一个new model  然后选择model types下的Physical Data Model

然后选择,database选项卡 选择配置连接

对话框中选择添加 连接

驱动包下载和配置环境变量自行百度,我就不介绍了

填写示例:

当出现了 连接成功即可用

之后就可以从数据库导出pdm了 选择update model from database

最后生成即可

生成后的name可以变换成数据库中注释内容,详情可参考


https://www.liangzl.com/get-article-detail-170360.html

怕连接失效,将代码复制过来

Ctrl+Shift+X后

Option   Explicit   
    ValidationMode   =   True   
    InteractiveMode   =   im_Batch
    Dim blankStr
    blankStr   =   Space(1)
    Dim   mdl   '   the   current   model  
      
    '   get   the   current   active   model   
    Set   mdl   =   ActiveModel   
    If   (mdl   Is   Nothing)   Then   
          MsgBox   "There   is   no   current   Model "   
    ElseIf   Not   mdl.IsKindOf(PdPDM.cls_Model)   Then   
          MsgBox   "The   current   model   is   not   an   Physical   Data   model. "   
    Else   
          ProcessFolder   mdl   
    End   If  
      
    Private   sub   ProcessFolder(folder)   
    On Error Resume Next  
          Dim   Tab   'running     table   
          for   each   Tab   in   folder.tables   
                if   not   tab.isShortcut   then   
                      tab.name   =   tab.comment  
                      Dim   col   '   running   column   
                      for   each   col   in   tab.columns   
                      if col.comment = "" or replace(col.comment," ", "")="" Then
                            col.name = blankStr
                            blankStr = blankStr & Space(1)
                      else  
                            col.name = col.comment   
                      end if  
                      next   
                end   if   
          next  
      
          Dim   view   'running   view   
          for   each   view   in   folder.Views   
                if   not   view.isShortcut   then   
                      view.name   =   view.comment   
                end   if   
          next  
      
          '   go   into   the   sub-packages   
          Dim   f   '   running   folder   
          For   Each   f   In   folder.Packages   
                if   not   f.IsShortcut   then   
                      ProcessFolder   f   
                end   if   
          Next   
    end   sub  



版权声明:本文为qq_34958326原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。