Practical Learning: Introducing Stored Procedures Start Microsoft SQL Server Management Studio and log in to your server On the main menu, click File -> New -> Query With Current Connection To create a new database, copy and paste the following code in the Query window: -- ============================================= -- Database: WattsALoan -- ============================================= USE master GO -- Drop the database if it already exists IF EXISTS ( SELECT name FROM sys.databases WHERE name = N'WattsALoan' ) DROP DATABASE WattsALoan GO CREATE DATABASE WattsALoan GO -- ========================================= -- Table: Employees -- ========================================= USE WattsALoan GO IF OBJECT_ID(N'dbo.Employees', N'U') IS NOT NULL DROP TABLE dbo.Employees GO CREATE TABLE dbo.Employees ( EmployeeID int identity(1,1) NOT NULL, EmployeeNumber nchar(10) NULL, FirstName nvarchar(20) NULL, LastName nvarcha...
.net mvc tutorial WPF, Tutorial, Windows Presentation Foundation, XAML, Expression Blend, .NET 3.0, Learn, How to, API