2008 Tutorial 1:: IT 4153 Advanced Database
2008 Tutorial 1:: IT 4153 Advanced Database
Overview
SQL Server introduction
SQL Server installation notes First feel of SQL Server
Configuration Manager Folders and files Attach a sample database Using management Studio
2
Major versions
7.0 (Windows NT) 2000 (Windows Server 2000) 2005 (Windows Server 2003) 2008 (Windows Server 2008) 2008 R2 (Windows Server 2008) 2012 (coming soon)
3
Multidimensional Data supports OLAP by allowing you to design, create, and manage multidimensional structures. Data Mining enables you to design, create, and visualize data mining models.
Reporting Services (SSRS) delivers enterprise, Web-enabled reporting functionality to create reports, publish reports in various formats, and centrally manage security and subscriptions. Integration Services (SSIS) is a platform for building high performance data integration solutions, including ETL processing for data warehousing.
4
Express
http://www.microsoft.com/sqlserver/en/us/editions.aspx
Express Edition
http://www.microsoft.com/sqlserver/en/us/editions/expre ss.aspx Choose 32-bit or 64-bit based on your Windows operating system Make sure to select the option "with tools" (Management Studio), or download the management studio separately
http://www.microsoft.com/download/en/details.aspx?id=7593
Post-Installation Check
Use the SQL Server Configuration Manager to view service status Login through the Management Studio Attach sample database files
Navigate the database and other objects in the Management Studio
9
Database engine
Databases, tables, and other objects Retrieving table data Designing tables and columns Editing tables and records Relationship diagram
10
Major Tools
Management Studio Configuration Manager Books Online and Tutorials
11
Configuration Manager
Configuration manager is a tool to view SQL Server service status, start or stop services
http://technet.microsoft.com/en-us/library/ms174212.aspx
12
Use your Computer Name (or (local)) and Instance Name (connected by \) as the server name.
13
Run as Administrator
on Windows 7 or Vista, you may need to right click the program command and select Run as Administrator; otherwise later you will get Access Denied when attaching database files.
14
Object Explorer
15
Note
Its recommended that database files should be put into a designated folder where you know its directory path, otherwise you will have a difficult time to find them later.
16
2. Select the Northwind2003-mini.mdf file and click OK. You need to remember in which folder you put the two database files.
3. Click the OK button. Note: on Windows 7 or Vista, you may want to right click the command icon and select Run as Administrator, otherwise you may get a warning permission denied.
17
2. All SQL Server databases include two files: .MDF the main database file .LDF the log file Make sure the log file is loaded successfully.
If you get Access Denied error when attaching database files (on Windows 7 or Vista), you may need to run the Management Studio as an administrator; See slide #14.
18
Table Data
19
Database Diagram
View a diagram of tables, columns and relationships.
If you cannot view the diagram, its probably because you are not the owner of this database. Right click the current database, and select properties, then see the next slide.
20
Database Properties
Click the Browse button to look for your Windows login account. The account name is preceded by the computer name.
21
22
http://technet.microsoft.com/enus/library/ms174173.aspx
http://en.wikipedia.org/wiki/Microsoft_SQL_Server
http://msdn.microsoft.com/en-us/library/ms167593(v=SQL.100).aspx
http://technet.microsoft.com/en-us/library/bb500397.aspx
http://msdn.microsoft.com/en-us/library/ms144275(v=SQL.100).aspx
http://msdn.microsoft.com/en-us/library/ms130214(v=SQL.100).aspx
http://www.microsoft.com/sqlserver
http://sqlserversamples.codeplex.com/
24