1.pdm转sql
pdm转sql可以说是非常方便的,点击Database->Generate Database然后在新的窗口中选择导出地址,填写名称就可以了。

2.sql转pdm
在sql中我们经常会添加注释,来对字段进行注解,导入powerDesigner的时候默认是没有注释选项的。下面让我们来一步步操作。
2.1导入sql
1.首先File->Reverse Engineer->Database
2.在新的窗口中填写你的项目名称,并选择你的sql版本
3.新的窗口中点击Add File添加文件、确定。至此导入结束。

2.2增加注释列
让我们来为项目添加注释列
点击工具栏的Tools->Display Preferences...
在新的窗口中选择Table->Advanced
然后新窗口中选择Columns->右侧的可视窗口(如图)
然后新窗口中选择再添加一列。我选的是code列,一路确定后退出对话框。
接下来还要执行两个脚本。
点击工具栏的Tools->Execute Commands->Edit/Run Script...
新窗口中复制粘贴下面代码然后run。
PS:如果你在上面选用的是其他字段,请将下面的code换成你选用的字段
Option Explicit
ValidationMode = True
InteractiveMode = im_Batch
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.code = tab.comment
Dim col ' running column
for each col in tab.columns
if col.comment="" then
else
col.code = col.comment
end if
next
end if
next
Dim view 'running view
for each view in folder.Views
if not view.isShortcut then
view.code = 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
至此就大功告成了。成果:

1万+

被折叠的 条评论
为什么被折叠?



