国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > SQL Server > 正文

PowerDesigner-VBSrcipt-自動設置主鍵,外鍵名等(SQL Server)

2024-08-31 00:55:35
字體:
來源:轉載
供稿:網友
PowerDesigner-VBSrcipt-自動設置主鍵,外鍵名等(SQL Server)

在PowerDesigner中的設計SQL Server 數據表時,要求通過vbScript腳本實現下面的功能:

主鍵:pk_TableName

外鍵:fk_TableName_ForeignKeyColumnList

當字段作為主鍵,而且類型為smallint,int,bigint,那么要設置Identity =true.

當字段作為主鍵,而且類型為uniqueidentifier,那么要設置默認值為newid(),而且設置擴展屬性rowguidcol.

Option ExplicitValidationMode = TrueInteractiveMode = im_BatchDim mdl ' the current modelSet mdl = ActiveModelIf (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 mdlEnd IfPrivate sub ProcessFolder(folder)    'Tables   Dim tab   for each tab in folder.tables              dim col       for each col in tab.columns                         '自動設置Identity            if col.primary =true and (col.datatype ="smallint" or col.datatype = "int"  or col.datatype = "bigint") then               col.identity=true                           '自動設置ROWGUIDCOL               elseif col.primary=true and col.datatype="uniqueidentifier" then               col.DefaultValueDisplayed="newid()"                  col.SetExtendedAttributeText "ExtRowGUIDCol",true            end if                   next                 '自動設置主鍵      dim ky      for each ky in tab.Keys            if ky.primary =true then               ky.Name="pk_"+tab.Name               ky.Code=ky.Name               ky.ConstraintName=ky.Name               ky.Clustered=true            end if      next                          next      '自動設置外鍵   dim ref   for each ref in folder.References      ref.name="fk_"+ref.ChildTable.Name +"_"+ref.ForeignKeyColumnList      ref.Code=ref.Name      ref.ForeignKeyConstraintName=ref.name   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   Nextend sub


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乐业县| 武宁县| 当涂县| 巴中市| 昔阳县| 鄂州市| 沙田区| 太仆寺旗| 阜南县| 南澳县| 讷河市| 内江市| 华坪县| 三河市| 贵定县| 临清市| 闻喜县| 石楼县| 竹山县| 马尔康县| 交城县| 高雄县| 格尔木市| 钟祥市| 彰武县| 同心县| 滁州市| 江安县| 新巴尔虎右旗| 江山市| 黑河市| 东乌| 上饶市| 衡山县| 平陆县| 吉林省| 四子王旗| 明溪县| 兰坪| 米易县| 贡山|