SQL Server 2000 and 2005
(SQL
Server 2008 coming soon)
Microsoft SQL Server 2005 provides a new Management Studio, integration with Visual Studio 2005, and the Microsoft .NET common language runtime - all of which help you build, debug, and operate applications faster and more efficiently.
SQL Server 2005 provides a comprehensive business intelligence platform for data integration, analysis, and reporting that helps you turn insight into action and make better decisions, faster.
SQL Server 2005 supports the highest performance, availability and security to run your most demanding applications with native data encryption, secure default settings, and password policy enforcement.
| SQL 2005 Courses | |
|---|---|
| Course Numbers | Course Description |
| Course 2789 | Administering and Automating Microsoft SQL Server 2005 Databases and Servers |
| Course 2786 | Designing a Microsoft SQL Server 2005 Infrastructure |
| Course 2788 | Designing High Availability Database Solutions Using Microsoft SQL Server 2005 |
| Course 2781 | Designing Microsoft SQL Server 2005 Server-Side Solutions |
| Course 2787 | Designing Security for Microsoft SQL Server 2005 |
| Clinic 2783 | Designing the Data Tier for Microsoft SQL Server 2005 |
| Course 2779 | Implementing a Microsoft SQL Server 2005 Database |
| Course 2791 | Implementing and Maintaining Microsoft SQL Server 2005 Analysis Services |
| Course 2792 | Implementing and Maintaining Microsoft SQL Server 2005 Integration Services |
| Course 2793 | Implementing and Maintaining Microsoft SQL Server 2005 Reporting Services |
| Course 2785 | Implementing and Maintaining a Microsoft SQL Server 2005 Database |
| Workshop 2790 | Troubleshooting and Optimizing Database Servers Using Microsoft SQL Serverн 2005 |
| Workshop 2784 | Tuning and Optimizing Queries Using Microsoft SQL Server 2005 |
| Course 7031 | Upgrading to Microsoft SQL Server 2005 (Non-MOC Course) |
| SQL 2000 Courses | |
| Course 2071 | Querying Microsoft SQL Server 2000 with Transact-SQL |
| Course 2072 | Administering a Microsoft SQL Server 2000 Database |
| Course 2073 | Programming a Microsoft SQL Server 2000 Database |
| Course 2074 | Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 |
This Script is used to create a Backup for a Filegroup
BACKUP DATABASE [TestDB] -- backup the database in the [ ]
FILEGROUP = N'PRIMARY' -- backup just the primary file group
TOа DISK = N'F:\Backup\TestDB.bak'-- the backup file to create
WITH NOFORMAT, NOINIT, -- Format the tape, NoInit = append to existing file
NAME = N'AW_IT_assets-Full Filegroup Backup', -- name of the tape
SKIP, NOREWIND, NOUNLOAD -- skip errors, don't rewind when done, eject tape when done.
GO
This Script is used to create a Database
use master
go
create database TestDB -- database name of new database
on (name = 'transacttestdb', -- logical name of the file (used by SQL Server)
аа filename = 'C:\TestDB\TestDB.mdf', -- primary file of the database
size = 20 mb, -- default size is 20mb
filegrowth = 0) -- default filegrowth as specified by SQL Server (usually 10% of starting size a.k.a. 2mb)
log on (name ='transacttestdb_log', -- log file for the database
аа filename = 'D:\TestDB\TestDB_log.ldf', -- should be on a seperate disk for better performance.
size = 5 mb, -- default size should be 1/4th of the data file size
filegrowth = 0) -- default filegrowth as specified by SQL Server (usually 10% of starting size a.k.a. 500KB)
SQL Server 2005 Books
Inside Microsoft SQL Server 2005: The Storage Engine |
Programming Microsoft SQL Server 2005 |
Microsoft SQL Server 2005: Database Essentials Step by Step |
Microsoft SQL Server 2005: Applied Techniques Step by Step |
MCITP Self-Paced Training Kit (Exam 70-443): Designing a Database Server Infrastructure Using Microsoft SQL Server 2005 |
SQL Server 2000 Books
Microsoft SQL Server 2000 Reporting Services Step by Step |
Microsoft SQL Server 2000 DTS Step by Step |
Microsoft SQL Server 2000 High Availability |
MCSA/MCSE/MCDBA Self-Paced Training Kit: Microsoft SQL Server 2000 System Administration, Exam 70-228, Second Edition |
MCAD/MCSE/MCDBA Self-Paced Training Kit: Microsoft SQL Server 2000 Database Design and Implementation, Exam 70-229, Second Edition |