Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
ASP .NET Database Programming Weekend Crash Course - J. Butler, T. Caudill.pdf
Скачиваний:
31
Добавлен:
24.05.2014
Размер:
3.32 Mб
Скачать

32

Friday Evening

That’s it. You have now created a database using T-SQL and Query Analyzer.

Creating SQL Server Tables

Now that you have a database, Music, you can add tables to it. If you recall from the previous session, the Music database contains several tables including t_bands, t_band_members, t_albums, and so on. Figure 4-3 shows the schema for the Music database.

Figure 4-3 Schema for the Music database

You are not going to create every table in the Music database, but hopefully, based on the tables you do create, you will be able to build the remaining tables. So, go create the t_bands table:

1.In Enterprise Manager, right-click on the Music database node and select New Table.

2.You see the Choose Name dialog box as shown in Figure 4-4. Enter t_bands in the “Enter a name for the table:” textbox and click OK. The table design grid is now ready for you to enter column information.

Figure 4-4 Specifying a table’s name

Session 4—Building a Database

33

3.In the design grid, enter band_id in the Column Name field of the first row as shown in Figure 4-5. In the Datatype column, select int to signify that the band_id field will contain integer type data. On the same row, deselect the Allow Nulls checkbox and select the Identity checkbox. Click the Set Primary Key button (it looks like a key) on the SQL Server toolbar to make the band_id column the primary key for the t_bands table.

4.Create the band_title, music_type_id, and record_company_id columns, using Figure 4-5 as a guide.

5.Right-click the t_bands table design grid as shown in Figure 4-5. You see the Properties dialog box.

Figure 4-5 Creating table columns

6.Select the Indexes/Keys tab and click the New button to create a new index on the band_title column.

7.Select band_title from the Column name drop-down box and enter IX_band_title in the Index name text box.

8.Select the Create UNIQUE checkbox and the Index option button, and click the Close button (as shown in Figure 4-6).

9.Save and close the t_bands design grid.

34

Friday Evening

Figure 4-6 Creating a unique constraint

To create the t_bands table using T-SQL, execute the following commands in Query Analyzer:

USE Music GO

CREATE TABLE [dbo].[t_bands] (

[band_id] [int] IDENTITY (1, 1) NOT NULL , [band_title] [varchar] (100) NOT NULL , [music_type_id] [int] NOT NULL , [record_company_id] [int] NOT NULL

) ON [PRIMARY] GO

ALTER TABLE [dbo].[t_bands] WITH NOCHECK ADD CONSTRAINT [PK_t_bands] PRIMARY KEY NONCLUSTERED

(

[band_id]

)ON [PRIMARY] ,

CONSTRAINT [IX_bands_title] UNIQUE NONCLUSTERED

(

[band_title]

)ON [PRIMARY]

GO

The second command, or the first command after USE Music, creates the t_bands table using the CREATE TABLE statement. The third command, ALTER TABLE, creates two constraints on the t_bands table. The first constraint, named PK_t_bands, is placed on

the band_id field. The PK_t_bands constraint is the primary key for the t_bands table. The second constraint, named IX_bands_title, is placed on the band_title column and ensures that the band title is unique.

Session 4—Building a Database

35

Now create t_albums as shown in Figure 4-7.

Figure 4-7 t_albums table

Next you need to create a few constraints on the t_albums table by following these steps:

1.Open the Properties dialog box for the t_albums table and select the Indexes/ Keys tab.

2.Create a constraint named IX_band_albums based on two columns, album_title and band_id. Make this constraint unique by selecting the “Create UNIQUE” checkbox. This constraint ensures that a band doesn’t have albums duplicated in the table. In this example, of course, you could assume that a band will never release two albums with the same name. At this point, you should start to realize that constraints are basically used to enforce business rules on our tables.

3.Close the Properties dialog box by selecting the “Close” button.

4.Expand the Music database node so you can see a complete listing of all database objects (that is, Diagrams, Tables, View, Stored Procedures, and so on).

5.Right-click the Diagrams node and select “New Database Diagram.”

6.Work your way through the Create Database Diagram Wizard. Make sure that you add the t_albums and t_bands tables to the diagram. It is through this database diagram that you are going to create a foreign key. Specifically, you are going to create a foreign key to the t_bands table to ensure that all entries in the band_id column of the t_albums table have a corresponding band_id in the t_bands table. (This is simply a business rule. You can’t have an album pop out of thin air. It has to be recorded by a band.)

7.Once the diagram has been created and the two tables mentioned in step 6 are on the diagram, drag the band_id entry in the t_albums table and drop it on t_bands.

At this point, you see the Create Relationship dialog box shown in Figure 4-8. On the Create Relationship dialog box, ensure that the primary key table is t_bands and the primary key column is band_id. Also ensure that the foreign key table is t_albums and the foreign key column is band_id. Click OK.

That’s it. You have created the t_albums table using Enterprise Manager. Listing 4-1 shows the T-SQL script you could execute to create the t_albums table and its associated constraints.

36

Friday Evening

Figure 4-8 Creating a relation between t_bands and t_albums

Listing 4-1 An example of a T-SQL script

CREATE TABLE [dbo].[t_albums] (

[album_id] [int] IDENTITY (1, 1) NOT NULL , [album_title] [varchar] (255) NOT NULL , [album_publish_date] [datetime] NOT NULL , [band_id] [int] NOT NULL ,

[album_price] [smallmoney] NOT NULL ) ON [PRIMARY]

GO

ALTER TABLE [dbo].[t_albums] WITH NOCHECK ADD

CONSTRAINT [DF_t_albums_album_publish_date] DEFAULT (getdate()) FOR [album_publish_date],

CONSTRAINT [DF_t_albums_album_price] DEFAULT (0.00) FOR [album_price], CONSTRAINT [PK_t_albums] PRIMARY KEY NONCLUSTERED

(

[album_id]

)ON [PRIMARY] ,

CONSTRAINT [IX_band_albums] UNIQUE NONCLUSTERED

(

[album_title], [band_id]

)ON [PRIMARY]

GO

ALTER TABLE [dbo].[t_albums] ADD

CONSTRAINT [FK_t_albums_t_bands] FOREIGN KEY

(

[band_id]

) REFERENCES [dbo].[t_bands] (