SQL Server 2000 Acropolis Institute of Technology and Research Database fundamentals Prepared By: Rahul Patel.

Slides:



Advertisements
Similar presentations
1 Web-Enabled Decision Support Systems Access Introduction: Touring Access Prof. Name Position (123) University Name.
Advertisements

Stored procedures and views You can see definitions for stored procedures and views in the demo databases but you can’t change them. For views, expand.
What is MySQL? MySQL is a relational database management system (A relational database stores data in separate tables rather than putting all the data.
ORACLE Lecture 1: Oracle 11g Introduction & Installation.
Computer Science 101 Web Access to Databases Overview of Web Access to Databases.
SOUL INSTALLATION Step-1 For this Please Install the Version 7.0 or SQL Server 2000 or onwards.
Passage Three Introduction to Microsoft SQL Server 2000.
Module 3: SQL Server 2005 Administrative Tools. Overview Using SQL Server Management Studio Using SQL Computer Manager Using the sqlcmd Utility Using.
1 Chapter Overview Transferring and Transforming Data Introducing Microsoft Data Transformation Services (DTS) Transferring and Transforming Data with.
Microsoft Access 2007 Microsoft Access 2007 Introduction to Database Programs.
® IBM Software Group © 2006 IBM Corporation The Eclipse Data Perspective and Database Explorer This section describes how to use the Eclipse Data Perspective,
State of Connecticut Core-CT Project Query 4 hrs Updated 1/21/2011.
An Introduction to ASP.NET Web Pages 2 Module 1: Webmatrix Installation and Your First Web Site Tom Perkins.
Access Tutorial 10 Automating Tasks with Macros
Chapter 9 Macros, Navigation Forms, PivotTables, and PivotCharts
Overview What is SQL Server? Creating databases Administration Security Backup.
CHAPTER 9 DATABASE MANAGEMENT © Prepared By: Razif Razali.
Overview of SQL Server Alka Arora.
Session 5: Working with MySQL iNET Academy Open Source Web Development.
Databases and LINQ Visual Basic 2010 How to Program 1.
Advanced Database Management System Lab no. 11. SQL Commands (for MySQL) –Update –Replace –Delete.
Self Guided Tour for Query V8.4 Basic Features. 2 This Self Guided Tour is meant as a review only for Query V8.4 Basic Features and not as a substitute.
Introduction to SQL Steve Perry
Database Queries. Queries Queries are questions used to retrieve information from a database. Contain criteria to specify the records and fields to be.
Introduction to SEQUEL. What is SEQUEL? Acronym for Structural English Query Language Acronym for Structural English Query Language Standard language.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 30 – Bookstore Application: Client Tier Examining.
1 Copyright © 2004, Oracle. All rights reserved. Introduction.
Database control Introduction. The Database control is a tool that used by the database administrator to control the database. To enter to Database control.
Navigating SQL Server Lesson 3. Skills Matrix Graphical User Interface (GUI) Management Tools SQL Server Management Studio SQL Server Configuration Manager.
Siebel 8.0 Module 2: Overview of EIM Processing Integrating Siebel Applications.
® Microsoft Access 2010 Tutorial 10 Automating Tasks with Macros.
Course FAQ’s I do not have any knowledge on SQL concepts or Database Testing. Will this course helps me to get through all the concepts? What kind of.
2. SQL Security Objectives –Learn SQL Server 2000 components Contents –Understanding the Authentication Process –Understanding the Authorization Process.
SQL Jan 20,2014. DBMS Stores data as records, tables etc. Accepts data and stores that data for later use Uses query languages for searching, sorting,
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 25.1 Test-Driving the ATM Application 25.2.
Presentation On How To Create Connection To A Database.
DATABASE CONNECTIVITY TO MYSQL. Introduction =>A real life application needs to manipulate data stored in a Database. =>A database is a collection of.
Chapter Fourteen Access Databases and SQL Programming with Microsoft Visual Basic th Edition.
Visual Basic for Application - Microsoft Access 2003 Finishing the application.
What is OLAP?.
Backing Up and Restoring Databases by Using the SQL Server 2000.
Features Of SQL Server 2000: 1. Internet Integration: SQL Server 2000 works with other products to form a stable and secure data store for internet and.
Batch Jobs Using the batch job functions. Use [Bulk Changes][Batch Job Utility] to start. Read the information panel. Check with TAMS Technical Support.
Quick Introduction to HTML DB. Accessing HTML DB There are two ways to access HTML DB 1.In the ilearning curriculum, select the red boxed arrow that appears.
PeopleSoft Financials Advanced Query Training Financial Information Systems and Reporting Controller’s Division
30 Copyright © 2009, Oracle. All rights reserved. Using Oracle Business Intelligence Delivers.
SQL Query Analyzer. Graphical tool that allows you to:  Create queries and other SQL scripts and execute them against SQL Server databases. (Query window)
شعار الشركة Ms SQL Server 2008 Express Edition. SQL Server Management Studio 2008 When we open the SQL server management studio this window are seen:
SSMS SQL Server Management System. SQL Server Microsoft SQL Server is a Relational Database Management System (RDBMS) Relational Database Management System.
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
Create Views Using a Graphical Designer Database Administration Fundamentals LESSON 2.3b.
CS 281 – Fall 2010 Lab 4 Parametric Query and Forms in MS Access.
Copyright © 2014 Pearson Canada Inc. Ext. 5b-1 Copyright © 2014 Pearson Canada Inc. Application Extension 5b Using Microsoft Access Part 2: Using Information.
How To Start a SQL server Connecting to SQL Server.
2 Copyright © 2008, Oracle. All rights reserved. Building the Physical Layer of a Repository.
Understanding Core Database Concepts Lesson 1. Objectives.
DBMS Programs MS SQL Server & MySQL
Visual Basic 2010 How to Program
Chapter 1 Introduction.
Data Virtualization Demoette… DDL Feature
20761B 12: Using Set Operators Module 12   Using Set Operators.
Database Queries.
Chapter 1 Introduction.
Exploring Microsoft® Access® 2016 Series Editor Mary Anne Poatsy
Understanding Core Database Concepts
Creating Additional Input Items
Wings 2.0 Business Flow Reference
Ch 1 .Installing and configuring SQL Server 2005
Tutorial 10 Automating Tasks with Macros
NatQuery An End-User Perspective On Using To Extract Data From ADABAS
Presentation transcript:

SQL Server 2000 Acropolis Institute of Technology and Research Database fundamentals Prepared By: Rahul Patel

Introduction Microsoft SQL Server is a Relational Database Management System (RDBMS) designed to run on platforms ranging from laptops to large multiprocessor servers. Enterprise Manager is the main administration console for SQL Server. Enterprise Manager enables you to create database objects (such as databases, tables, views etc), you can configure user accounts, you can set up scheduled tasks, transfer data between databases, and more.

SQL Server Enterprise Manager

Creating a New Database The following steps demonstrate how to create a database in SQL Server using Enterprise Manager.

1. Right click on the "Databases" icon and select "New Database...":

2. Name your database and click "OK":

Your New Database You will now notice your new database appears under the "Databases" section of Enterprise Manager.

SQL Server - Create a Table Ensuring you have the right database expanded, right click on the "Tables" icon and select "New Table...":

Entering Data Directly to your Table

Close the table by clicking the close icon, and when prompted, name your table:

Now that you've created a new table, it will appear under your database in the "Tables" section.

SQL Server - Adding Data To open the table, right click on the table you wish to open, and select "Open Table > Return all rows":

2. You can now start entering the data directly into your table.

Disadvantages of Entering Data Directly to your Table The above method is fine if you only have a small amount of data to enter or update. If you have a lot of data to enter, this could become very tedious. A Better Method - SQL Scripts In most cases, you will probably find it more efficient to write a SQL script. Using a script enables you to re-enter the data as many times as you like.

SQL Server - SQL Query Analyzer The SQL Query Analyzer is the main interface for running SQL queries against your database. You can use the SQL Query Analyzer to create and run adhoc scripts, or you can create SQL scripts and save them for later use. Accessing SQL Query Analyzer You can open Query Analyzer from Enterprise Manager by clicking Tools > Query Analyzer.

SQL Server - SQL Query Analyzer

SQL Query Analyzer looks like this:

Writing Queries

SQL Server Summary SQL Server is a powerful application, and this stuff has provided an overview of the main concepts involved in SQL Server. To recap briefly, we've: created databases created database tables inserted data into those tables used the Query Analyzer to run a query.

What Next? The most logical next step from learning SQL Server is to learn SQL itself. SQL stands for Structured Query Language and enables you to perform database related tasks programmatically. Most of the tasks in this tutorial can be done programmatically using SQL. Probably the most common use for SQL is to work with the data in the database. For example, to insert data, select data, update data, or to delete data. Any database driven website will have many SQL statements doing this stuff.