PowerDesigner技巧集1

2024-06-06 11:18
文章标签 技巧 powerdesigner

本文主要是介绍PowerDesigner技巧集1,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 

http://blog.csdn.net/huang_xw/article/details/5722981#

 

 

  1. NameCode同步的问题

    PowerDesigner中,修改了某个字段的name,其code也跟着修改,这个问题很讨厌,因为一般来说,name是中文的,code是字段名。

    解决方法如下:

    1、选择Tools->GeneralOptions...菜单,出现General Options对话框。

    2、从Category中选择Dialog项。

    3、取消右边"Name to Code mirroring"复选框。如下图:

     

  2. 批量根据对象的name生成comment的脚本

    执行方法:PD12 à Open PDM à 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  

 

 

但是这个脚本有点不足之处:就是将name的内容完全覆盖在comments上。有一些我写好的comments会被覆盖了,这样很不爽。因此,在原脚本的基础上,我判断comments的长度大于name,不覆盖。这样自己写的comments就会保留下来。脚本。在表、视图的基础了,增加用户、表空间、序列等数据库对象的注释。

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 not Len(tab.comment) > Len(tab.name) then  tab.comment = tab.name  end if  Dim col ' running column  for each col in tab.columns  if not Len(col.comment) > Len(col.name) then  col.comment= col.name  end if  next  end if  next  Dim view 'running view  for each view in folder.Views  if not view.isShortcut then  if not Len(view.comment) > Len(view.name) then  view.comment = view.name  end if  end if  next  Dim sequence 'running sequence  for each sequence in folder.Sequences  if not sequence.isShortcut then  if not Len(sequence.comment) > Len(sequence.name) then  sequence.comment = sequence.name  end if  end if  next  Dim myuser 'running user  for each myuser in folder.Users  if not myuser.isShortcut then  if not Len(myuser.comment) > Len(myuser.name) then  myuser.comment = myuser.name  end if  end if  next     Dim tablespace 'running tablespace  for each tablespace in folder.Tablespaces  if not tablespace.isShortcut then  if not Len(tablespace.comment) > Len(tablespace.name) then  tablespace.comment = tablespace.name  end if  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技巧集1的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1035951

相关文章

MyBatis 动态 SQL 优化之标签的实战与技巧(常见用法)

《MyBatis动态SQL优化之标签的实战与技巧(常见用法)》本文通过详细的示例和实际应用场景,介绍了如何有效利用这些标签来优化MyBatis配置,提升开发效率,确保SQL的高效执行和安全性,感... 目录动态SQL详解一、动态SQL的核心概念1.1 什么是动态SQL?1.2 动态SQL的优点1.3 动态S

电脑win32spl.dll文件丢失咋办? win32spl.dll丢失无法连接打印机修复技巧

《电脑win32spl.dll文件丢失咋办?win32spl.dll丢失无法连接打印机修复技巧》电脑突然提示win32spl.dll文件丢失,打印机死活连不上,今天就来给大家详细讲解一下这个问题的解... 不知道大家在使用电脑的时候是否遇到过关于win32spl.dll文件丢失的问题,win32spl.dl

电脑报错cxcore100.dll丢失怎么办? 多种免费修复缺失的cxcore100.dll文件的技巧

《电脑报错cxcore100.dll丢失怎么办?多种免费修复缺失的cxcore100.dll文件的技巧》你是否也遇到过“由于找不到cxcore100.dll,无法继续执行代码,重新安装程序可能会解... 当电脑报错“cxcore100.dll未找到”时,这通常意味着系统无法找到或加载这编程个必要的动态链接库

如何关闭 Mac 触发角功能或设置修饰键? mac电脑防止误触设置技巧

《如何关闭Mac触发角功能或设置修饰键?mac电脑防止误触设置技巧》从Windows换到iOS大半年来,触发角是我觉得值得吹爆的MacBook效率神器,成为一大说服理由,下面我们就来看看mac电... MAC 的「触发角」功能虽然提高了效率,但过于灵敏也让不少用户感到头疼。特别是在关键时刻,一不小心就可能触

前端bug调试的方法技巧及常见错误

《前端bug调试的方法技巧及常见错误》:本文主要介绍编程中常见的报错和Bug,以及调试的重要性,调试的基本流程是通过缩小范围来定位问题,并给出了推测法、删除代码法、console调试和debugg... 目录调试基本流程调试方法排查bug的两大技巧如何看控制台报错前端常见错误取值调用报错资源引入错误解析错误

mysql线上查询之前要性能调优的技巧及示例

《mysql线上查询之前要性能调优的技巧及示例》文章介绍了查询优化的几种方法,包括使用索引、避免不必要的列和行、有效的JOIN策略、子查询和派生表的优化、查询提示和优化器提示等,这些方法可以帮助提高数... 目录避免不必要的列和行使用有效的JOIN策略使用子查询和派生表时要小心使用查询提示和优化器提示其他常

Apache伪静态(Rewrite).htaccess文件详解与配置技巧

《Apache伪静态(Rewrite).htaccess文件详解与配置技巧》Apache伪静态(Rewrite).htaccess是一个纯文本文件,它里面存放着Apache服务器配置相关的指令,主要的... 一、.htAccess的基本作用.htaccess是一个纯文本文件,它里面存放着Apache服务器

Spring中@Lazy注解的使用技巧与实例解析

《Spring中@Lazy注解的使用技巧与实例解析》@Lazy注解在Spring框架中用于延迟Bean的初始化,优化应用启动性能,它不仅适用于@Bean和@Component,还可以用于注入点,通过将... 目录一、@Lazy注解的作用(一)延迟Bean的初始化(二)与@Autowired结合使用二、实例解

前端 CSS 动态设置样式::class、:style 等技巧(推荐)

《前端CSS动态设置样式::class、:style等技巧(推荐)》:本文主要介绍了Vue.js中动态绑定类名和内联样式的两种方法:对象语法和数组语法,通过对象语法,可以根据条件动态切换类名或样式;通过数组语法,可以同时绑定多个类名或样式,此外,还可以结合计算属性来生成复杂的类名或样式对象,详细内容请阅读本文,希望能对你有所帮助...

Pandas中多重索引技巧的实现

《Pandas中多重索引技巧的实现》Pandas中的多重索引功能强大,适用于处理多维数据,本文就来介绍一下多重索引技巧,具有一定的参考价值,感兴趣的可以了解一下... 目录1.多重索引概述2.多重索引的基本操作2.1 选择和切片多重索引2.2 交换层级与重设索引3.多重索引的高级操作3.1 多重索引的分组聚