PowerDesigner使用方法小结

PowerDesigner多用来进行数据库模型设计,具有SQL语句自动生成等功能。当然,也有不少缺点,比如团队分享。

一、设置PowerDesigner模型视图中数据表显示列

1、Tools-Display Preference…

2、窗口左边Category中General Settings下选择Table

3、窗口右边Advanced…

4、窗口左边选择Columns

5、窗口右边List columns中,选择要显示的列
这里写图片描述
二、设置PowerDesigner设计表时,自动将name列值中的一部分复制到code列

1、把name/code自动复制功能打开。默认是打开的。

Tool-Genneral-Options Dialog-Name to Code mirroring

2、Tools->Model Options….->Naming Convention
3、选中Name,并勾选Enable name/code conversions.
4、选择Name To Code

脚本1:
.set_value(_First, true, new)
.foreach_part(%Name%, “’#’”)
.if (%_First%)
.delete(%CurrentPart%)
.enddelete
.set_value(_First, false, update)
.else
%CurrentPart%
.endif
.next
这个例子是把Name内容的#号后边的内容当作Code.

脚本2:
.set_value(_First, true, new)
.foreach_part(%Name%, “’#’”)
.if (%_First%)
%CurrentPart%
.set_value(_First, false, update)
.endif
.next
这个例子是把Name内容的#号前边的内容当作Code.

三、从数据库导入数据到PowerDesigner中后,将comment列值复制到name列

运行脚本 Tools->Execute Commands->Edit/Run Scripts(Ctrl Shift X)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
'******************************************************************************
'* File:     comment2name.vbs
'* Purpose:  在PowerDesigner的PDM图形窗口中显示数据列的中文注释
'* Title:    将字段的comment赋值到字段的name中
'* Category: 打开物理模型,运行本脚本(Ctrl+Shift+X)
'* Copyright:foxzz@163.com,2006/07/25 .
'* Author:   foxzz
'* Created: 
'* Modified:
'* Version:  1.0
'* Comment:  遍历物理模型中的所有表,将字段的comment赋值到字段的name中。
'            在将name置换为comment过程中,需要考虑的问题
'            1、name必须唯一,而comment有可能不唯一。
'               处理办法是如果字段的comment重复,则字段的name=comment+1、2、3...
'            2、comment值有可能为空,这种情况下对字段的name不处理。
'               针对oracle数据库,将comment on column 字段名称 is '';添加到C:/pdcomment.txt文件中。
'               在补充comment完毕后,便于在数据库中执行       
'******************************************************************************
 
Option Explicit
ValidationMode = True
InteractiveMode = im_Batch
 
Dim system, file
Set system = CreateObject( "Scripting.FileSystemObject" )
Dim ForReading, ForWriting, ForAppending   '打开文件选项
ForReading   = 1 ' 只读
ForWriting   = 2 ' 可写
ForAppending = 8 ' 可写并追加
'打开文本文件
Set file = system.OpenTextFile( "C:/pdcomment.txt" , ForWriting, true)
 
 
'判断当前model是否物理数据模型
Dim mdl
Set mdl = ActiveModel
If (mdl Is Nothing ) Then
    MsgBox "处理对象无模型"
ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) Then
    MsgBox "当前模型不是物理数据模型"
Else
    ProcessFolder mdl,file
End If
file.Close
 
 
'******************************************************************************
Private sub ProcessFolder(folder,file)
 
Dim i,j,k
i=0:j=0:k=0
 
'列数组,记录字段里不重复的comment
Dim ColumnComment()
Dim ColumnCommentNumber()
ReDim Preserve ColumnComment(i)
ReDim Preserve ColumnCommentNumber(i)
 
Dim tbl   '当前表
Dim col   '当前字段
dim curComment  '当前字段comment
 
'处理模型中的表
for each tbl in folder.tables
     if not tbl.isShortcut then
        if len(trim(tbl.comment))<>0 then
           '可以在这里显示table的comment
           'tbl.name = tbl.name+"("+trim(tbl.comment)+")"
        end if 
 
        '处理表中的列
        for each col in tbl.columns
            k = 0
            curComment = trim(col.comment)
            if len(curComment)<>0 then
               '遍历相异的comment数组
               for j = 0 to i
                   if ColumnComment(j) = curComment then
                      '如果找到相同的comment,则相关计数器加1
                      ColumnCommentNumber(j) = ColumnCommentNumber(j) + 1
                      k = j
                   end if
               Next
               '如果没有相同的comment,则k=0,此时ColumnCommentNumber(0)也为0
               '否则ColumnCommentNumber(k)不为0
               if ColumnCommentNumber(k) <> 0 then
                  col.name = curComment & cstr(ColumnCommentNumber(k))
               else
                  col.name  = curComment
                  'ColumnComment(0)、ColumnCommentNumber(0)永远为空
                  '将相异的comment记录添加到数组中
                  i = i + 1
                  ReDim Preserve ColumnComment(i)
                  ReDim Preserve ColumnCommentNumber(i)
                  ColumnComment(i) = curComment
                  ColumnCommentNumber(i) = 0
               end if
            else
               '写入文件中
               file.WriteLine "comment on column " + tbl.name+ "." +col.code+ " is '';"          
            end if
        next
     end if
     '由于不同表的name允许相同,因此此时重新初始化。
     '因为ColumnComment(0)、ColumnCommentNumber(0)为空,可以保留
     ReDim Preserve ColumnComment(0)
     ReDim Preserve ColumnCommentNumber(0)
     i=0:j=0:k=0
 
next
 
Dim view  '当前视图
for each view in folder.Views
     if not view.isShortcut then
        '可以在这里显示view的comment
        'view.name =  view.comment
     end if
next
 
'对子目录进行递归
Dim subpackage 'folder
For Each subpackage In folder.Packages
     if not subpackage.IsShortcut then
        ProcessFolder subpackage , file
     end if
Next
 
end sub

 

四、将name列值复制到comment列

运行脚本 Tools->Execute Commands->Edit/Run Scripts(Ctrl Shift X)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'把pd中那么name想自动添加到comment里面
'如果comment为空,则填入name;如果不为空,则保留不变,这样可以避免已有的注释丢失.
 
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
 
' This routine copy name into comment for each table, each column and each view
' of the current folder
Private sub ProcessFolder(folder) 
  Dim Tab 'running   table 
  for each Tab in folder.tables 
   if not tab.isShortcut then
     if trim(tab.comment)= "" then '如果有表的注释,则不改变它.如果没有表注释.则把name添加到注释里面.
        tab.comment = tab.name
     end if 
  Dim col ' running column 
  for each col in tab.columns
   if trim(col.comment)= "" then '如果col的comment为空,则填入name,如果已有注释,则不添加;这样可以避免已有注释丢失.
    col.comment= col.name
   end if
  next 
   end if 
  next 
   
  Dim view 'running view 
  for each view in folder.Views 
   if not view.isShortcut and trim(view.comment)= ""  then 
  view.comment = view.name 
   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、PowerDesigner中Table视图同时显示Code和Name http://blog.csdn.net/downmoon/article/details/8108968

2、PowerDesigner Name/Code自动调整(转) http://hi.baidu.com/jonik/item/7d39588c3dda708e4514cf76

3、在PowerDesigner的PDM图形窗口中显示数据列的中文注释 http://blog.csdn.net/zengzhe/article/details/974205

4、powerDesigner 把name项添加到注释(comment),完美方案! http://www.cnblogs.com/dukey/archive/2010/01/20/dukey.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
PowerDesigner是一种建模工具,用于设计和管理软件系统。它有一个整体的框架,可以帮助开发人员更好地理解和使用该工具。 首先,PowerDesigner是一个功能强大的工具,可以帮助开发人员进行数据建模、业务流程建模、应用程序设计等任务。它提供了丰富的功能和工具,可以帮助用户快速创建和管理各种模型。 在使用PowerDesigner之前,我们需要了解它的整体框架和基本概念。PowerDesigner中的主要概念包括模型、图对象和库。模型是一个概念上的容器,可以包含多个图对象。图是用来展示模型中的对象和它们之间的关系的图形示。对象是模型中的具体元素,如、类、过程等。库是PowerDesigner中用来存储和管理对象的地方,可以将项目中的所有对象存储到PowerDesigner库中,以便后续使用和管理。 了解PowerDesigner的整体框架后,我们可以开始学习如何使用该工具。有很多资源可以帮助我们学习PowerDesigner使用方法。例如,可以参考引用中提到的通过图例了解PowerDesigner使用方法的文档。这份文档详细介绍了PowerDesigner使用方法,并通过示例代码提供了实际操作的指导和参考。 在使用PowerDesigner时,我们可以按照以下步骤进行: 1. 创建项目:在PowerDesigner中创建一个项目,并为该项目选择合适的模型类型和选项。 2. 创建模型:在项目中创建一个新的模型,并选择适当的模型类型,如数据模型、业务流程模型等。 3. 添加对象:在模型中添加需要的对象,如、类、过程等。可以使用PowerDesigner提供的工具和功能来创建和编辑这些对象。 4. 建立关系:在对象之间建立关联关系,如之间的关联、类之间的继承关系等。PowerDesigner提供了丰富的工具和功能来帮助用户建立和管理这些关系。 5. 生成文档:可以使用PowerDesigner生成各种文档,如数据字典、类图等,以便与团队成员共享和交流。 总之,PowerDesigner是一个功能强大的建模工具,通过了解其整体框架和使用方法,我们可以更好地利用该工具进行软件系统设计和管理。可以参考引用中的文档来深入学习和掌握PowerDesigner使用方法。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [PowerDesigner使用](https://blog.csdn.net/qq_31653405/article/details/123894670)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [通过图例了解PowerDesigner使用方法](https://download.csdn.net/download/weixin_38613681/12742615)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值