1 SQL SERVER 2005 Express CE-105 SPRING 2007 Engr. Faisal ur Rehman.

Slides:



Advertisements
Similar presentations
Relational Databases Chapter 4.
Advertisements

Chapter 12: ADO.NET and ASP.NET Programming with Microsoft Visual Basic.NET, Second Edition.
Using ADO.NET Chapter Microsoft Visual Basic.NET: Reloaded 1.
ASP.NET Database Connectivity I. 2 © UW Business School, University of Washington 2004 Outline Database Concepts SQL ASP.NET Database Connectivity.
Recording / Financing Fixed Asset Acquisition Human Resources Purchasing Revenue Traditional files approach: separate systems (Legacy Systems) Expenditure.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Chapter Extension 6 Using Microsoft Access © 2008 Pearson Prentice Hall, Experiencing MIS, David Kroenke.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
From VS C# 2010 Programming, John Allwork 1 VS2010 C# Programming - DB intro 1 Topics – Database Relational - linked tables SQL ADO.NET objects Referencing.
© Pearson Education Limited, Chapter 2 The Relational Model Transparencies.
ASP.NET Programming with C# and SQL Server First Edition
MICROSOFT ACCESS 2007 BTA – Spring What is Access?  Microsoft Access is a database management system…this means that it contains database information.
RAJIKA TANDON DATABASES CSE 781 – Database Management Systems Instructor: Dr. A. Goel.
DAY 14: ACCESS CHAPTER 1 Tazin Afrin October 03,
Database Technical Session By: Prof. Adarsh Patel.
Data-mining & Data As we used Excel that has capability to analyze data to find important information, the data-mining helps us to extract information.
Overview of Data Access MacDonald Ch. 15 MIS 324 Professor Sandvig.
CHAPTER EIGHT Accessing Data Processing Databases.
DAY 12: DATABASE CONCEPT Tazin Afrin September 26,
MIS 327 Database Management system 1 MIS 327: DBMS Dr. Monther Tarawneh Dr. Monther Tarawneh Week 2: Basic Concepts.
1 Database Concepts 2 Definition of a Database An organized Collection Of related records.
Prepared By Prepared By : VINAY ALEXANDER ( विनय अलेक्सजेंड़र ) PGT(CS),KV JHAGRAKHAND.
1 Database Systems Introduction to Microsoft Access Part 2.
Database revision.
Database Management Supplement 1. 2 I. The Hierarchy of Data Database File (Entity, Table) Record (info for a specific entity, Row) Field (Attribute,
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
Constraints Lesson 8. Skills Matrix Constraints Domain Integrity: A domain refers to a column in a table. Domain integrity includes data types, rules,
VOCAB REVIEW. A field that can be computed from other fields Calculated field Click for the answer Next Question.
SQL Basics Review Reviewing what we’ve learned so far…….
2 Copyright © 2008, Oracle. All rights reserved. Building the Physical Layer of a Repository.
Database Constraints ICT 011. Database Constraints Database constraints are restrictions on the contents of the database or on database operations Database.
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
Understanding Data Storage
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
Databases.
Databases Chapter 9 Asfia Rahman.
Databases – Exam questions
Databases Key Revision Points.
© 2016, Mike Murach & Associates, Inc.
Information Systems Today: Managing in the Digital World
and Defining Table Relationships
CIS 155 Table Relationship
A Table with a View: Database Queries
CSCI-100 Introduction to Computing
Chapter 4 Relational Databases
Microsoft Access 2003 Illustrated Complete
Database Management  .
Access Busn 216.
Databases and Information Management
INFO/CSE 100, Spring 2005 Fluency in Information Technology
MANAGING DATA RESOURCES
Chapter 8 Working with Databases and MySQL
Database.
PHP and MySQL.
Primary key Introduction Introduction: A primary key, also called a primary keyword, is a key in a relational database that is unique for each record.
CIS16 Application Programming with Visual Basic
Business Application Development
Databases and Information Management
Access: Access Basics Participation Project
Database Applications
A Table with a View: Database Queries
Advanced Database Concepts: Reports & Views
A Very Brief Introduction to Relational Databases
Chapter 11 Managing Databases with SQL Server 2000
Chapter 3 Database Management
Databases and Information Management
A Table with a View: Database Queries
DATABASE Purpose of database
Microsoft Access Date.
INTRODUCTION A Database system is basically a computer based record keeping system. The collection of data, usually referred to as the database, contains.
Presentation transcript:

1 SQL SERVER 2005 Express CE-105 SPRING 2007 Engr. Faisal ur Rehman

2 Definition It is a database platform used to create Database for.Net languages. It is based on Microsoft SQL Server It is a database platform used to create Database for.Net languages. It is based on Microsoft SQL Server 2005.

3 Database A file structured for the repository of data. Organized for easy retrieval, sorting, grouping, relating to other data, etc. Excel is also a flat database but lakes relations SQL is RDMS (Relational Database Management System) A file structured for the repository of data. Organized for easy retrieval, sorting, grouping, relating to other data, etc. Excel is also a flat database but lakes relations SQL is RDMS (Relational Database Management System)

4 RDMS Data is organized into tables that can be related together, thus reducing redundancy and increasing the integrity of data.

5 Normalization The process of determining what information belongs in which table to minimize redundancy and increase integrity.

6 Data Integrity Keeping a data Valid or Correct

7 Key and Identity Column Primary Key: A field or combination of fields that makes a given row unique in the database. A way of differentiating each row in a table when all other field might be duplicated in other rows in the same table. Key relates two tables to each other. Foreign keys relate one or more rows in one table to a record in another table that shares the same value in its primary key. Foreign key constraints enforce “Referential Integrity” Identity Column is an attribute that will automatically increment a field of data in each successive row added to the database. Typically used on primary key field to make them unique. Primary Key: A field or combination of fields that makes a given row unique in the database. A way of differentiating each row in a table when all other field might be duplicated in other rows in the same table. Key relates two tables to each other. Foreign keys relate one or more rows in one table to a record in another table that shares the same value in its primary key. Foreign key constraints enforce “Referential Integrity” Identity Column is an attribute that will automatically increment a field of data in each successive row added to the database. Typically used on primary key field to make them unique.

8 Relations One - One One - Many Many - Many One - One One - Many Many - Many

9 Databinding Interface Control retrieves and display data from a data source without programmatic details of the process ADO.NET creates a connection to a data source Interface Control retrieves and display data from a data source without programmatic details of the process ADO.NET creates a connection to a data source

10 ADO.NET Manages the request and response between your application and the database Manages the data that is retrieved from the response to the database querry BindingSource manages the connection between the user interface controls and the underlying data set retrieved from the database. Manages the request and response between your application and the database Manages the data that is retrieved from the response to the database querry BindingSource manages the connection between the user interface controls and the underlying data set retrieved from the database.

11 Components of Database Tables Stored Procedures Queries Views Reports Diagrams Tables Stored Procedures Queries Views Reports Diagrams

12 Components of a Table A table is composed of Row and Column Row is also termed as record Column is also called field Dataset is a set of tables A table is composed of Row and Column Row is also termed as record Column is also called field Dataset is a set of tables

13 Q & A Define SQL Server Express Define RDMS What is ADO.NET Define Key Define SQL Server Express Define RDMS What is ADO.NET Define Key

14 T H S A N K T H S A N K