Learningcomputer.com SQL Server 2008 - Working with Databases.

Slides:



Advertisements
Similar presentations
Module 2: Database Architecture
Advertisements

Microsoft Dynamics AX 2009 Integration and Development with.NET Framework Business Intelligence: OLAP and Analytics.
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.
5 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
1 SQL Server Management Studio SQL DDL CREATE TABLE Constraints ALTER TABLE DROP TABLE The GUI way Steen Jensen, autumn 2013.
Genie-Soft Product Profile. Copyright© Genie-Soft Corporation All rights reserved. What We Do? Storage Software  Secure, Access & Manage Data.
DataBase Administration Scheduling jobs Backing up and restoring Performing basic defragmentation and index rebuilding Using alerts Archiving.
Tables Lesson 6. Skills Matrix Tables Tables store data. Tables are relational –They store data organized as row and columns. –Data can be retrieved.
Anil Desai SQL Saturday #35 (Dallas, TX).  Anil Desai ◦ Independent consultant (Austin, TX) ◦ Author of several SQL Server books ◦ Instructor, “Implementing.

Advanced Databases Basic Database Administration Guide to Oracle 10g 1.
Brian Alderman | MCT, CEO / Founder of MicroTechPoint Pete Harris | Microsoft Senior Content Publisher.
Week 9 – Chapter 8 SQL 710 Methods to Backup Databases
Module 7: Restoring Databases. Overview SQL Server Recovery Process Preparing to Restore a Database Restoring Backups Restoring Databases from Different.
Database Backup and Recovery
Backup and Restore. Backup  Databases live in a fragile environment  Machines can fail  Disks can fail  Programs can fail.
Using T-sql scripts. Migrating Sql Database to SQL Azure Database Create the Test Database In SQL Server Management Studio, on the File menu, point to.
Tuning SQL Server 2012 for SharePoint 2013 Jump Start 01 | Key SQL Server and SharePoint Server Integration Concepts (50 minutes) Dedicated Server or.
Backup Concepts. Introduction Backup and recovery procedures protect your database against data loss and reconstruct the data, should loss occur. The.
Database Configuration and Maintenance Database Configuration and Maintenance Exam / 30.
Pro Exchange SPAM Filter An Exchange 2000 based spam filtering solution.
SQL Server Management Studio Introduction
Migrating to EPiServer CMS 5 Johan Björnfot -
Session 7 Creating and Managing Databases. RDBMS and Data Management/ Session 7/2 of 27 Session Objectives Describe the system and user-defined databases.
Module 15: Monitoring. Overview Formulate requirements and identify resources to monitor in a database environment Types of monitoring that can be carried.
1 Chapter Overview Creating a User Database Setting Database Options Managing User Database Size Placing Database Files on Multiple Disks.
Chapter 4 SQL. SQL server Microsoft SQL Server is a client/server database management system. Microsoft SQL Server is a client/server database management.
Database Security and Auditing: Protecting Data Integrity and Accessibility Chapter 3 Administration of Users.
ApexSQL Log Recover accidentally truncated, dropped or deleted data with or without transaction log or its backup. Recover data from un-attachable/corrupted.
Module 3: Managing Database Files. Overview Introduction to Data Structures Creating Databases Managing Databases Placing Database Files and Logs Optimizing.
Databases Lesson 5.
UNIT 12 SERVER SIDE OF A WEBSITE Cambridge Technicals.
Company LOGO 1 Database Creation and Maintenance Jorge G. Martinez.
SQL/Lesson 4/Slide 1 of 45 Using Subqueries and Managing Databases Objectives In this lesson, you will learn to: *Use subqueries * Use subqueries with.
Module 7 : Configuration I Jong S. Bok
7. Replication & HA Objectives –Understand Replication and HA Contents –Standby server –Failover clustering –Virtual server –Cluster –Replication Practicals.
Pedro Azevedo Lopes Premier Field Engineer Microsoft Corporation.
3 Copyright © 2009, Oracle. All rights reserved. Creating an Oracle Database Using DBCA.
Introduction to Oracle. Oracle History 1979 Oracle Release client/server relational database 1989 Oracle Oracle 8 (object relational) 1999.
6 Copyright © 2007, Oracle. All rights reserved. Managing Database Storage Structures.
Learningcomputer.com SQL Server 2008 – Backup and Restore Database.
Agenda for Class 2/20/2014 Introduce Microsoft’s SQL Server database management system. Use the lab to discuss how to CREATE, DROP and populate (INSERT)
Chapter 15: Reliability and Security in Database Servers Neyha Amar CS 157B May 6, 2008.
Learningcomputer.com SQL Server 2008 – Management Studio.
3 Copyright © 2004, Oracle. All rights reserved. Creating an Oracle Database.
Ch 2. Creating and Configuring Databases. SQL Server Management Studio (SSMS) Graphical way to create / manage SQL Server Combines features from Query.
SharePoint 2013 Configuration steps. Add Permissions to SQL 1.Run the SharePoint Management shell on one of the farm servers, while logged in.
The Jukebox is a.NET web application that plays streaming music files to it’s clients according to their favorites musical genres. Clients can rate the.
Introduction to SQL Server  Working with MS SQL Server and SQL Server Management Studio.
How to recover... deleted data without backups? Vedran Kesegić.
Rob Sewell Making PowerShell Useful Real-Life Examples of Powershell in Action Slides available here -
8 Copyright © Oracle Corporation, All rights reserved. Managing Tablespaces and Data files.
Database Administration
Curacao SQL Saturday June 11, 2016
Renaming Databases I was thinking of using a few other titles, “There and Lock again, A DBA’s holiday”
Building Effective Backups
Installation and database instance essentials
Chapter Overview Understanding the Database Architecture
Introduction of Week 6 Assignment Discussion
SQL Server May Let You Do It, But it Doesn’t Mean You Should
Making PowerShell Useful
Re-Indexing - The quest of ultimate automation
Microsoft SQL Server 2014 for Oracle DBAs Module 7
Making PowerShell Useful
What about the Data Dude?
Transaction Log Internals and Performance David M Maxwell
deleted data without backups?
Copyright © 2013 – 2018 by Curt Hill
Backup & Recovery.
Presentation transcript:

Learningcomputer.com SQL Server Working with Databases

Working with Databases Databases are the building blocks of storage in SQL Server 2008 You can create a database by using one of the following methods: SQL Server Management Studio Transact SQL Script a database after creation Template Explorer

SQL Server Management Studio Easiest way to create a database Industry Best Practices Name should indicate the type of content Database objects should be intuitive with no spaces Data file and log file should be on separate physical drives. Why? For production database, the recovery option should be set to Full db_owner role should be limited to a few individuals We are going to create a database called Sales

Transact SQL Syntax is CREATE DATABASE More in SQL Server Help section We will create a database called Maint in our Demo

Other Transact SQL commands ALTER DATABASE sp_helpdb sp_dboption DROP DATABASE

Template Explorer Demo to create another database