DBMS Programs MS SQL Server & MySQL

Slides:



Advertisements
Similar presentations
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.
Advertisements

Discovering SQL all rights reserved (c) 2010 agilitator.com INSTALLING MS SQL Server 2008 R2 Express Edition.
MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 11 Managing and Monitoring a Windows Server 2008 Network.
Passage Three Introduction to Microsoft SQL Server 2000.
SQL Server 2008 Basmah AlQadheeb-213 MIS What is a Database ? A database is a collection of Data that is organized so that it can easily be accessed,
Phil Brewster  One of the first steps – identify the proper data types  Decide how data (in columns) should be stored and used.
Overview What is SQL Server? Creating databases Administration Security Backup.
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.
Overview of SQL Server Alka Arora.
Session 5: Working with MySQL iNET Academy Open Source Web Development.
Databases in Visual Studio. Database in VisualStudio An MS SQL database are built in Visual studio The Name can be something like ”(localdb)\Projects”
DBSQL 14-1 Copyright © Genetic Computer School 2009 Chapter 14 Microsoft SQL Server.
SQL Server 2000 Acropolis Institute of Technology and Research Database fundamentals Prepared By: Rahul Patel.
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.
Module 1: Exploring Replication. Overview Understanding SQL Server Replication Setting Up Replication Understanding Agents in Replication Securing Replication.
1 Chapter Overview Preparing to Upgrade Performing a Version Upgrade from Microsoft SQL Server 7.0 Performing an Online Database Upgrade from SQL Server.
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.
MySQL Quick Guide. Start and End MySQL MySQL is installed as a service. To start MySQL: –Control Panel/Administrative Tools/Services/MySQL/ start MySQL.
Enterprise manager Using the Enterprise manager. Purpose of the Enterprise Manager To design tables To populate / update tables To draw diagrams of tables.
What is MySQL? MySQL is a relational database management system (RDBMS) based on SQL (Structured Query Language). First released in January, Many.
Backing Up and Restoring Databases by Using the SQL Server 2000.
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.
Backup Tables in SQL Server. Backup table method Cape_Codd database is used in this example 1.Righ click the database that contains the table you want.
Log Shipping, Mirroring, Replication and Clustering Which should I use? That depends on a few questions we must ask the user. We will go over these questions.
Visual Database Creation with MySQL Workbench 도시정보시스템 설계
Introduction to SQL Server  Working with MS SQL Server and SQL Server Management Studio.
Introduction to MySQL  Working with MySQL and MySQL Workbench.
Introduction to Oracle  Oracle Database XE, APEX and Oracle SQL Developer.
How To Start a SQL server Connecting to SQL Server.
©NIIT BCP and DTS Implementing Stored Procedures Lesson 2A / Slide 1 of 23 Objectives In this lesson, you will learn to: Perform bulk copy using the BCP.
Confidential ASWM Installation Guide in Main Server ( for Windows Server 2008 R2 ) 1.
1 Finding Your Way Through a Database Exploring Microsoft Office Access.
2nd year Computer Science & Engineer
3 A Guide to MySQL.
Architecture Review 10/11/2004
Fundamental of Databases
, MS-Access, QBE, Access/Oracle
Access Tutorial 1 Creating a Database
Basic Database Concepts
Lead SQL BankofAmerica Blog: SQLHarry.com
Relational database and SQL MySQL LAMP SQL queries
Introduction to Web programming
Principles of Software Development
Created by Kamila zhakupova
Using a Gateway to Leverage On-Premises Data in Power BI
Database Management  .
DB2 (Express C Edition) Installation and Using a Database
Relational databases, and more …
Introduction to Ms-Access Submitted By- Navjot Kaur Mahi
Basic Concepts in Data Management
Access Tutorial 1 Creating a Database
Database.
Populating a Data Warehouse
Module 12: Implementing an Analysis Services Tabular Data Model
CIS16 Application Programming with Visual Basic
8 6 MySQL Special Topics A Guide to MySQL.
Power BI with Analysis Services
Microsoft SQL Server Upgrade and Downgrade scenarios
Install MySQL Community Server and MySQL Workbench
Access Tutorial 1 Creating a Database
NAVIGATING THE MINEFIELD
Chapter 11 Managing Databases with SQL Server 2000
Access Tutorial 1 Creating a Database
Michelle Haarhues Keeping up with SSMS.
Ch 1 .Installing and configuring SQL Server 2005
Presentation transcript:

DBMS Programs MS SQL Server & MySQL

SQL Server SQL Server is a Relational Database Management System (RDBMS)  Comes with several tools Create & maintain databases, tables Create & maintain stored procedures, views, etc Create & maintain and schedule data backups Replication (eg, create a copy of the database) Create & maintain users, roles, etc

Server database System SQL Server is a server database system, as opposed to a desktop system such as MS Access Run on central server(s) Multiple users can access simultaneously Access through an application

MS SQL Server Edition Enterprise edition Express edition aimed towards large-scale data centers and data warehouse solutions Express edition free edition of SQL Server ideal for learning and building desktop and small server applications. Limited to 10GB storage per database. SQL Server Express with Tools

MySQL Editions MySQL Enterprise Edition MySQL Community Edition Commercial MySQL Community Edition Non-comercial mySQL Community server

Install https://msdn.microsoft.com/en-us/sqlserver2014express Download Express with Tools (SQLEXPRWT) Or SQL Server Management Studio Express  Need to register with a Microsoft account https://dev.mysql.com/downloads/windows/installer/5.7.html DO NOT forget your root password http://sqlfiddle.com/ No install but also no save slower due to network latency

Main administration console for SQL Server Allows both GUI and SQL scripts Can use to create as many databases as you like. Connect to as many databases on as many servers as you like.  Careful that you don't accidentally run a script against the wrong server

Basic Tutorial Create database Create Table (first with GUI) From the Object Explorer, right click on the Databases folder and select New database Before we can add data to our database, we'll need to create at least one table. Create Table (first with GUI) From the correct database right click on the Tables icon and select Table... complete the details in the Column Name column, the Data Type column, and Allow Nulls column Set primary key Save and refresh

Add data There are many ways of getting data into your database Manually: Type data directly into your table rows. Copy/Paste: Similar to the previous option, but this one is where you copy data from another source (eg, excell), then paste it into a table in your database. Import: You can use the Import and Export Wizard to import data from another source. SQL Scripts: You can run a SQL script that contains all data to insert. – this is what we’ll use

SQL queries Create Table Insert into… values… Select… From … Where… Update … Set… Where… SQL is case insensitive CREATE = create