PowerDesigner中在生成的数据库脚本中用name列替换comment列作为字段描述的方法

1 PowerDesigner中在生成的数据库脚本中用name列替换comment列作为字段描述的方法如下,

依次打开Tools -- Execute Commands -- Run Script,运行以下脚本:

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 code 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

2 PowerDesigner的数据库逆向工程将中将comment列脚本赋值到name列

打开Tools -- Execute Commands -- Run Script,运行以下脚本:

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 code 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 len(tab.comment) <> 0 then
tab.name = tab.comment
end if
On Error Resume Next
Dim col ‘running column
for each col in tab.columns
if len(col.comment) <>0 then
col.name =col.comment
end if
On Error Resume Next
next
end if
next
end sub

PowerDesigner中在生成的数据库脚本中用name列替换comment列作为字段描述的方法

时间: 2024-10-01 05:55:17

PowerDesigner中在生成的数据库脚本中用name列替换comment列作为字段描述的方法的相关文章

PowerDesigner中SQL文件、数据库表反向生成PDM

1      反向生成PDM 1)        创建一个空的PDM模型(选择对应的DBMS): 2)        选择[Database]--[Update Model from Database-]菜单: 1.1    使用SQL文件 1)        在新窗口选择对应[Using script files]--[(Add Files)].然后再弹出窗口选择对应的SQL文件.点击打开,完成选择. 2)        点击[确定]生成. 1.2    使用数据源 1)        选择数

在PowerDesigner中自动生成sqlserver字段备注

PowerDesigner是数据库设计人员常用的设计工具,但其自生默认生成的代码并不会生成sqlserver数据库的字段备注说明.在生成数据库后还需要手工修改,比较麻烦. 先介绍一种办法,直接由PowerDesigner自动生成sqlserver的备注字段. 1.在PowerDesigner中建立好物理模型后 2.在PowerDesigner中选择工具——>Execute Commends——>Edit/Run Script,打开如下对话框: 3.在对话框中输入如下代码: Option Exp

excel 中批量生成mysql的脚本

一.假设你的表格有A.B.C三列数据,希望导入到你的数据库中表格table,对应的字段分别是col1.col2.col3 二.在你的表格中增加一列,利用excel的公式自动生成sql语句,具体方法如下: 1.增加一列(假设是D列) 2.在第一行的D列,就是D1中输入公式:=CONCATENATE("insert into table (col1,col2,col3) values ('",A1,"','",B1,"','",C1,"')

Powerdesigner中如何生成测试数据

设计表完成以后,我们需要生成一些测试数据,可以直接更新到数据库中,下面我们就来试试: 第一步:建立需要的Profiles测试文件,[Model]--[Test Data Profiles],如图所示: 第二步:则打开属性窗口,如图所示,下面要进行详细的介绍了 选择不同数据来源,则Detail选项卡是不一样的, 数据类型有三种:NUMBER,Character,DATA三种类型,因为一般情况下数据类型也只有这三种类型. 数据来源有四种: Automatic 自动生成测试数据: List 利用测试数

PowerDesigner中翻转生成PDM图时把Name属性变成注释(转)

在pd里面运行下面这段代码'******************************************************************************'* File: name2comment.vbs'* Purpose: Database generation cannot use object names anymore' in version 7 and above.' It always uses the object codes.'' In case

使用PowerDesigner生成Access数据库

PowerDesigner生成Access数据库 自从使用PD以来一直知道可以支持access但一直没有搞明白如何通过脚本来创建access数据表.在PD的tools里终于找到的答案,具体 文件都在C:\Program Files\Sybase\PowerDesigner 12\Tools目录中.目前只支持access97与access2000的数据库.access2007的数据库还不支持,不过没有关系,只要生成出 access2000数据库升级就行了,但麻烦的就是要去弄一个access2000

PowerDesigner生成Access数据库

1.打开PowerDesigner,设置PowerDesigner的当前数据库为Access: 2.在PowerDesigner中新建表结构(物理模型): 3.PowerDesigner菜单中:Database -> Generate Database...(快捷键Ctrl+G): 在弹出的对话框中,设置要生成数据库脚本的Directory和File name(文件名以dat做后缀)值: 在弹出的对话框 -> Format选项卡中,设置Encoding为简体中文GB2312: 最后点击&quo

Powerdesigner逆向工程从sql server数据库生成pdm【转】

Powerdesigner逆向工程从sql server数据库生成pdm 第一步:打开"控制面板"中的"管理工具" 第二步:点击"管理工具"然后双击"数据源(odbc)" 第三步:打开之后,点击"添加" 第四步:选择"sqlserver" 点击"完成" 第五步:跟据自身的情况填写 说明: 名称和描述可以自己命名,服务器就是你的数据库地址(下图) 第六步:填写好登录名和

Mybatis中使用mybatis-generator结合Ant脚本快速自动生成Model、Mapper等文件

使用过Mybatis的同学都知道,针对每一个项目中使用到的数据库表都需要建立其对应的数据库增删改查xxxMapper.xml文件.实体类xxx.java文件以及其他类用来调用进行数据库操作的xxxMapper.java文件.在开始学习Mybatis时,我相信不少人都是通过手动来建立这些文件的.毫无疑问,如果项目比较大的话还通过手动建立这些文件效率是非常低的,这时我们可以通过mybatis-generator来自动生成这些文件.但是,这个工具默认是以命令行的形式来生成相关文件的,因此我们可以通过写