决绝powerdesigner逆向工程生成PDM时,列注释解决方案

1、创建DBMS

  Powerdesigner界 面-tools-Resources-DBMS,点击左上角的New,选择copy from templete,如果你的数据库是sql server 2005,选择系统自带的SQL server 2005,如果是sql server 2008,选择系统自带的sqlsv2k8.xdb。本例中是sql server 2008 r2,故选择 sqlsv2k8.xdb,起一个新名字,如 SQL2008_Mod_201105。

邀月工作室

2、建立数据源,逆向生成测试,顺利成功!

邀月工作室

此时再生成数据库脚本时,会自动将Comment中的中文注释带入到脚本中。

邀月工作室

美中不足的是Name还是英文 ,在一个包中查看表时,感觉怪怪的。

有两个解决办法:

3-1、改进脚本

Powerdesigner界面-Database-Edit Current DBMS

如下: 本文以sql server 2008为例,sql server 2005类同。 )

将表的Name换为Comment

邀月工作室

将列的Name换为Comment

邀月工作室

此时生成的效果最为理想。

邀月工作室

3-2、利用vbs脚本完成。

Sybase安装路径/VB Scripts 下新建Comments2Name.vbs,内容如下:

[vb]  view plain copy
  1. Option Explicit  
  2. ValidationMode = True  
  3. InteractiveMode = im_Batch  
  4. Dim mdl 'the current model  
  5. 'get the current active model  
  6. Set mdl = ActiveModel  
  7. If (mdl Is NothingThen  
  8. MsgBox "There is no current Model"  
  9. ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) Then  
  10. MsgBox "The current model is not an Physical Data model."  
  11. Else  
  12. ProcessFolder mdl  
  13. End If  
  14. 'This routine copy name into code for each table, each column and each view  
  15. 'of the current folder  
  16. Private sub ProcessFolder(folder)  
  17. Dim Tab 'running table  
  18. for each Tab in folder.tables  
  19. if not tab.isShortcut then  
  20. if len(tab.comment) <> 0 then  
  21. tab.name = tab.comment  
  22. end if  
  23. On Error Resume Next  
  24. Dim col 'running column  
  25. for each col in tab.columns  
  26. if len(col.comment) <>0 then  
  27. col.name =col.comment  
  28. end if  
  29. On Error Resume Next  
  30. next  
  31. end if  
  32. next  
  33. end sub  

在生成的PDM中,Powerdesigner界面-tools-Execute Cmmands-Edit/Run Scripts 在打开的界面中,左上角,选择打开,Ctrl+O,选取刚才的 Comments2Name.vbs,并Run,效果同上。

邀月工作室

邀月工作室

猜你喜欢

转载自blog.csdn.net/cqkxzyi/article/details/45048113