如何将word表结构转换为excel表格,最终转换为PowerDesigner格式
程序员文章站
2022-05-09 15:59:33
...
word版本结构
转换为excel
直接拷贝到excel表格中即可
需要对结构稍作处理,把表名和注释分到两个格子中,把字段头放到第一行,如果有多个表,把其他表的字段头去掉。如下:
接下来就可以做导入PowerDesigner的操作了
在PowerDesigner中新建物理模型
接着选择Tools——》Execute Commands——》Edit/Run Scripts
脚本如下:
Option Explicit
Dim mdl ' the current model
Set mdl = ActiveModel
If (mdl Is Nothing) Then
MsgBox "There is no Active Model"
End If
Dim HaveExcel
Dim RQ
RQ = vbYes 'MsgBox("Is Excel Installed on your machine ?", vbYesNo + vbInformation, "Confirmation")
If RQ = vbYes Then
HaveExcel = True
' Open & Create Excel Document
Dim x1 '
Set x1 = CreateObject("Excel.Application")
x1.Workbooks.Open "excel文档路径" '指定excel文档路径
x1.Workbooks(1).Worksheets("Sheet1").Activate '指定要打开的sheet名称
Else
HaveExcel = False
End If
a x1, mdl
sub a(x1, mdl)
dim rwIndex
dim tableName
dim colname
dim table
dim col
dim count
on error Resume Next
For rwIndex = 2 To 1000 '指定要遍历的Excel行标 由于第1行是表头,从第2行开始
With x1.Workbooks(1).Worksheets("Sheet1")
If .Cells(rwIndex, 1).Value = "" Then '如果遍历到第一列为空,则退出
Exit For
End If
If .Cells(rwIndex, 3).Value = "" Then '如果遍历到第三列为空,则此行为表名
set table = mdl.Tables.CreateNew '创建表
table.Name = .Cells(rwIndex , 2).Value '指定表名,第一列的值
table.Code = .Cells(rwIndex , 2).Value
table.Comment = .Cells(rwIndex , 1).Value '指定表注释,第二列的值
count = count + 1
Else
set col = table.Columns.CreateNew '创建一列/字段
'MsgBox .Cells(rwIndex, 1).Value, vbOK + vbInformation, "列"
col.Name = .Cells(rwIndex, 4).Value '指定列名中文
'MsgBox col.Name, vbOK + vbInformation, "列"
col.Code = .Cells(rwIndex, 1).Value '指定列名英文
col.DataType = .Cells(rwIndex, 2).Value '指定列数据类型
'MsgBox col.DataType, vbOK + vbInformation, "列类型"
col.Comment = .Cells(rwIndex, 4).Value '指定列说明
End If
End With
Next
MsgBox "生成数据表结构共计 " + CStr(count), vbOK + vbInformation, "表"
Exit Sub
End sub
脚本中核心的就是要把excel中的结构跟数据库的结构进行对应
执行脚本
执行完会生成对应的table,如图:
接着按住shift,全选这些表,拖动到右侧的工作区,表就变成模型了。
上一篇: 4.Mysql事务
下一篇: 分布式两阶段和三阶段、可靠性消息投递机制