博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Power Designer逆向工程导入Oracle表,转为模型加注释
阅读量:6503 次
发布时间:2019-06-24

本文共 1156 字,大约阅读时间需要 3 分钟。

1.打开PowerDesigner ——文件——Reverse Engineer——DataBase

2.选择所要连接版本,此处使用的是oracle version 11g。

3.点击红色区域,选择数据源

4.选择modify

5.在此填写你的数据库名称、连接地址、用户名。确定

6.选择你新建立的连接数据库

7.填写需要转换为模型的数据库的用户名和密码

8.确定即可导出为模型

9.如果数据库中对表或字段有注释,那么通过下面的操作,可以让这些注释反映在物理模型上,在查看pdm图时更容易理解。

选择工具——Execute Commands——Edit /Run Script

10.将11步骤中的代码粘贴到此处,然后执行。即成功加入注释

11.  需要执行的脚本语言(不需要做任何修改)

Option ExplicitValidationMode = TrueInteractiveMode = im_Batch Dim mdl 'the current model 'get the current active modelSet mdl = ActiveModelIf (mdl Is Nothing) ThenMsgBox "There is no current Model"ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) ThenMsgBox "The current model is not an Physical Data model."ElseProcessFolder mdlEnd If 'This routine copy name into code for each table, each column and each view'of the current folderPrivate sub ProcessFolder(folder) Dim Tab 'running tablefor each Tab in folder.tablesif not tab.isShortcut thenif len(tab.comment) <> 0 thentab.name = tab.commentend ifOn Error Resume NextDim col 'running columnfor each col in tab.columnsif len(col.comment) <>0 thencol.name =col.commentend ifOn Error Resume Nextnextend ifnextend sub

  

转载于:https://www.cnblogs.com/myjoan/p/9516216.html

你可能感兴趣的文章
C#中string.format用法详解
查看>>
js最新手机号码、电话号码正则表达式
查看>>
手写一个selenium浏览器池
查看>>
【linux】linux重启tomcat + 实时查看tomcat启动日志
查看>>
(原創) 系統分析和系統設計有什麼差別? (OO)
查看>>
关于 typedef void * POINTER_64 PVOID64;问题
查看>>
电子书下载:Silverlight 4: Problem – Design – Solution
查看>>
2^n的第一位数字 soj 3848 mathprac
查看>>
JavaScript经典代码【二】【javascript判断用户点了鼠标左键还是右键】
查看>>
Commons.net FTPClient 上传文件
查看>>
Azure Redis Cache (5) Redis Cache Cluster集群模式
查看>>
SQL Server 2008 部分改变
查看>>
[转]使用WinINet和WinHTTP
查看>>
【原创】简单的局域网内无线文件传输(1)
查看>>
在Hyper-V下Linux不能使用鼠标
查看>>
Android ListView A~Z快速索引(改进版)
查看>>
利用JQuery制作自定义Alert Box
查看>>
让Eclipse使用jQuery的插件-spket/ jQueryWTP/ Aptana
查看>>
C语言中字符串的处理方式
查看>>
AutoMapper在MVC中的运用04-string映射各种类型、一个属性映射多个属性等
查看>>