溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Power Designer怎么用

發(fā)布時間:2021-11-11 09:53:01 來源:億速云 閱讀:118 作者:小新 欄目:數(shù)據(jù)庫

這篇文章主要介紹Power Designer怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

首先我們需要創(chuàng)建一個測試數(shù)據(jù)庫,為了簡單,我們在這個數(shù)據(jù)庫中只創(chuàng)建一個Student和一個Major.其表結(jié)構(gòu)和關(guān)系如下所示.

Power Designer怎么用

看看怎樣用PowerDesigner快速的創(chuàng)建出這個數(shù)據(jù)庫吧.

1.現(xiàn)在開始使用PowerDesigner創(chuàng)建數(shù)據(jù)庫,首先運行程序,進入主界面:

Power Designer怎么用

2.File—New Model—Physical Data Model—Physical Diagram—Model name 設(shè)置為test,DBMS屬性設(shè)置為Microsoft SQL Server 2005:

Power Designer怎么用

3.首先用表格工具創(chuàng)建一個表格模板:

Power Designer怎么用

4.雙擊表格模板,設(shè)置屬性,我們首先設(shè)置Major表:

Power Designer怎么用

5.設(shè)置好表名,點擊Columns標簽,設(shè)置字段屬性,設(shè)置如圖所示:

Power Designer怎么用

6.因為MajorID字段我們要設(shè)置為自動增長,所以要設(shè)置它的高級屬性,選擇MajorID字段,點擊屬性按鈕,在General面板中勾選上Identity復(fù)選框:

Power Designer怎么用

7.確定后我們再創(chuàng)建一個Student表,字段設(shè)置如圖所示:

Power Designer怎么用

8.接著是為Student創(chuàng)建一個MajorID外鍵,使用PowerDesigner可以很輕松的完成這個工作,選擇關(guān)系設(shè)置工具,在Student表上按住左鍵不放,拖拽至Major表,便可為Student表添加一個MajorID的外鍵:

Power Designer怎么用

9.哈哈,現(xiàn)在測試表已經(jīng)設(shè)置好了,接著設(shè)置一下我們要生成的數(shù)據(jù)庫吧,這些表都將被創(chuàng)建到該數(shù)據(jù)庫中,我們在設(shè)計面板空白處右鍵—Properties,在彈出的屬性設(shè)置對話框設(shè)置如下:

 Power Designer怎么用

10好了,在此我們對新數(shù)據(jù)庫的設(shè)置已經(jīng)完成,但是在SQL中還是空空如也啊,我們要怎么把這邊設(shè)計好的結(jié)構(gòu)移植到SQLServer 2005中呢?執(zhí)行操作:Database—Generate Database,設(shè)置好存儲過程導(dǎo)出目錄和文件名,點擊確定即可:

Power Designer怎么用

11.到你的導(dǎo)出目錄,就可以看見導(dǎo)出的數(shù)據(jù)庫創(chuàng)建存儲過程了,打開SQL,執(zhí)行一下,你就會看到數(shù)據(jù)庫被神奇的創(chuàng)建好了:

Power Designer怎么用

Power Designer怎么用

12.好了,數(shù)據(jù)庫的準備工作做好了,下一篇我們就將使用該數(shù)據(jù)庫結(jié)合CodeSmith自動批量生成代碼啦~

上述實踐中生成的源代碼:

SQL.sql

/*==============================================================*/
/* Database name:  PD_test                                      */
/* DBMS name:      Microsoft SQL Server 2005                    */
/* Created on:     2010/6/13 星期日 17:27:17                       */
/*==============================================================*/


drop database PD_test
go

/*==============================================================*/
/* Database: PD_test                                            */
/*==============================================================*/
create database PD_test
go

use PD_test
go

/*==============================================================*/
/* Table: Major                                                 */
/*==============================================================*/
create table Major (
MajorID              int identity,
Name                 nvarchar(20)         not null,
Remark               nvarchar(Max)        null,
constraint PK_MAJOR primary key (MajorID)
)
go

/*==============================================================*/
/* Table: Student                                               */
/*==============================================================*/
create table Student (
StudentID            nvarchar(20)         not null,
MajorID              int null,
Name                 nvarchar(20)         not null,
Sex                  bit not null,
Age                  int null,
Remark               nvarchar(Max)        null,
constraint PK_STUDENT primary key (StudentID)
)
go

alter table Student
add constraint FK_STUDENT_REFERENCE_MAJOR foreign key (MajorID)
references Major (MajorID)
go

以上是“Power Designer怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI