Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2

Size: px
Start display at page:

Download "Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2"

Transcription

1 Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2 Why Use SQL Server?... 2 Features Introduced in SQL Server 2008 R Master Data Services... 3 StreamInsight... 3 Multi-Server Administration... 3 PowerPivot for Excel and SharePoint... 3 New Features in SQL Server Product Update... 4 Multi-Subnet Failover Clustering... 4 AlwaysOn Availability Groups... 4 The THROW Statement... 4 Sequence Objects... 4 Support for a Contained Database... 4 The Columnstore Index... 4 Ad-Hoc Query Paging... 5 SQL Server 2012 Express LocalDB... 5 FileTables... 5 PowerPivot Configuration Tool... 5 SQL Server Data Tools... 5 Reporting Services Excel and Word Rendering Extension... 5 Power View... 5 WITH RESULT SETS... 6 SQL Server 2012 Editions... 6 Enterprise Edition... 6 Business Intelligence Edition... 6 Standard Edition... 7 Web Edition... 7

2 Developer Edition... 7 Express Edition... 7 SQL Server 2012 Instances... 7 Default Instance... 7 Named Instance... 7 SQL Server 2012 System Databases... 8 The master Database... 8 The model Database... 8 The msdb Database... 9 The tempdb Database... 9 The Resource Database... 9 Immediate Solutions Installing SQL Server Performing Attended Installation Performing Unattended Installation Upgrading to SQL Server Preparing for Upgrade Performing the Upgrade Summary Chapter 2: Introducing SQL Server 2012 Tools In Depth Development Tools SSMS SSDT Configuration Tools SQL Server Configuration Manager Reporting Services Configuration Manager Performance Tools SQL Server Profiler Database Engine Tuning Advisor Immediate Solutions Registering a Server Importing and Exporting Registered Servers Exporting a Registered Server Importing a Registered Server Summary vi

3 Chapter 3: Building SQL Server Databases In Depth Basic Database Concepts Database Management System Relational Database Management System Exploring Tables in Databases ER Diagrams Explaining Data Integrity Entity Integrity Domain Integrity Referential Integrity User-Defined Integrity Exploring Keys Primary Key Foreign Key Composite key Candidate Key Designing a Database Gathering the Information Categorizing Data into Tables Determining Primary Keys Identifying Relationship among Tables Normalizing Tables Immediate Solutions Performing Database Operations Detaching and Attaching an Existing Database Creating a New Database Deleting a Database Performing Table Operations Creating a New Table Deleting a Table Performing Data Operations Inserting and Updating Data in a Table Retrieving Data from a Table Deleting Data from a Table Importing and Exporting Data Creating a Database Diagram Summary vii

4 Chapter 4: SQL Statements, Operators, and Functions In Depth Introducing Basic SQL Statements The SELECT Statement The INSERT Statement The UPDATE Statement The DELETE Statement Exploring Operators in SQL Server Arithmetic Operators Comparison Operators Logical Operators Assignment Operator Compound Operators Bitwise Operators Unary Operators String Concatenation Operator Scope Resolution Operator Set Operators Exploring Functions in SQL Server Aggregate Functions Scalar Functions Rowset Functions Ranking Functions Adding Comments in a Code Immediate Solutions Working with Basic SQL Statements Using the SELECT Statement Using the INSERT Statement Using the UPDATE Statement Using the DELETE Statement Working with Operators Using Arithmetic Operators Using Comparison Operators Using Logical Operators Using Assignment Operator Using Compound Operators Using Bitwise Operators Using Unary Operators viii

5 Using String Concatenation Operator Using Scope Resolution Operator Using Set Operators Working with Functions Using Aggregate Functions Using Scalar Functions Using Rowset Functions Using Ranking Functions Summary Chapter 5: Programming with T-SQL - I In Depth Data Types Exact Numerics Approximate Numerics Date and Time Character Strings Unicode Character Strings Binary Strings Miscellaneous Data Types Data Type Conversion Control Flow Statements The BEGIN END Statement The IF ELSE Statement The WHILE, BREAK, and CONTINUE Statements The GOTO Statement The RETURN Statement The WAITFOR Statement The Identity Column The Sparse Column The FILESTREAM Attribute FileTables The MERGE Statement Immediate Solutions Performing Data Type Conversion Using the CAST() Function Using the CONVERT() Function Working with Control Flow Statements ix

6 Using the BEGIN END Statement Using the IF ELSE Statement Using the WHILE, BREAK, and CONTINUE Statements Using the GOTO Statement Using the RETURN Statement Using the WAITFOR Statement Modifying Data using the MERGE Statement Retrieving Topmost Records using the TOP Clause Performing Database Operations Creating a Database Dropping a Database Performing Table Operations Creating a Table Altering a Table Truncating a Table Dropping a Table Summary Chapter 6: Programming with T-SQL - II In Depth Understanding Constraints The PRIMARY KEY Constraint The FOREIGN KEY Constraint The UNIQUE Constraint The CHECK Constraint Rules The CREATE RULE Statement The DROP RULE Statement Joins in SQL Server Cross Join Inner Join Outer Join Self-Join Describing Views The CREATE VIEW Statement The ALTER VIEW Statement The DROP VIEW Statement Subqueries x

7 Derived Tables Common Table Expressions Aliases Immediate Solutions Implementing Constraints Using the PRIMARY KEY Constraint Using the UNIQUE Constraint Using the FOREIGN KEY Constraint Using the CHECK Constraint Working with Rules Creating a Rule Dropping a Rule Joining Tables Performing a Cross Join Performing an Inner Join Performing an Outer Join Performing a Self-Join Working with Views Creating a View Altering a View Dropping a View Using Subqueries Using Derived Tables Using Common Table Expressions Creating Aliases Summary Chapter 7: Stored Procedures and User-Defined Functions In Depth Benefits of Stored Procedures Types of Stored Procedures System Stored Procedures User-Defined Stored Procedures Extended Stored Procedures Nesting and Recursion Parameters in Stored Procedure The Input Parameter xi

8 The Table-Valued Parameter The Output Parameter Statement-Level Recompilation Types of User-Defined Functions Scalar Function Table-Valued Function Immediate Solutions Creating a Stored Procedure Altering a Stored Procedure Executing a Stored Procedure Dropping a Stored Procedure Passing Data to a Stored Procedure Using Input Parameters Using Table-Valued Parameters Returning Data from a Stored Procedure Working with User-Defined Functions Creating and Executing a Scalar Function Creating and Executing a Table-Valued Function Summary Chapter 8: Triggers in SQL Server In Depth Comparing Triggers and Constraints Limitations of Triggers Types of Triggers DML Triggers DDL Triggers Logon Triggers The CREATE TRIGGER Statement The ALTER TRIGGER Statement The DROP TRIGGER Statement Nested Triggers Immediate Solutions Creating Triggers Creating DML Triggers Creating DDL Triggers Creating Logon Triggers xii

9 Altering Triggers Removing Triggers Summary Chapter 9: Cursors in SQL Server In Depth Cursor Models API Server Cursors Client Cursors Transact-SQL Cursors Cursor Types Static Cursors Dynamic Cursors Forward-Only Cursors Keyset-Driven Cursors Anatomy of a Cursor The DECLARE CURSOR Statement The OPEN Statement The FETCH Statement The CLOSE Statement The DEALLOCATE Statement System-Defined Cursor Functions The CURSOR_STATUS() Function Function Function Cursor Related Database Options The CURSOR_CLOSE_ON_COMMIT Option The CURSOR_DEFAULT Option Cursor Concurrency Options Positional Updates and Deletes The CURSOR THRESHOLD Option Cursor Transaction Isolation Levels Read Committed Read Uncommitted Repeatable Read or Serializable Snapshot Immediate Solutions Creating a Simple Cursor xiii

10 Performing Positioned Updates Performing Positioned Deletes Creating a Cursor to Select a Random Record Summary Chapter 10: Managing Transactions and Locking In Depth The ACID Properties Atomicity Consistency Isolation Durability Types of Transactions Autocommit Transactions Explicit Transactions Implicit Transactions Batch-Scoped Transactions Concurrency Problems Concurrency Control Mechanisms Optimistic Concurrency Control Pessimistic Concurrency Control Transaction Isolation Levels Locking in SQL Server Lock Granularity Types of Locks Deadlocking Immediate Solutions Starting, Committing, and Rolling Back a Transaction Creating a Savepoint within a Transaction Handling Deadlocks Summary Chapter 11: Error Handling in SQL Server In Depth Exploring Error Handling Techniques Function The RAISERROR Statement The TRY CATCH Statement xiv

11 Debugging Tools in SQL Server The PRINT Statement Trace Flags SQL Server Management Studio Integrated Debugger Immediate Solutions Using the Function Using the RAISERROR Statement Using the TRY CATCH Statement Using the THROW Statement Creating User-Defined Error Messages Recording an Error Information to the Event Log Debugging a T-SQL Code Summary Chapter 12: Monitoring, Auditing, and Maintaining SQL Server In Depth Overview of SQL Server Monitoring Determining SQL Server Monitoring Goals Selecting a Proper Monitoring Tool Determining the Components for Monitoring Selecting Metrics for Monitored Components Starting the Monitoring Tool Analyzing the Gathered Data SQL Server Monitoring Tools Performance Monitor Activity Monitor SQL Server Profiler SQL Server Audit Database Maintenance Plans Immediate Solutions Monitoring SQL Server Performance Using Performance Monitor Using Activity Monitor Using SQL Server Profiler Using SQL Server Audit Using Maintenance Plan Wizard Summary xv

12 Chapter 13: Data Replication In Depth Need for Replication Benefits of Replication Replication Components Publisher Distributor Subscribers Article Publication Subscription Overview of the Replication Process Types of Replication Snapshot Replication Transactional Replication Merge Replication Replication Agents Snapshot Agent Distribution Agent Log Reader Agent Queue Reader Agent Merge Agent Replication Topologies Central Publisher Central Subscriber Central Publisher with Remote Distributor Multiple Publishers and Multiple Subscribers Immediate Solutions Configuring Replication Creating a Distribution Creating a Publication Creating a Subscription Verifying Replication Monitoring Replication Summary xvi

13 Chapter 14: Log Shipping and Database Mirroring In Depth Exploring Log Shipping Benefits and Limitations The Log Shipping Architecture Exploring Database Mirroring Benefits and Limitations The Database Mirroring Architecture Operating Modes of a Database Mirroring Session Factors Determining the Operating Mode Role Switching Automatic Page Repair Feature Immediate Solutions Configuring Log Shipping Monitoring Log Shipping Configuring Database Mirroring Monitoring Database Mirroring Summary Chapter 15: Implementing Failover Clustering In Depth Introducing Failover Cluster Introducing Multi-Subnet Failover Cluster Exploring Benefits and Limitations of Failover Clustering Explaining Architecture of a SQL Server Failover Cluster Working of the Failover Clustering Immediate Solutions Creating a SQL Server Failover Cluster Creating Single-Node SQL Server Failover Clusters Adding Nodes to a Single-Node SQL Server Failover Cluster Removing a Node from a SQL Server Failover Cluster Summary Chapter 16: Performing Bulk Copy Operations In Depth The bcp Syntax The bcp out Command The bcp in Command xvii

14 Authentication Switches Switches for Error Handling Switches for Partitioning Data Input and Output File Format Switches Optimization Switches Special Insert Switches Switches for bcp Hints Miscellaneous Switches The bcp queryout Command bcp Errors Format Files The BULK INSERT Statement The BULK INSERT Default File Format The BULK INSERT Permissions BULK INSERT and Integration Services Optimizing bcp Performance Immediate Solutions Using the bcp out Command Using the bcp in Command Using the bcp queryout Command Using Format Files Executing the BULK INSERT Statement Summary Chapter 17: SQL Server Service Broker In Depth Enhancements in Service Broker Architecture of Service Broker Messages Services Contracts Queues Dialog Conversations Conversation Groups The Service Broker Endpoint Remote Service Bindings Routes Uses of Service Broker xviii

15 Asynchronous Triggers Reliable Query Processing Reliable Data Collection Large-Scale Batch Processing Distributed Server-Side Processing Data Consolidation The CREATE EVENT NOTIFICATION Statement Immediate Solutions Integrating DDL and DML Operations with Service Broker Creating a Message Queue Creating a Service Broker Service Creating an Event Notification Managing a Service Broker Activating Service Broker in a Database Starting and Stopping a Queue Creating Certificates for Securing the Service Broker Transport Summary Chapter 18: Policy-Based Management In Depth Basic Terminology of PBM Managed Target Facet Condition Policy Policy Category Effective Policy Modes of Policy Evaluation Immediate Solutions Working with Conditions Creating a Condition Viewing or Modifying a Condition Working with Policies Creating a Policy Viewing or Modifying a Policy Evaluating a Policy Specifying a Schedule to Run a Policy Importing a Policy xix

16 Exporting a Policy Summary Chapter 19: Automating SQL Server In Depth SQL Server Agent Jobs Schedules Alerts Operators Database Mail Database Maintenance Plans Immediate Solutions Configuring the SQL Server Agent Service Working with Jobs in SQL Server Agent Creating a Job Defining Job Steps Creating a Job Schedule Executing a Job Creating an Operator Creating Alerts Setting Up Database Mail Creating a Database Maintenance Plan Modifying and Executing a Database Maintenance Plan Summary Chapter 20: Performance Optimization with Query Execution Plans In Depth Explaining the Lifecycle of a Query Query Compilation Query Optimization Query Execution Describing Execution Plan Formats Execution Plan Caching Immediate Solutions Viewing Estimated Query Execution Plans Using the Graphical Format Using the Text Format xx

17 Using the XML Format Viewing Actual Query Execution Plans Using the Graphical Format Using the Text Format Using the XML Format Viewing Procedure Cache Details Summary Chapter 21: Indexing and Partitioning In Depth Indexing Clustered Indexes Non-Clustered Indexes Unique Indexes Columnstore Indexes Indexes with Included Columns Full-Text Indexes Spatial Indexes Filtered Indexes XML Indexes Partitioning Partition Function Partition Scheme Immediate Solutions Creating Indexes Creating a Clustered Index Creating a Non-Clustered Index Creating a Columnstore Index Optimizing Index Performance Enabling and Disabling Indexes Removing Indexes Partitioning a Table Creating a Partition Function Creating a Partition Scheme Creating a Partitioned Table Querying a Partitioned Table Summary xxi

18 Chapter 22: Working with Full-Text Search In Depth Full-Text Search Architecture Full-Text Querying The CONTAINS Predicate The FREETEXT Predicate The CONTAINSTABLE Function The FREETEXTTABLE Function Property Searching Immediate Solutions Creating a Full-Text Catalog Using SSMS Using T-SQL Code Creating a Full-Text Index Using SSMS Using T-SQL Code Executing Full-Text Queries Using the CONTAINS Predicate Using the FREETEXT Predicate Using the CONTAINSTABLE Function Using the FREETEXTTABLE Function Summary Chapter 23: Data Compression In Depth Benefits and Limitations of Data Compression Types of Data Compression Row Compression Page Compression Unicode Compression Compression Savings Immediate Solutions Determining Compression Savings Implementing Data Compression Using SSMS Using T-SQL Code Summary xxii

19 Chapter 24: Resource Governor In Depth Benefits and Limitations of Resource Governor Components of Resource Governor Resource Pools Workload Groups Classification Immediate Solutions Using Resource Governor Creating Resource Pools Creating Workload Groups Creating a Classifier Function Configuring Resource Governor Monitoring Resource Governor Using Performance Counters Using Trace Events Using Dynamic Management Views Using Catalog Views Summary Chapter 25: Security in SQL Server In Depth Enhancements in Security The SQL Server Security Model Authentication Types in SQL Server SQL Server Authentication Windows Authentication Authentication Modes Windows Authentication Mode Mixed Mode Principals and Securables Principals Securables Permissions Types of Permissions Problems with Permissions CAS Application Roles xxiii

20 SQL Server Passwords Encryption User-Supplied Password Encryption Symmetric Key Encryption Asymmetric Key Encryption Encryption Using a Certificate TDE EKM Backing Up Keys Immediate Solutions Performing User-Specific Operations Creating a User at Server Level Creating a User at Database Level Modifying the Existing User Properties Deleting a User at Server Level Deleting a User at Database Level Implementing Permissions Granting Permissions Denying Permission Revoking Permission Creating a Cross-Database Ownership Chaining Using CAS Changing or Resetting Passwords Encrypting Data Using Symmetric Key Encryption Using Asymmetric Key Encryption Using TDE Summary Chapter 26: Backing Up and Restoring Databases In Depth Types of Backups Full Backup Differential Backup File or Filegroup Backup Copy-Only Backup Transaction Log Backup Types of Recovery Models xxiv

21 Simple Recovery Model Full Recovery Model Bulk-Logged Recovery Model Immediate Solutions Selecting the Recovery Model for a Database Backing Up Databases Taking a Full Backup Taking a Differential Backup Taking a File or Filegroup Backup Taking a Copy-Only Backup Taking a Transaction Log Backup Restoring Databases Restoring Files and Filegroups Summary Chapter 27: SQL Server Reporting Services In Depth Basic SSRS Concepts Report Definition Report Types Report Models Data Regions and Maps The SSRS Architecture Report Server Report Manager Report Builder Report Designer Model Designer Reporting Services Configuration Manager Immediate Solutions Configuring SSRS Creating SSRS Reports Creating Reports by using SSDT Creating Reports by using Report Builder Publishing SSRS Reports Summary xxv

22 Chapter 28: SQL Server Analysis Services In Depth Basic SSAS Terminologies New Features of SSAS SSAS Architecture BISM ASSL Analysis Services Tools Analysis Services Deployment Wizard The Rename Instance Tool Objects of SSAS Cubes Cells Measures and Fact Tables Dimensions and Attributes Hierarchies Data Source Views Securing SSAS Deciding the Security Architecture Setting up a Logon Account Setting up an Access for SSAS Cube Designer The Cube Structure Tab The Dimension Usage Tab The Calculations Tab The KPIs Tab The Actions Tab The Partitions Tab The Aggregations Tab The Perspectives Tab The Translations Tab The Browser Tab Immediate Solutions Managing Data Sources in SSAS Creating a New Data Source Modifying an Existing Data Source Deleting a Data Source xxvi

23 Administering SSAS Connecting to an Instance of SSAS Creating an SSAS Database Creating a Data Source View Creating a Cube Adding Attributes to Dimensions Deploying an Analysis Services Project Browsing a Cube Summary Chapter 29: SQL Server Integration Services In Depth New Features of SSIS The SSIS Architecture SSIS Designer SSIS Wizards Command Prompt Utilities Integration Services Service Object Model Run-Time Engine and Run-Time Executables Data Flow Engine and Data Flow Components Components of an SSIS Package Control Flow Elements Data Flow Elements Connection Managers Variables Event Handlers Log Providers SSIS Support in SSMS and SSDT Immediate Solutions Creating a Custom Integration Services Package Using SSIS Designer Using SQL Server Import and Export Wizard Deploying a Custom Integration Services Package Creating Package Configurations Creating a SSIS Package Deployment Utility Using Package Installation Wizard Using SSIS Packages in Integration Services xxvii

24 Importing Integration Services Package Exporting an Integration Services Package Summary Chapter 30: SQL Server 2012 and XML In Depth Benefits of Storing XML Data in SQL Server The XPath Language The OPENXML Statement The FOR XML Clause The xml Data Type The XQuery Language XML DML The insert Keyword The delete Keyword The replace value of Keyword Immediate Solutions Using the OPENXML Statement Using the FOR XML Clause The RAW Mode The AUTO Mode The Explicit Mode The PATH Mode Working with the xml Data Type Using the exist() Method Using the value() Method Using the query() Method Using the nodes() Method Using the modify() Method Summary Chapter 31: SQL Server 2012 and Common Language Runtime In Depth Benefits of CLR Integration Program Execution inside CLR CLR Features Type Safety Verification Application Domains xxviii

25 CAS HPAs The Microsoft.SqlServer.Server Namespace Immediate Solutions Enabling CLR Integration Creating a CLR Stored Procedure Deploying a CLR Stored Procedure to a Test Server Moving a CLR Stored Procedure to Production Server Summary Chapter 32: SQL Server 2012 and Language-Integrated Query In Depth Standard Query Operators Projection Operators Filtering Operators Sorting Operators Grouping Operators Join Operators Aggregation Operators Element Operators Concatenation Operators Partitioning Operators Set Operators Equality Operators Quantifier Operators Generation Operators Data Type Conversion Operators Object Relational Mapping and LINQ to SQL The DataContext Class Immediate Solutions Working with Standard Query Operators Using the Select Operator Using the Where Operator Using the OrderBy Operator Using the GroupBy Operator Using the Join Operator xxix

26 Modifying Databases using the DataContext Class Inserting New Records Updating Existing Records Deleting Records Summary Appendix A: Migrating from MS Access to SQL Server Appendix B: Spatial Data Types Appendix C: Exploring System Functions Appendix D: Data Quality Services Appendix E: Management Data Warehouse in SQL Server Appendix F: Master Data Services Appendix G: PowerPivot for Excel Appendix H: Change Data Capture Appendix I: Assemblies in SQL Server Glossary Index What s on the CD-ROM xxx

Chapter 1: Introducing SQL Server

Chapter 1: Introducing SQL Server Leiter ftoc.tex V3-03/25/2009 1:31pm Page xv Introduction xxvii Chapter 1: Introducing SQL Server 2008 1 A Condensed History of SQL Server 1 In the Beginning 1 The Evolution of a Database 1 Microsoft Goes

More information

Designing Database Solutions for Microsoft SQL Server (465)

Designing Database Solutions for Microsoft SQL Server (465) Designing Database Solutions for Microsoft SQL Server (465) Design a database structure Design for business requirements Translate business needs to data structures; de-normalize a database by using SQL

More information

Ray Rankins. Paul Bertucci. Chris Gallelli UNLEASHED. 800 East 96th Street, Indianapolis, Indiana USA

Ray Rankins. Paul Bertucci. Chris Gallelli UNLEASHED. 800 East 96th Street, Indianapolis, Indiana USA Ray Rankins Paul Bertucci Chris Gallelli Alex T. Silverstein UNLEASHED 800 East 96th Street, Indianapolis, Indiana 46240 USA V Table of Contents Introduction 1 Who This Book Is For 2 What This Book Covers

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

More information

Many-to-Many One-to-One Limiting Values Summary

Many-to-Many One-to-One Limiting Values Summary page 1 Meet the expert: Andy Baron is a nationally recognized industry expert specializing in Visual Basic, Visual C#, ASP.NET, ADO.NET, SQL Server, and SQL Server Business Intelligence. He is an experienced

More information

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database MOC 6232A: Implementing a Microsoft SQL Server 2008 Database Course Number: 6232A Course Length: 5 Days Course Overview This course provides students with the knowledge and skills to implement a Microsoft

More information

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course:

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: 20762C Developing SQL 2016 Databases Module 1: An Introduction to Database Development Introduction to the

More information

SQL Server T-SQL Recipes. Andy Roberts Wayne Sheffield. A Problem-Solution Approach. Jonathan Gennick. Jason Brimhall David Dye

SQL Server T-SQL Recipes. Andy Roberts Wayne Sheffield. A Problem-Solution Approach. Jonathan Gennick. Jason Brimhall David Dye SQL Server 2012 T-SQL Recipes A Problem- Approach v? Jason Brimhall David Dye Jonathan Gennick Andy Roberts Wayne Sheffield Contents About the Authors About the Technical Reviewers Acknowledgments Introduction

More information

DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE

DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE 70-465 DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE Designing Database Solutions for Microsoft SQL Server (70-465) WWW.ANALYTICSEXAM.COM Contents Designing

More information

6232B: Implementing a Microsoft SQL Server 2008 R2 Database

6232B: Implementing a Microsoft SQL Server 2008 R2 Database 6232B: Implementing a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course is intended for Microsoft SQL Server database developers who are responsible for implementing a database

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

More information

Venezuela: Teléfonos: / Colombia: Teléfonos:

Venezuela: Teléfonos: / Colombia: Teléfonos: CONTENIDO PROGRAMÁTICO Moc 20761: Querying Data with Transact SQL Module 1: Introduction to Microsoft SQL Server This module introduces SQL Server, the versions of SQL Server, including cloud versions,

More information

"Charting the Course... MOC C: Developing SQL Databases. Course Summary

Charting the Course... MOC C: Developing SQL Databases. Course Summary Course Summary Description This five-day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL database. The course focuses on teaching individuals how to use

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

70-459: Transition Your MCITP: Database Administrator 2008 or MCITP: Database Developer 2008 to MCSE: Data Platform

70-459: Transition Your MCITP: Database Administrator 2008 or MCITP: Database Developer 2008 to MCSE: Data Platform 70-459: Transition Your MCITP: Database Administrator 2008 or MCITP: Database Developer 2008 to MCSE: Data Platform The following tables show where changes to exam 70-459 have been made to include updates

More information

Microsoft SQL Server Training Course Catalogue. Learning Solutions

Microsoft SQL Server Training Course Catalogue. Learning Solutions Training Course Catalogue Learning Solutions Querying SQL Server 2000 with Transact-SQL Course No: MS2071 Two days Instructor-led-Classroom 2000 The goal of this course is to provide students with the

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database OVERVIEW About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

Microsoft Exchange Server 2007 Implementation and Maintenance

Microsoft Exchange Server 2007 Implementation and Maintenance Microsoft Exchange Server 2007 Implementation and Maintenance Chapter 1 Exchange Server 2007 Deployment 1.1 Overview, Hardware & Editions 1.2 Exchange Server, Windows & Active Directory 1.3 Administration

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

Index. Symbol function, 391

Index. Symbol function, 391 Index Symbol @@error function, 391 A ABP. See adjacent broker protocol (ABP) ACID (Atomicity, Consistency, Isolation, and Durability), 361 adjacent broker protocol (ABP) certificate authentication, 453

More information

Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008

Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40hrs Overview: This

More information

MCSE Data Management and Analytics. A Success Guide to Prepare- Developing Microsoft SQL Server Databases. edusum.com

MCSE Data Management and Analytics. A Success Guide to Prepare- Developing Microsoft SQL Server Databases. edusum.com 70-464 MCSE Data Management and Analytics A Success Guide to Prepare- Developing Microsoft SQL Server Databases edusum.com Table of Contents Introduction to 70-464 Exam on Developing Microsoft SQL Server

More information

6 Months Training Module in MS SQL SERVER 2012

6 Months Training Module in MS SQL SERVER 2012 6 Months Training Module in MS SQL SERVER 2012 Module 1 Installing and Configuring Windows Server 2012 Installing and Managing Windows Server 2012 Windows Server 2012 Overview Installing Windows Server

More information

Maintaining a Microsoft SQL Server 2008 Database (Course 6231A)

Maintaining a Microsoft SQL Server 2008 Database (Course 6231A) Duration Five days Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

SQL Server 2014 Training. Prepared By: Qasim Nadeem

SQL Server 2014 Training. Prepared By: Qasim Nadeem SQL Server 2014 Training Prepared By: Qasim Nadeem SQL Server 2014 Module: 1 Architecture &Internals of SQL Server Engine Module : 2 Installing, Upgrading, Configuration, Managing Services and Migration

More information

"Charting the Course... SharePoint 2007 Hands-On Labs Course Summary

Charting the Course... SharePoint 2007 Hands-On Labs Course Summary Course Summary Description This series of 33 hands-on labs allows students to explore the new features of Microsoft SharePoint Server, Microsoft Windows, Microsoft Office, including Microsoft Office Groove,

More information

20762B: DEVELOPING SQL DATABASES

20762B: DEVELOPING SQL DATABASES ABOUT THIS COURSE This five day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL Server 2016 database. The course focuses on teaching individuals how to

More information

"Charting the Course... MOC A Developing Microsoft SQL Server 2012 Databases. Course Summary

Charting the Course... MOC A Developing Microsoft SQL Server 2012 Databases. Course Summary Course Summary Description This 5-day instructor-led course introduces SQL Server 2012 and describes logical table design, indexing and query plans. It also focuses on the creation of database objects

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing T-SQL and Data Management Systems 1. Chapter 2: SQL Server Fundamentals 23.

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing T-SQL and Data Management Systems 1. Chapter 2: SQL Server Fundamentals 23. Introduction Chapter 1: Introducing T-SQL and Data Management Systems 1 T-SQL Language 1 Programming Language or Query Language? 2 What s New in SQL Server 2008 3 Database Management Systems 4 SQL Server

More information

MIS NETWORK ADMINISTRATOR PROGRAM

MIS NETWORK ADMINISTRATOR PROGRAM NH107-7475 SQL: Querying and Administering SQL Server 2012-2014 136 Total Hours 97 Theory Hours 39 Lab Hours COURSE TITLE: SQL: Querying and Administering SQL Server 2012-2014 PREREQUISITE: Before attending

More information

Microsoft. [MS20762]: Developing SQL Databases

Microsoft. [MS20762]: Developing SQL Databases [MS20762]: Developing SQL Databases Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft SQL Server Delivery Method : Instructor-led (Classroom) Course Overview This five-day

More information

Programming Microsofr SQL Server 2005

Programming Microsofr SQL Server 2005 Microsoft Programming Microsofr SQL Server 2005 Andrew 1 Brust Stephen Forte Table o Acknowledgements Introduction Who This Book Is For How This Books is Organized System Requirements Using the Samples

More information

Developing SQL Databases

Developing SQL Databases Course 20762B: Developing SQL Databases Page 1 of 9 Developing SQL Databases Course 20762B: 4 days; Instructor-Led Introduction This four-day instructor-led course provides students with the knowledge

More information

Installing and Administering a Satellite Environment

Installing and Administering a Satellite Environment IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00 IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00

More information

COURSE 20462C: ADMINISTERING MICROSOFT SQL SERVER DATABASES

COURSE 20462C: ADMINISTERING MICROSOFT SQL SERVER DATABASES Page 1 of 11 ABOUT THIS COURSE This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database. The course focuses on teaching individuals

More information

"Charting the Course to Your Success!" MOC D Querying Microsoft SQL Server Course Summary

Charting the Course to Your Success! MOC D Querying Microsoft SQL Server Course Summary Course Summary Description This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2014. This course is the foundation

More information

Maintaining a Microsoft SQL Server 2005 Database Course 2780: Three days; Instructor-Led

Maintaining a Microsoft SQL Server 2005 Database Course 2780: Three days; Instructor-Led Maintaining a Microsoft SQL Server 2005 Database Course 2780: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with product knowledge and skills needed to

More information

Developing SQL Databases (762)

Developing SQL Databases (762) Developing SQL Databases (762) Design and implement database objects Design and implement a relational database schema Design tables and schemas based on business requirements, improve the design of tables

More information

MS-20462: Administering Microsoft SQL Server Databases

MS-20462: Administering Microsoft SQL Server Databases MS-20462: Administering Microsoft SQL Server Databases Description This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database.

More information

SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server Upcoming Dates. Course Description.

SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server Upcoming Dates. Course Description. SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server 2016 Learn how to design and Implement advanced SQL Server 2016 databases including working with tables, create optimized

More information

Sql Server Syllabus. Overview

Sql Server Syllabus. Overview Sql Server Syllabus Overview This SQL Server training teaches developers all the Transact-SQL skills they need to create database objects like Tables, Views, Stored procedures & Functions and triggers

More information

Exam Preparation Planning p. 11 Introduction p. 16 Developing a Security Strategy for Microsoft SQL Server 7 p. 17 SQL Server Authentication Methods

Exam Preparation Planning p. 11 Introduction p. 16 Developing a Security Strategy for Microsoft SQL Server 7 p. 17 SQL Server Authentication Methods Exam Preparation Planning p. 11 Introduction p. 16 Developing a Security Strategy for Microsoft SQL Server 7 p. 17 SQL Server Authentication Methods p. 18 Planning the Use of Windows NT Groups for Security

More information

"Charting the Course... MOC B Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course Summary

Charting the Course... MOC B Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course Summary Course Summary Description This five-day instructor-led course teaches students how to use the enhancements and new features that have been added to SQL Server and the Microsoft data platform since the

More information

6 SSIS Expressions SSIS Parameters Usage Control Flow Breakpoints Data Flow Data Viewers

6 SSIS Expressions SSIS Parameters Usage Control Flow Breakpoints Data Flow Data Viewers MSBI Training Program [SSIS SSAS SSRS] Duration : 60 Hrs SSIS 1 Introduction to SSIS SSIS Components Architecture & Installation SSIS Tools and DTS 2 SSIS Architecture Control Flow Tasks Data Flow Tasks

More information

ADMINISTERING MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE

ADMINISTERING MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE 70-462 ADMINISTERING MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE Administering Microsoft SQL Server 2012/2014 Databases (70-462) WWW.ANALYTICSEXAM.COM Contents Administering Microsoft

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

MCTS: Microsoft SQL Server 2008 Database Development

MCTS: Microsoft SQL Server 2008 Database Development MCTS: Microsoft SQL Server 2008 Database Development Course Description and Overview Overview SecureNinja s MCTS: Microsoft SQL Server 2008 Database Development training and certification boot camp in

More information

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours Course Outline SQL Server Analysis Services Course Content SSAS: What Is Microsoft BI? Core concept BI is the cube or UDM Example cube as seen using Excel

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

MSBI (SSIS, SSRS, SSAS) Course Content

MSBI (SSIS, SSRS, SSAS) Course Content SQL / TSQL Development 1. Basic database and design 2. What is DDL, DML 3. Data Types 4. What are Constraints & types 1. Unique 2. Check 3. NULL 4. Primary Key 5. Foreign Key 5. Default 1. Joins 2. Where

More information

Microsoft Developing SQL Databases

Microsoft Developing SQL Databases 1800 ULEARN (853 276) www.ddls.com.au Length 5 days Microsoft 20762 - Developing SQL Databases Price $4290.00 (inc GST) Version C Overview This five-day instructor-led course provides students with the

More information

COPYRIGHTED MATERIAL. Contents at a Glance

COPYRIGHTED MATERIAL. Contents at a Glance Contents at a Glance Introduction xxiii Chapter 1 Planning the Logical Architecture 1 Chapter 2 Designing the Physical Architecture 47 Chapter 3 Integrating SharePoint with the Network Infrastructure 127

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

There are a couple of reasons why SQL Server, the system that comprises the

There are a couple of reasons why SQL Server, the system that comprises the Introduction There are a couple of reasons why SQL Server, the system that comprises the Database Engine, Analysis Services, Reporting Services, Integration Services, and SQLXML, is the best choice for

More information

SQL Server Interview Questions

SQL Server Interview Questions This Download is from www.downloadmela.com. The main motto of this website is to provide free download links of ebooks,video tutorials,magazines,previous papers,interview related content. To download more

More information

"Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary

Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary Course Summary Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration contents foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration xix xxxii PART 1 GETTING STARTED WITH ORM...1 1 2 Understanding object/relational

More information

Index. Accent Sensitive (AS), 20 Aggregate functions, 286 Atomicity consistency isolation durability (ACID), 265

Index. Accent Sensitive (AS), 20 Aggregate functions, 286 Atomicity consistency isolation durability (ACID), 265 Index A Accent Sensitive (AS), 20 Aggregate functions, 286 Atomicity consistency isolation durability (ACID), 265 B Balanced (B)-Trees clustered index, 237 non-clustered index, 239 BULK INSERT statement

More information

MICROSOFT BUSINESS INTELLIGENCE

MICROSOFT BUSINESS INTELLIGENCE SSIS MICROSOFT BUSINESS INTELLIGENCE 1) Introduction to Integration Services Defining sql server integration services Exploring the need for migrating diverse Data the role of business intelligence (bi)

More information

Course Outline. ProTech Professional Technical Services, Inc. Veritas Backup Exec 20.1: Administration. Course Summary.

Course Outline. ProTech Professional Technical Services, Inc. Veritas Backup Exec 20.1: Administration. Course Summary. Course Summary Description The course is designed for the data protection professional tasked with architecting, implementing, backing up, and restoring critical data. This class covers how to back up

More information

COPYRIGHTED MATERIAL. Contents

COPYRIGHTED MATERIAL. Contents Contents Introduction... xxi Chapter 1 Installing Windows Small Business Server 2008...1 Windows Small Business Server 2008 Overview...1 What s Included in SBS 2008?...2 Limitations of Small Business Server

More information

POWER BI COURSE CONTENT

POWER BI COURSE CONTENT POWER BI COURSE CONTENT Why Power BI Training? Power BI is one of the newest additions to Office 365. In this course you will learn Power BI from beginner to advance. Power BI Course enables you to perform

More information

Number: Passing Score: 800 Time Limit: 120 min File Version:

Number: Passing Score: 800 Time Limit: 120 min File Version: 70-465 Number: 000-000 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 You need to recommend a backup process for an Online Transaction Processing

More information

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio Introduction XXV Part I: C# Fundamentals 1 Chapter 1: The.NET Framework 3 What s the.net Framework? 3 Common Language Runtime 3.NET Framework Class Library 4 Assemblies and the Microsoft Intermediate Language

More information

CHAPTER 1: WHAT S NEW IN SHAREPOINT

CHAPTER 1: WHAT S NEW IN SHAREPOINT INTRODUCTION xxix CHAPTER 1: WHAT S NEW IN SHAREPOINT 2013 1 Installation Changes 2 System Requirements 2 The Installation Process 2 Upgrading from SharePoint 2010 3 Patching 3 Central Administration 4

More information

Beginning ASP.NET. 4.5 in C# Matthew MacDonald

Beginning ASP.NET. 4.5 in C# Matthew MacDonald Beginning ASP.NET 4.5 in C# Matthew MacDonald Contents About the Author About the Technical Reviewers Acknowledgments Introduction xxvii xxix xxxi xxxiii UPart 1: Introducing.NET. 1 & Chapter 1: The Big

More information

SAMPLE. Preface xi 1 Introducting Microsoft Analysis Services 1

SAMPLE. Preface xi 1 Introducting Microsoft Analysis Services 1 contents Preface xi 1 Introducting Microsoft Analysis Services 1 1.1 What is Analysis Services 2005? 1 Introducing OLAP 2 Introducing Data Mining 4 Overview of SSAS 5 SSAS and Microsoft Business Intelligence

More information

object/relational persistence What is persistence? 5

object/relational persistence What is persistence? 5 contents foreword to the revised edition xix foreword to the first edition xxi preface to the revised edition xxiii preface to the first edition xxv acknowledgments xxviii about this book xxix about the

More information

Pro JPA 2. Mastering the Java Persistence API. Apress* Mike Keith and Merrick Schnicariol

Pro JPA 2. Mastering the Java Persistence API. Apress* Mike Keith and Merrick Schnicariol Pro JPA 2 Mastering the Java Persistence API Mike Keith and Merrick Schnicariol Apress* Gootents at a Glance g V Contents... ; v Foreword _ ^ Afooyt the Author XXj About the Technical Reviewer.. *....

More information

20761 Querying Data with Transact SQL

20761 Querying Data with Transact SQL Course Overview The main purpose of this course is to give students a good understanding of the Transact-SQL language which is used by all SQL Server-related disciplines; namely, Database Administration,

More information

SQL Server and MSBI Course Content SIDDHARTH PATRA

SQL Server and MSBI Course Content SIDDHARTH PATRA SQL Server and MSBI Course Content BY SIDDHARTH PATRA 0 Introduction to MSBI and Data warehouse concepts 1. Definition of Data Warehouse 2. Why Data Warehouse 3. DWH Architecture 4. Star and Snowflake

More information

6234A - Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services

6234A - Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services 6234A - Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services Course Number: 6234A Course Length: 3 Days Course Overview This instructor-led course teaches students how to implement

More information

Implementing Data Models and Reports with Microsoft SQL Server (466)

Implementing Data Models and Reports with Microsoft SQL Server (466) Implementing Data Models and Reports with Microsoft SQL Server (466) Build an analysis services multidimensional database Design dimensions and measures Given a requirement, identify the dimension/measure

More information

Course Prerequisites: This course requires that you meet the following prerequisites:

Course Prerequisites: This course requires that you meet the following prerequisites: Developing MS SQL Server Databases This five-day instructor-led course introduces SQL Server 2014 and describes logical table design, indexing and query plans. It also focusses on the creation of database

More information

Oracle Exadata Recipes

Oracle Exadata Recipes Oracle Exadata Recipes A Problem-Solution Approach John Clarke Apress- Contents About the Author About the Technical Reviewer Acknowledgments Introduction xxxiii xxxv xxxvii xxxix Part 1: Exadata Architecture

More information

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs Module Title Duration : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs : 4 days Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize

More information

2072 : Administering a Microsoft SQL Server 2000 Database

2072 : Administering a Microsoft SQL Server 2000 Database 2072 : Administering a Microsoft SQL Server 2000 Database Introduction This course provides students with the knowledge and skills required to install, configure, administer, and troubleshoot the client-server

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Course 10775A: Administering Microsoft SQL Server 2012 Databases Course Details Course Outline Module 1: Introduction to SQL Server 2012 and its Toolset This module introduces the entire SQL Server platform

More information

Course Outline. Administering Microsoft SQL Server 2012 Databases (Course & Lab) ( Add-On )

Course Outline. Administering Microsoft SQL Server 2012 Databases (Course & Lab)  ( Add-On ) Course Outline Administering Microsoft SQL Server 2012 Databases (Course & Lab) 07 Jul 2018 ( Add-On ) Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number

More information

Administering Microsoft SQL Server 2012/2014 Databases

Administering Microsoft SQL Server 2012/2014 Databases Page 1 of 10 Overview This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database. The course focuses on teaching individuals how

More information

"Charting the Course... Oracle18c SQL (5 Day) Course Summary

Charting the Course... Oracle18c SQL (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to SQL including the use of both SQL Developer and SQL*Plus. This coverage is appropriate for users of Oracle11g and higher.

More information

6231B - Version: 1. Maintaining a Microsoft SQL Server 2008 R2 Database

6231B - Version: 1. Maintaining a Microsoft SQL Server 2008 R2 Database 6231B - Version: 1 Maintaining a Microsoft SQL Server 2008 R2 Database Maintaining a Microsoft SQL Server 2008 R2 Database 6231B - Version: 1 5 days Course Description: This five-day instructor-led course

More information

"Charting the Course... MOC C: Administering an SQL Database Infrastructure. Course Summary

Charting the Course... MOC C: Administering an SQL Database Infrastructure. Course Summary Description Course Summary This five-day instructor-led course provides students who administer and maintain SQL databases with the knowledge and skills to administer a SQL server database infrastructure.

More information

CHAPTER 1: INTRODUCING C# 3

CHAPTER 1: INTRODUCING C# 3 INTRODUCTION xix PART I: THE OOP LANGUAGE CHAPTER 1: INTRODUCING C# 3 What Is the.net Framework? 4 What s in the.net Framework? 4 Writing Applications Using the.net Framework 5 What Is C#? 8 Applications

More information

Deccansoft Software Services. SSIS Syllabus

Deccansoft Software Services. SSIS Syllabus Overview: SQL Server Integration Services (SSIS) is a component of Microsoft SQL Server database software which can be used to perform a broad range of data migration, data integration and Data Consolidation

More information

SQL Server SQL Server 2008 and 2008 R2. SQL Server SQL Server 2014 Currently supporting all versions July 9, 2019 July 9, 2024

SQL Server SQL Server 2008 and 2008 R2. SQL Server SQL Server 2014 Currently supporting all versions July 9, 2019 July 9, 2024 Current support level End Mainstream End Extended SQL Server 2005 SQL Server 2008 and 2008 R2 SQL Server 2012 SQL Server 2005 SP4 is in extended support, which ends on April 12, 2016 SQL Server 2008 and

More information

"Charting the Course... Java Programming Language. Course Summary

Charting the Course... Java Programming Language. Course Summary Course Summary Description This course emphasizes becoming productive quickly as a Java application developer. This course quickly covers the Java language syntax and then moves into the object-oriented

More information

Administering Microsoft SQL Server Databases

Administering Microsoft SQL Server Databases Administering Microsoft SQL Server Databases 20462D; 5 days, Instructor-led Course Description This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft

More information

dbi services Antonio De Santo Stéphane Haby Migration to SQL Server 2012 Consultant Consultant dbi services 1

dbi services Antonio De Santo Stéphane Haby Migration to SQL Server 2012 Consultant Consultant dbi services 1 dbi services Migration to SQL Server 2012 Antonio De Santo Consultant Stéphane Haby Consultant 1 www.dbi-services.com 26.04.2012 dbi services Migration to SQL Server 2012 Agenda i. Introduction ii. Why?

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Administering Microsoft SQL Server 2012 Databases Course 10775A 5 Day Instructor-led, Hands on Course Information This five-day instructor-led course provides students with the knowledge and skills to

More information

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p.

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. Acknowledgments p. xxiii Introduction p. xxv Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. 8 Transact-SQL p. 9 SQL

More information

Basic knowledge of the Microsoft Windows operating system and its core functionality.

Basic knowledge of the Microsoft Windows operating system and its core functionality. Administering Microsoft SQL Server Databases Course Description: This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database. The

More information

Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions

Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions 70-466 Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions Table of Contents Introduction to 70-466 Exam on Implementing Data Models and Reports with Microsoft

More information

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix PGJC4_JSE8_OCA.book Page ix Monday, June 20, 2016 2:31 PM Contents Figures Tables Examples Foreword Preface xix xxi xxiii xxvii xxix 1 Basics of Java Programming 1 1.1 Introduction 2 1.2 Classes 2 Declaring

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

20461: Querying Microsoft SQL Server 2014 Databases

20461: Querying Microsoft SQL Server 2014 Databases Course Outline 20461: Querying Microsoft SQL Server 2014 Databases Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions,

More information

CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS:

CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS: chakraitsolutions.com http://chakraitsolutions.com/msbi-online-training/ MSBI ONLINE TRAINING CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS: Title Duration Timing Method Software Study

More information

[MS20464]: Developing Microsoft SQL Server 2014 Databases

[MS20464]: Developing Microsoft SQL Server 2014 Databases [MS20464]: Developing Microsoft SQL Server 2014 Databases Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : SQL Server Delivery Method : Instructor-led (Classroom) Course Overview

More information