由PowerDesigner物理模型生成sql語句

2021-05-25 01:47:37 字數 1418 閱讀 7442

tools-->execute commands-->edit/run script 在開啟的視窗中 past 下面的**:

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  + tab.comment '此處任意設定表的注釋,此處為表名和注釋一起

dim col ' running column

for each col in tab.columns

col.comment= col.name + col.comment

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

然後執行run

database --> generate database  這時就可以生成帶有comments為物理模型中name屬性的sql語句了。

物聯網平台由哪些架構組成

乙個完整的物聯網平台包括裝置管理 使用者管理 資料傳輸管理 資料管理四大核心,而所有其它的功能模組都是基於此四大核心功能的延展。1 裝置管理 注 定義裝置的型別,一般由裝置的製造商來定義,一種裝置型別最重要的是關聯到一套獨有的資料解析方法,資料的儲存方法,已經裝置規格等資料,也只有裝置的製造商才可以...

由蜜罐引發的物聯網安全小談

最近幾年,物聯網 正以迅雷不及掩耳之勢四處圈地,凡聯網之物都能被黑 的惡名也如影隨形。僅2015年,安全研究人員就發現了嬰兒監控器 滑板 來復槍和吉普車等物聯網裝置中的漏洞,一名研究者甚至在一架飛機的飛行過程中對其進行了短暫地控制。依靠便捷和更加安全的賣點,物聯網產品廣受熱捧。而現實卻相反,這是一輛...

power Designer 使用步驟

1.開啟你使用的power designer 我使用的是pd11 file new conceptual data model 生成一張概念模型,這一步就是我們所說的設計 er,由於我們知道概念設計不設計到具體的資料庫,所以在這裡我們不必對資料庫進行配置。2.進行一些er設計的準備工作,這些只是我自...