夢幻之旅

          DEBUG - 天道酬勤

             :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
            671 隨筆 :: 6 文章 :: 256 評論 :: 0 Trackbacks

          自動根據(jù)name生成COMMENT:
          DataBase->Generate database->format:
          generate commnet in name empty!

          打開cdm的情況下,進(jìn)入Tools-Model Options-Naming Convention,把Name和Code的標(biāo)簽的Charcter case選項(xiàng)設(shè)置成Uppercase或者Lowercase,只要不是Mixed Case就行!
          或者選擇Database->Edit current database->Script->Sql->Format,有一項(xiàng)CaseSensitivityUsingQuote,它的 comment為“Determines if the case sensitivity for identifiers is managed using double quotes”,表示是否適用雙引號來規(guī)定標(biāo)識符的大小寫, 可以看到右邊的values默認(rèn)值為“YES”,改為“No”即可!
          或者在打開pdm的情況下,進(jìn)入Tools-Model Options-Naming Convention,把Name和Code的標(biāo)簽的Charcter case選項(xiàng)設(shè)置成Uppercase就可以!

           

          在修改name的時(shí)候,code的值將跟著變動,很不方便

          修改方法:PowerDesign中的選項(xiàng)菜單里修改,在[Tool]-->[General Options]->[Dialog]->[Operating modes]->[Name to Code mirroring],這里默認(rèn)是讓名稱和代碼同步,將前面的復(fù)選框去掉就行了。

           

          由pdm生成建表腳本時(shí),字段超過15字符就發(fā)生錯(cuò)誤(oracle)

          原因未知,解決辦法是打開PDM后,會出現(xiàn)Database的菜單欄,進(jìn)入Database - Edit Current DBMS -script-objects-column-maxlen,把value值調(diào)大(原為30),比如改成60。出現(xiàn)表或者其它對象的長度也有這種錯(cuò)誤的話都可以選擇對應(yīng)的objects照此種方法更改!
          或者使用下面的這種方法:
               生成建表腳本時(shí)會彈出Database generation提示框:把options - check model的小勾給去掉,就是不進(jìn)行檢查(不推薦)!
              或者可以修改C:\Program Files\Sybase\PowerDesigner Trial 11\Resource Files\DBMS\oracl9i2.xdb文件
               修改好后,再cdm轉(zhuǎn)為pdm時(shí),選擇“Copy the DBMS definition in model”把把這個(gè)資源文件拷貝到模型中。

           

          由CDM生成PDM時(shí),自動生成的外鍵的重命名

          PDM Generation Options->Detail->FK index names默認(rèn)是%REFR%_FK,改為FK_%REFRCODE%,其中%REFRCODE%指的就是CDM中Relationship的code!另外自動生成的父字段的規(guī)則是PDM Generation Options->Detail->FK column name template中設(shè)置的,默認(rèn)是%.3:PARENT%_%COLUMN%,可以改為Par%COLUMN%表示是父字段!

           

          建立一個(gè)表后,為何檢測出現(xiàn)Existence of index的警告
              A table should contain at least one column, one index, one key, and one reference.
          可以不檢查 Existence of index 這項(xiàng),也就沒有這個(gè)警告錯(cuò)誤了!
          意思是說沒有給表建立索引,而一個(gè)表一般至少要有一個(gè)索引,這是一個(gè)警告,不用管也沒有關(guān)系!

           

          如何防止一對一的關(guān)系生成兩個(gè)引用(外鍵)
          要定義關(guān)系的支配方向,占支配地位的實(shí)體(有D標(biāo)志)變?yōu)楦副怼?br /> 在cdm中雙擊一對一關(guān)系->Detail->Dominant role選擇支配關(guān)系

           

          修改報(bào)表模板中一些術(shù)語的定義
          即文件:C:\Program Files\Sybase\PowerDesigner Trial 11\Resource Files\Report Languages\Chinese.xrl
          Tools-Resources-Report Languages-選擇Chinese-單擊Properties或雙擊目標(biāo)
          修改某些對象的名稱:Object Attributes\Physical Data Model\Column\
                  ForeignKey:外鍵
                  Mandatory:為空
                  Primary:主鍵
                  Table:表
          用查找替換,把“表格”替換成“表”
          修改顯示的內(nèi)容為別的:Values Mapping\Lists\Standard,添加TRUE的轉(zhuǎn)化列為是,F(xiàn)ALSE的轉(zhuǎn)化列為空
          另外Report-Title Page里可以設(shè)置標(biāo)題信息

           

          PowerDesigner11中批量根據(jù)對象的name生成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:    把對象name拷入comment屬性中
          '* Version: 1.0
          '* Author:
          '* 執(zhí)行方法:PD11 -- 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

           

          PowerDesigner 生成SQL的Existence of refernce錯(cuò)誤問題
          現(xiàn)象:用PowerDesigner生成SQL語句時(shí),提示Existence of refernce錯(cuò)誤。
          原因:該表沒有與其他表的關(guān)聯(lián)(如外鍵等),而PowerDesigner需要存在一個(gè)refernce才能生成SQL.
          解決方法:
              在工具欄空白處右鍵打開Palette面板,選中Link/Extended Dependency 按鈕,然后在提示出錯(cuò)的表上添加到自己的Dependency。
              重新生成SQL,你將發(fā)現(xiàn)剛才提示的錯(cuò)誤沒有了,問題解決。
           
          利用PowerDesigner批量生成測試數(shù)據(jù)
          主要解決方法:
          A:在PowerDesigner 建表
          B:然后給每一個(gè)表的字段建立相應(yīng)的摘要文件
          步驟如下:
          Model->Test Data Profiles配置每一個(gè)字段摘要文件General:輸入Name、Code、
          選擇Class(數(shù)字、字符、時(shí)間)類型
          選擇Generation Source: Automatic、List、ODBC、File Detail:配置字段相關(guān)信息
          所有字段摘要文件配置完成后雙擊該表->選擇字段->Detail->選擇Test Data Parameters 摘要文件如果字段值與其它字段有關(guān)系在: Computed Expression 中輸入計(jì)算列--生成測試數(shù)據(jù):
          DataBase->Generation Test Data->
          選擇:Genration 類型(Sript、ODBC)
               Selection(選擇要生成的表)
               Test Data Genration(Default number of rows 生成記錄行數(shù))

          posted on 2010-07-24 14:33 HUIKK 閱讀(247) 評論(0)  編輯  收藏 所屬分類: DataBase
          主站蜘蛛池模板: 上杭县| 麻阳| 集安市| 扎囊县| 黄平县| 独山县| 宽甸| 赞皇县| 札达县| 全椒县| 长子县| 东阿县| 长寿区| 囊谦县| 清河县| 庄河市| 邹平县| 巴东县| 建水县| 大方县| 花莲县| 临江市| 娱乐| 苏尼特左旗| 哈尔滨市| 涟水县| 饶阳县| 杂多县| 宜宾市| 铜陵市| 正蓝旗| 特克斯县| 晴隆县| 盘山县| 三亚市| 灯塔市| 定结县| 神池县| 定远县| 宜城市| 通海县|