PowerDesigner 中将Comment(注释)及Name(名称)内容互相COPY的VBS代码
在用PowerDesigner时.常常在NAME或Comment中写中文在Code中写英文.Name只会显示给我们看,Code会使用在代码中.但Comment中的文字会保存到数据库TABLE的Description中,有时候我们写好了Name再写一次Comment很麻烦.以下两段代码就可以解决这个问题.
代码一:将Name中的字符COPY至Comment中
'******************************************************************************
'* File: name2comment.vbs
'* Purpose: Database generation cannot use object names anymore
' in version 7 and above.
' It always uses the object codes.
'
' In case the object codes are not aligned with your
' object names in your model, this script will copy
' the object Name onto the object Comment for
' the Tables and Columns.
'
'* Title:
'* Version: 1.0
'* Company: Sybase Inc.
'******************************************************************************
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
tab.comment = tab.name
Dim col ' running column
for each col in tab.columns
col.comment= col.name
next
end if
next
Dim view 'running view
for each view in folder.Views
if not view.isShortcut 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
代码二:将Comment中的字符COPY至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
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="" then
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
---------------------------------------------------------------------
使用方法
PowerDesigner->Tools->Execute Commands->Edit/Run Scripts
分享到:
相关推荐
### PowerDesigner 使用技巧详解 #### 一、找回丢失的工具栏 在使用 PowerDesigner 进行数据库设计时,有时会遇到工具栏意外消失的情况。若工具栏中的“调色板(Palette)”不见,可以通过以下步骤找回: 1. **打开...
本文旨在深入探讨PowerDesigner的使用技巧,特别是在创建实体关系图(ERD)进行数据库建模方面的实践策略。 ### PowerDesigner使用技巧概览 #### 1. **命名约定与大小写敏感性管理** PowerDesigner允许用户自定义...
#### 二、PowerDesigner 使用技巧 **1. 创建新模型** - 打开 PowerDesigner,可以通过 `File -> New` 创建一个新的模型。根据需要选择相应的模型类型。 **2. 导出表结构脚本** - 通过 `Database -> Generate ...
在"PowerDesigner使用教程9.5"中,我们将深入探讨这个工具的各个方面。 **一、PowerDesigner的基本操作** 1. **启动与界面介绍**:PowerDesigner启动后,用户会看到一个直观的界面,包括菜单栏、工具栏、工作区和...
- **使用技巧**:为了保持物理图的整洁,可以利用PowerDesigner提供的各种工具来调整表的位置和连接线的方向等。 #### 六、视图(View)的使用 视图(View)是在PowerDesigner中创建的一个虚拟表,它可以根据特定...
【PowerDesigner物理数据模型使用技巧】 PowerDesigner是Sybase公司的一款强大的CASE工具,它整合了企业架构分析、UML和数据建模的功能。在物理数据模型(PDM)的使用中,PowerDesigner允许用户创建适应多种DBMS的...
【PowerDesigner设计技巧】 PowerDesigner是一款强大的数据建模工具,常用于数据库的设计和管理。它提供了从概念模型到物理模型的转换,支持多种数据库管理系统,包括E-R模型的设计。以下是一些关键知识点: 1. **...
### PowerDesigner16使用教程全攻略 #### 前言 ...以上步骤和技巧涵盖了 PowerDesigner16 使用过程中的一些关键知识点。通过实践这些步骤,你可以更加熟练地使用 PowerDesigner 进行数据库的设计与管理。
本文将深入探讨PowerDesigner v11.0版的使用技巧与常见问题解决方案,帮助读者更好地掌握这款软件。 #### 1. 解决字段长度限制问题 在使用PowerDesigner生成Oracle数据库建表脚本时,可能会遇到字段名长度超过15...
在使用PowerDesigner时,应注意遵循良好的建模规范,如合理命名、保持模型清晰、适当地使用注释等,以便于理解和维护。 通过本教程,你将学习如何利用PowerDesigner进行数据库设计,从创建概念模型开始,逐步细化...
在PowerDesigner中配置使用技巧和在IntelliJ IDEA中配置注释模板是提升工作效率的重要方法。以下是关于PowerDesigner和IntelliJ IDEA配置和使用的一些知识点: ### PowerDesigner常用配置及使用技巧 1. **创建工作...
PowerDesigner是一款强大的数据库建模工具,它允许设计者创建、管理和维护数据模型,包括概念模型、逻辑模型和物理模型。...在实际项目中,熟练掌握PowerDesigner的使用技巧,对于提升数据库设计的质量和效率至关重要。
PowerDesigner 是一款强大的数据库设计和建模工具,它可以帮助IT专业人士高效地创建和管理复杂的数据库架构。...通过熟练掌握上述使用技巧,你可以更好地利用PowerDesigner应对复杂的企业级数据库设计挑战。
"PowerDesigner导出报告模板"这个主题主要涉及如何使用PowerDesigner来定制和导出报告,以便于团队协作和项目管理。 在数据库设计过程中,PowerDesigner允许用户创建详细的模型,包括概念数据模型(CDM)、物理数据...
这份“powerdesigner使用建议.doc”文档很可能是为用户提供关于如何高效利用PowerDesigner的一些建议和技巧,而“PD11注册机”可能是为了帮助用户激活PowerDesigner 11版本的许可证。 在使用PowerDesigner时,以下...
PowerDesigner是一款强大的数据库设计工具,它能够帮助...以上技巧可以帮助用户更高效地使用PowerDesigner,解决常见的问题,并提供自定义设置,提升工作效率。对于数据库模型的设计和维护,掌握这些技巧将非常有用。
它们提供了丰富的实例和步骤指南,有助于快速掌握PowerDesigner的使用技巧。 总的来说,无论你是初学者还是经验丰富的数据库设计师,PowerDesigner都是一款不可或缺的工具,它能够帮助你高效地设计、管理和优化...
在本知识库中,我们将深入探讨PowerDesigner的主要功能及其使用技巧。 ### 1. 数据建模 PowerDesigner的核心功能之一是数据建模。它支持三种主要的建模类型: - **概念数据模型(CDM)**:在CDM中,你可以定义...