SQL Server Quick Guide. MS SQL Server Express It is installed with the Visual Studio. SQL Server database file extension: mdf Default database folder:

Slides:



Advertisements
Similar presentations
Microsoft SQL Server 2008 From the Program menu choose: Microsoft SQL Server 2008 R2  SQL Server Management Studio. You may see a window indicating the.
Advertisements

Copyright ®xSpring Pte Ltd, All rights reserved Versions AuthorDateDescription 1.0NBL2012/05First version. Modified from Enterprise edition.
Copyright ®xSpring Pte Ltd, All rights reserved Versions AuthorDateDescription 1.0NBL2012/05First version. Modified from Enterprise edition.
ISYS 512 Business Application Design and Development with.Net David Chao.
The ADO Data Control. Universal Data Access Open Database Connectivity (ODBC) –standard for accessing data in databases OLE-DB –allows access to data.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 512.
Introduction to ADO.Net, VB.Net Database Tools and Data Binding ISYS 512.
Getting Started with Microsoft SQL Server 2012 Express Edition Appendix A DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 6 th Edition.
Installing sylib By, Tolga Ciftci. Main Aims Installing the website with the setup file –With SQL Express Server and user instancing.
Introduction to ADO.Net, VB.Net Database Tools and Data Binding ISYS 512.
Procedure for Data backup and restore. Two type of procedure Through Data Traveller Manual back up.
Introduction to ADO.Net and Visual Studio Database Tools
1 Working with MS SQL Server II. 2 The sqlcmd Utility Command line utility for MS SQL Server databases. Previous version called osql Available on classroom.
Installation Guide to SOUL 2.0 Demo Version
Backup & restore database. Backup a database Step 1.
Installation and Administration
1 Working with MS SQL Server. 2 Objectives You will be able to Use Visual Studio for GUI based interactive access to a Microsoft SQL Server database.
ODBC REPORTS How to Use Access to work with MS SQL Server Database.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 512.
ADO Connect Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Databases in Visual Studio. Database in VisualStudio An MS SQL database are built in Visual studio The Name can be something like ”(localdb)\Projects”
Database Programming Dr. John Abraham. Data Sources Data source specifies the source of the data for an application. Click on Data from Menu Choose show.
1 Working with MS SQL Server Textbook Chapter 14.
© FPT SOFTWARE – TRAINING MATERIAL – Internal use 04e-BM/NS/HDCV/FSOFT v2/3 Working with MSSQL Server Code:G0-C# Version: 1.0 Author: Pham Trung Hai CTD.
Using sub query. Sub query A query inside another query.
Copyright 2008 Judith A Copeland - Accessing The Database By Judi Copeland.
WebOPAC Installation for SOUL 2.0 is divided in 4 Steps:
CSCI 6962: Server-side Design and Programming Database Manipulation in ASP.
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
Saving Work to Your School Server Click through this presentation at your own speed. Use it as a review or a guide while saving a project.
Ch. 101 Database Management An Introduction to Databases.
MySQL Quick Guide. Start and End MySQL MySQL is installed as a service. To start MySQL: –Control Panel/Administrative Tools/Services/MySQL/ start MySQL.
RAD to Database Connection Glenn Campbell
BSG Group - Dau Anh Trong1 Introduction about MS SQL Server 2005.
Creating and Populating a MS SQLServer Database Presented By: Dr. Adam P. Anthony.
PHP Programming. Topics Database Handling (MySQL, MSSQL, ODBC)
1 Connecting to a Database Server. 2 We all have accounts, with a single database each, on a Microsoft SQL Server on the USF network: allman.forest.usf.edu.
CSCI 3327 Visual Basic Chapter 13: Databases and LINQ UTPA – Fall 2011.
شعار الشركة Ms SQL Server 2008 Express Edition. SQL Server Management Studio 2008 When we open the SQL server management studio this window are seen:
1 CPE 332 Introduction DBMS: Relational Database Managment Systems Instructor:Suthep Madarasmi, Ph.D. ดร. สุเทพ มาดารัศมี
Integrating Crystal Reports with SIGNZ (V3.59, July 2008) Integrating Crystal Reports with SIGNZ (V3.59, July 2008)
1 Working with MS SQL Server Beginning ASP.NET in C# and VB Chapter 12.
SSMS SQL Server Management System. SQL Server Microsoft SQL Server is a Relational Database Management System (RDBMS) Relational Database Management System.
Chapter 5 Building Your Product Catalog database Objectives Create Database. Create Table. Connect to Database. Use ASP Script to add new products. Use.
Introduction to SQL Server  Working with MS SQL Server and SQL Server Management Studio.
Creating SQL Database file And Displaying a Database Table in a DataGridView.
Upgrade on Windows 7. DownloadSoftware Download Software from link provided in Webliography: e/
Template Package  Presented by G.Nagaraju.  What is Template Package?  Why we use Template Package?  Where we use Template Package?  How we create.
How To Start a SQL server Connecting to SQL Server.
Moodle Install Guide Team 5 안정현 김현수 주채진 조수아. Moodle Install Enter moodle.org web site -> Go to Standard Moodle Packages in Downloads.
DBMS Programs MS SQL Server & MySQL
Allow SQL remote connections
DB Programming – Basic analysis
How to Start SQL Server and SSDT BI in Local
Data Virtualization Demoette… ODBC Clients
Creating Data Base & Sql Data Source
Visual Basic 2010 How to Program
W04 Connecting 3rd Party Application to ODBC
Basic Database Concepts
Lecture 6 VB.Net SQL Server.
SQL Query Joins ASP.Net 2.0 – Visual Studio 2005
Part 1 of 2 Creating SQL Database and Binding to GridView
ArcSight & Pervasive PSQL v11
Quick Start Guide for Visual Studio 2010
Creating Data Base & Sql Data Source
Start a new project – since this is the community edition I will save all when I get into VB and then I can choose the location and specify a folder.
These slides are for reference only. They are not "lecture notes"
Take-off Products and Solutions for Public Information Providers
Data Base.
Introduction to ADO.Net and Visual Studio Database Tools.
Presentation transcript:

SQL Server Quick Guide

MS SQL Server Express It is installed with the Visual Studio. SQL Server database file extension: mdf Default database folder: Example: testSQL08.mdf –C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\testSQL08.mdf

To Start/End SQL Server SQL Server Express is a “service” To start SQL Server service: –Control Panel/Administrative Tools/Services/SQLServerExpress

Creating SQL Server Database From Server Explorer, right click data connection and choose: Create new SQL Server Database Server name: –LocalServerName\SQLExpress –Ex: David-PC\SQLExpress Add new table: Right click Tables and choose Add New Table –Define table’s fields Add rows: Right click the table name and choose Show table data. Note: After creating the database, you may create an ODBC DSN to connect to it.

Create a New SQL Server Database: EmployeeDB Add a new table: EmployeeTable –EIDChar 10 –EnameChar 30 –SexChar 1 –SalaryNumeric (10,2) –HireDateDate Enter data