SlideShare a Scribd company logo
Getting Started
with SQL Server
2008
1
New Features of SQL Server 2008 / Session 1 2
Objectives

Describe the data platform vision.

Describe the new features in SQL Server 2008.

Explain the dynamic development in SQL Server 2008.

Describe the pervasive insight feature in SQL Server
2008.

Describe Analysis Services of SQL Server 2008.

Describe Integration Services of SQL Server 2008.
New Features of SQL Server 2008 / Session 1 3
Objectives

Describe Reporting Services of SQL Server 2008.

Explain IntelliSense in SQL Server 2008.

Explain Multi-Server query feature.

Explain the concept of Query Editor regions.

State the new features of Object Explorer.

Describe Activity Monitor.
New Features of SQL Server 2008 / Session 1 4
Introduction

Data platform vision in SQL Server 2008 will help
organizations to create next generation data
driven applications.

Key areas supporting the data platform vision:

Mission-critical enterprise data platform

Dynamic development

Relational data

Business intelligence

Enhancements in SQL Server Management
Studio improve performance and help to
develop applications faster.
New Features of SQL Server 2008 / Session 1 5
Data Platform Vision 1-3

Data platform is:

Secure

Manageable

Reliable for creating critical
applications
New Features of SQL Server 2008 / Session 1 6
Data Platform Vision 2-3
Data Platform Vision
New Features of SQL Server 2008 / Session 1 7
Data Platform Vision 3-3
SQL Server 2008 targets four major areas:
Enterprise Data Platform
Dynamic Development
Pervasive Business Insight
Beyond Relational Data
New Features of SQL Server 2008 / Session 1 8
Location Intelligence

Spatial data capabilities help in building location-
aware applications, such as applications for
Global Positioning System (GPS) devices.
New Features of SQL Server 2008 / Session 1 9
Spatial Data Types
geometry geography
Used to create objects representing a
flat plane with x and y coordinates for
points traced on edges
of polygons, lines, and so forth
Uses latitude and longitude angles to
find the points on the earth

SQL Server 2008 introduces spatial data types,
using which developers can easily develop
location-aware applications in SQL.
New Features of SQL Server 2008 / Session 1 10
Support for any type of data 1-3

SQL Server 2008 is capable of handling and
storing data from diverse sources
SQL Server 2008
Data Source 1
Data Source 4Data Source 2
Data Source 3XML
ADO.NET
Files
Collections
Spatial Data
. . .
New Features of SQL Server 2008 / Session 1 11
Support for any type of data 2-3

FILESTREAM data

Used for storing Binary Large Objects (BLOBs) in the
form of files

Integrated Full-Text Search

Helps in faster searching of documents and textual
data

Provides advantages over alternatives such as LIKE
predicate with wildcards or custom-built solutions
New Features of SQL Server 2008 / Session 1 12
Support for any type of data 3-3

Large User-Defined Types (UDTs)

Used for storing spatial data like geometry and
geography objects

If
SqlUserDefinedTypeAttribute.MaxByteS
ize is set to -1, the UDT can store data upto 2 GB,
otherwise cannot exceed the size specified in
MaxByteSize property.
New Features of SQL Server 2008 / Session 1 13
Occasionally Connected Systems

SQL Server and .NET Framework 3.5 help to
develop cache-based and notification-based
applications.

Databases are accessible in mobile applications
and then synchronized seamlessly with the
server whenever reconnected.
New Features of SQL Server 2008 / Session 1 14
Pervasive Insight

Enhancements to SQL Server Analysis Services,
Integration Services, Reporting Services, and data
warehousing.

SQL Server 2008 has driven business intelligence (BI) in
organizations by providing enhancements in data
warehousing such as:

Improvements in SQL Server Integration Services (SSIS)

Block Computations

Scalable Reporting

Internet Report Deployment

Manage the Reporting Infrastructure
New Features of SQL Server 2008 / Session 1 15
Analysis Services

Improved multidimensional query performance

Enhancements contribute to improved data analysis,
Online Analytical Processing (OLAP)

Multidimensional expression queries - used to query
multidimensional objects and return multidimensional
cellsets

Enhancements in SQL Server Analysis Services:

Attribute Relationship Design

MOLAP Write back

Block Computation

Star Join Query Optimization
New Features of SQL Server 2008 / Session 1 16
Integration Services

Plays an important role in Extract, Transform, and Load
(ETL) operations

Consists of 28 control flow tasks and 11 maintenance
plans in SQL Server 2008

Some of these tasks are:

Container Tasks

Data Preparation Tasks

SQL Tasks

Maintenance Tasks
New Features of SQL Server 2008 / Session 1 17
Reporting Services

Enhancements to improve visualization and delivery of
data, simplify deployment and configuration of reports

Some enhanced features are:

Managed Reporting

Ad-Hoc Reporting

Report Designer

Report Builder

Compelling Reports
New Features of SQL Server 2008 / Session 1 18
Enhancements in Management Studio

The new IntelliSense feature of SQL Server 2008
is comprised of following characteristics:

Speeds up application development by providing
syntax and online references in the code

Monitors code typed in the code editor region and
prompts with the syntax help

Saves time for the developer because it provides
syntax help, word completion, and so forth

Can be activated or deactivated from the menu by
selecting Query -> IntelliSense option
New Features of SQL Server 2008 / Session 1 19
Multi-Server Query

Enables to query multiple servers from one query
window

Procedure:

Each server must be registered in the SQL Server
Management Studio local servers group

After all servers are registered, right-click on the group and
choose new query option

When multiple servers are connected, the confirmation is
displayed at the bottom of window

There can be a mixture of SQL Server 2000, SQL
Server 2005, and SQL Server 2008 within a local
servers group
New Features of SQL Server 2008 / Session 1 20
Query Editor Regions

Help to simplify working with large amount of Transact-SQL code

Is applicable only to multi-line statements

Is new in SQL Server Management Studio

Can be collapsed as well as expanded by clicking the ‘-’ or ‘+’ sign
besides them

Regions defined by following hierarchy:

From first GO command to next GO command

Statements between BEGIN – END, BEGIN TRY – END TRY, BEGIN
CATCH – END CATCH

Multi-line statements
New Features of SQL Server 2008 / Session 1 21
Advanced Object Explorer

Object Explorer Details option:

Enables to view several details about
database and server objects

Presents information about all the objects in
the server in a tabular format

Sorting, filtering can be done on the columns
New Features of SQL Server 2008 / Session 1 22
Search Feature

New feature introduced in Object Explorer Details
window

Enables you to search server and database objects

Can search for different types of objects, such as tables,
stored procedures, and so forth

The searched result is displayed in the same window as
Object Explorer Details

Everything displayed in the Object Explorer details screen
can be copied and pasted to Excel without any
formatting issue
New Features of SQL Server 2008 / Session 1 23
Activity Monitor

Feature that gives information about SQL Server
processes

Many changes implemented in Activity Monitor
of SQL Server 2008

Represented as a tabbed structure
New Features of SQL Server 2008 / Session 1 24
Overview

Is the first tab in the Activity Monitor

Is expanded by default

Comprises of a pane showing the graphical
display of instance information such as
processor time, waiting tasks, database I/O, and
batch requests
New Features of SQL Server 2008 / Session 1 25
Processes

Displays information for active user connections

Information displayed can be rearranged, sorted,
or filtered
New Features of SQL Server 2008 / Session 1 26
Resource Waits

Displays information about waits for resources
for the SQL Server instance, including wait time
and wait category
New Features of SQL Server 2008 / Session 1 27
Data File I/O

Displays I/O activity for relational database files
within the Database Engine

Includes both the system and user databases
New Features of SQL Server 2008 / Session 1 28
Resource Expensive Query

Shows information about the most expensive
queries over the last 30 seconds
New Features of SQL Server 2008 / Session 1 29
Summary

SQL Server 2008 includes several new features and
architectural enhancements.

Enterprise data platform, support for beyond relational
data, and changes in SQL Server Analysis Services are
some of the new features and architectural
enhancements.

Enhancements have also been made to SQL Server
Integration Services and SQL Server Reporting Services.

The enhancements in SQL Server 2008 Management
Studio include IntelliSense support, Query Editor regions,
Multi-Server query, Object Explorer Details, and Activity
Monitor.
Ad

More Related Content

What's hot (20)

Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
Eduardo Castro
 
Ssis 2008
Ssis 2008Ssis 2008
Ssis 2008
maha2886
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
Yubaraj Khanal
 
Balamurugan msbi cv
Balamurugan msbi cvBalamurugan msbi cv
Balamurugan msbi cv
bala murugan
 
SQL Server Developer 70-433
SQL Server Developer 70-433SQL Server Developer 70-433
SQL Server Developer 70-433
jasonyousef
 
Shashi.Kiran_CV
Shashi.Kiran_CVShashi.Kiran_CV
Shashi.Kiran_CV
Shashi Kiran
 
Sql server 2008 r2 performance and scale
Sql server 2008 r2 performance and scaleSql server 2008 r2 performance and scale
Sql server 2008 r2 performance and scale
Klaudiia Jacome
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
pleeloy
 
Sql Server 2008 Features
Sql Server 2008 FeaturesSql Server 2008 Features
Sql Server 2008 Features
Parul Sharma
 
SQL Server Reporting Services
SQL Server Reporting ServicesSQL Server Reporting Services
SQL Server Reporting Services
Ahmed Elbaz
 
Ax
AxAx
Ax
csrikanthc
 
SQL Server 2008 Highlights
SQL Server 2008 HighlightsSQL Server 2008 Highlights
SQL Server 2008 Highlights
Intergen
 
Session 2: SQL Server 2012 with Christian Malbeuf
Session 2: SQL Server 2012 with Christian MalbeufSession 2: SQL Server 2012 with Christian Malbeuf
Session 2: SQL Server 2012 with Christian Malbeuf
CTE Solutions Inc.
 
SQL Server Integration Services – Enterprise Manageability
SQL Server Integration Services – Enterprise ManageabilitySQL Server Integration Services – Enterprise Manageability
SQL Server Integration Services – Enterprise Manageability
Dan English
 
Presentation 1 - SSRS (1)
Presentation 1 - SSRS (1)Presentation 1 - SSRS (1)
Presentation 1 - SSRS (1)
Anurag Rana
 
SQL Reporting Services
SQL Reporting ServicesSQL Reporting Services
SQL Reporting Services
neha mittal
 
MSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting ServicesMSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting Services
Thejaswi shasthri
 
MS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data miningMS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data mining
DataminingTools Inc
 
Obiee real solutions
Obiee real solutionsObiee real solutions
Obiee real solutions
Ranjith Dev
 
Whats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwWhats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 Cw
Eduardo Castro
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
Eduardo Castro
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
Yubaraj Khanal
 
Balamurugan msbi cv
Balamurugan msbi cvBalamurugan msbi cv
Balamurugan msbi cv
bala murugan
 
SQL Server Developer 70-433
SQL Server Developer 70-433SQL Server Developer 70-433
SQL Server Developer 70-433
jasonyousef
 
Sql server 2008 r2 performance and scale
Sql server 2008 r2 performance and scaleSql server 2008 r2 performance and scale
Sql server 2008 r2 performance and scale
Klaudiia Jacome
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
pleeloy
 
Sql Server 2008 Features
Sql Server 2008 FeaturesSql Server 2008 Features
Sql Server 2008 Features
Parul Sharma
 
SQL Server Reporting Services
SQL Server Reporting ServicesSQL Server Reporting Services
SQL Server Reporting Services
Ahmed Elbaz
 
SQL Server 2008 Highlights
SQL Server 2008 HighlightsSQL Server 2008 Highlights
SQL Server 2008 Highlights
Intergen
 
Session 2: SQL Server 2012 with Christian Malbeuf
Session 2: SQL Server 2012 with Christian MalbeufSession 2: SQL Server 2012 with Christian Malbeuf
Session 2: SQL Server 2012 with Christian Malbeuf
CTE Solutions Inc.
 
SQL Server Integration Services – Enterprise Manageability
SQL Server Integration Services – Enterprise ManageabilitySQL Server Integration Services – Enterprise Manageability
SQL Server Integration Services – Enterprise Manageability
Dan English
 
Presentation 1 - SSRS (1)
Presentation 1 - SSRS (1)Presentation 1 - SSRS (1)
Presentation 1 - SSRS (1)
Anurag Rana
 
SQL Reporting Services
SQL Reporting ServicesSQL Reporting Services
SQL Reporting Services
neha mittal
 
MSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting ServicesMSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting Services
Thejaswi shasthri
 
MS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data miningMS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data mining
DataminingTools Inc
 
Obiee real solutions
Obiee real solutionsObiee real solutions
Obiee real solutions
Ranjith Dev
 
Whats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwWhats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 Cw
Eduardo Castro
 

Similar to Sql server ___________session 1(sql 2008) (20)

An introduction to new data warehouse scalability features in sql server 2008
An introduction to new data warehouse scalability features in sql server 2008An introduction to new data warehouse scalability features in sql server 2008
An introduction to new data warehouse scalability features in sql server 2008
Klaudiia Jacome
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
ukdpe
 
New features of sql server 2005
New features of sql server 2005New features of sql server 2005
New features of sql server 2005
Govind Raj
 
Higher Productivity With Ase
Higher Productivity With AseHigher Productivity With Ase
Higher Productivity With Ase
sparkwan
 
BI in SQL Server 2008 for Architects
BI in SQL Server 2008 for ArchitectsBI in SQL Server 2008 for Architects
BI in SQL Server 2008 for Architects
llangit
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2
Eduardo Castro
 
Material modulo01 asf6501(6419-a_01)
Material   modulo01 asf6501(6419-a_01)Material   modulo01 asf6501(6419-a_01)
Material modulo01 asf6501(6419-a_01)
JSantanderQ
 
Bi2008 Plus Cloud Preview
Bi2008 Plus Cloud PreviewBi2008 Plus Cloud Preview
Bi2008 Plus Cloud Preview
llangit
 
It ready dw_day3_rev00
It ready dw_day3_rev00It ready dw_day3_rev00
It ready dw_day3_rev00
Siwawong Wuttipongprasert
 
Sql Server 2008 Enhancements
Sql Server 2008 EnhancementsSql Server 2008 Enhancements
Sql Server 2008 Enhancements
kobico10
 
Sql server club - performance management methodologies and enhancements in sq...
Sql server club - performance management methodologies and enhancements in sq...Sql server club - performance management methodologies and enhancements in sq...
Sql server club - performance management methodologies and enhancements in sq...
Charley Hanania
 
Become BI Architect with 1KEY Agile BI Suite
Become BI Architect with 1KEY Agile BI SuiteBecome BI Architect with 1KEY Agile BI Suite
Become BI Architect with 1KEY Agile BI Suite
Dhiren Gala
 
BI2008newFeatures
BI2008newFeaturesBI2008newFeatures
BI2008newFeatures
llangit
 
Reports with SQL Server Reporting Services
Reports with SQL Server Reporting ServicesReports with SQL Server Reporting Services
Reports with SQL Server Reporting Services
Peter Gfader
 
Software architecture to analyze licensing needs for pcms- pegasus cargo ma...
Software architecture   to analyze licensing needs for pcms- pegasus cargo ma...Software architecture   to analyze licensing needs for pcms- pegasus cargo ma...
Software architecture to analyze licensing needs for pcms- pegasus cargo ma...
Shahzad
 
Sql Server 2008 Product Overview
Sql Server 2008 Product OverviewSql Server 2008 Product Overview
Sql Server 2008 Product Overview
Ismail Muhammad
 
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions PresentationSQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
Microsoft Private Cloud
 
Microsoft SQL Server - Developing Rich Reporting Solutions Presentation
Microsoft SQL Server - Developing Rich Reporting Solutions PresentationMicrosoft SQL Server - Developing Rich Reporting Solutions Presentation
Microsoft SQL Server - Developing Rich Reporting Solutions Presentation
Microsoft Private Cloud
 
Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000
ukdpe
 
Auditing Data Access in SQL Server
Auditing Data Access in SQL ServerAuditing Data Access in SQL Server
Auditing Data Access in SQL Server
Antonios Chatzipavlis
 
An introduction to new data warehouse scalability features in sql server 2008
An introduction to new data warehouse scalability features in sql server 2008An introduction to new data warehouse scalability features in sql server 2008
An introduction to new data warehouse scalability features in sql server 2008
Klaudiia Jacome
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
ukdpe
 
New features of sql server 2005
New features of sql server 2005New features of sql server 2005
New features of sql server 2005
Govind Raj
 
Higher Productivity With Ase
Higher Productivity With AseHigher Productivity With Ase
Higher Productivity With Ase
sparkwan
 
BI in SQL Server 2008 for Architects
BI in SQL Server 2008 for ArchitectsBI in SQL Server 2008 for Architects
BI in SQL Server 2008 for Architects
llangit
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2
Eduardo Castro
 
Material modulo01 asf6501(6419-a_01)
Material   modulo01 asf6501(6419-a_01)Material   modulo01 asf6501(6419-a_01)
Material modulo01 asf6501(6419-a_01)
JSantanderQ
 
Bi2008 Plus Cloud Preview
Bi2008 Plus Cloud PreviewBi2008 Plus Cloud Preview
Bi2008 Plus Cloud Preview
llangit
 
Sql Server 2008 Enhancements
Sql Server 2008 EnhancementsSql Server 2008 Enhancements
Sql Server 2008 Enhancements
kobico10
 
Sql server club - performance management methodologies and enhancements in sq...
Sql server club - performance management methodologies and enhancements in sq...Sql server club - performance management methodologies and enhancements in sq...
Sql server club - performance management methodologies and enhancements in sq...
Charley Hanania
 
Become BI Architect with 1KEY Agile BI Suite
Become BI Architect with 1KEY Agile BI SuiteBecome BI Architect with 1KEY Agile BI Suite
Become BI Architect with 1KEY Agile BI Suite
Dhiren Gala
 
BI2008newFeatures
BI2008newFeaturesBI2008newFeatures
BI2008newFeatures
llangit
 
Reports with SQL Server Reporting Services
Reports with SQL Server Reporting ServicesReports with SQL Server Reporting Services
Reports with SQL Server Reporting Services
Peter Gfader
 
Software architecture to analyze licensing needs for pcms- pegasus cargo ma...
Software architecture   to analyze licensing needs for pcms- pegasus cargo ma...Software architecture   to analyze licensing needs for pcms- pegasus cargo ma...
Software architecture to analyze licensing needs for pcms- pegasus cargo ma...
Shahzad
 
Sql Server 2008 Product Overview
Sql Server 2008 Product OverviewSql Server 2008 Product Overview
Sql Server 2008 Product Overview
Ismail Muhammad
 
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions PresentationSQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
SQL Server 2008 R2 - Developing Rich Reporting Solutions Presentation
Microsoft Private Cloud
 
Microsoft SQL Server - Developing Rich Reporting Solutions Presentation
Microsoft SQL Server - Developing Rich Reporting Solutions PresentationMicrosoft SQL Server - Developing Rich Reporting Solutions Presentation
Microsoft SQL Server - Developing Rich Reporting Solutions Presentation
Microsoft Private Cloud
 
Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000
ukdpe
 
Ad

More from Ehtisham Ali (17)

Android tutorial
Android tutorialAndroid tutorial
Android tutorial
Ehtisham Ali
 
Sql server ___________session_20(ddl triggers)
Sql server  ___________session_20(ddl triggers)Sql server  ___________session_20(ddl triggers)
Sql server ___________session_20(ddl triggers)
Ehtisham Ali
 
Sql server ___________session3-normailzation
Sql server  ___________session3-normailzationSql server  ___________session3-normailzation
Sql server ___________session3-normailzation
Ehtisham Ali
 
Sql server ___________session2-data_modeling
Sql server  ___________session2-data_modelingSql server  ___________session2-data_modeling
Sql server ___________session2-data_modeling
Ehtisham Ali
 
Sql server ___________session_19(triggers)
Sql server  ___________session_19(triggers)Sql server  ___________session_19(triggers)
Sql server ___________session_19(triggers)
Ehtisham Ali
 
Sql server ___________session_18(stored procedures)
Sql server  ___________session_18(stored procedures)Sql server  ___________session_18(stored procedures)
Sql server ___________session_18(stored procedures)
Ehtisham Ali
 
Sql server ___________session_17(indexes)
Sql server  ___________session_17(indexes)Sql server  ___________session_17(indexes)
Sql server ___________session_17(indexes)
Ehtisham Ali
 
Sql server ___________session_16(views)
Sql server  ___________session_16(views)Sql server  ___________session_16(views)
Sql server ___________session_16(views)
Ehtisham Ali
 
Sql server ___________session_15(data integrity)
Sql server  ___________session_15(data integrity)Sql server  ___________session_15(data integrity)
Sql server ___________session_15(data integrity)
Ehtisham Ali
 
Sql server ___________session_11-12(joins)
Sql server  ___________session_11-12(joins)Sql server  ___________session_11-12(joins)
Sql server ___________session_11-12(joins)
Ehtisham Ali
 
Sql server ___________session_10(group by clause)
Sql server  ___________session_10(group by clause)Sql server  ___________session_10(group by clause)
Sql server ___________session_10(group by clause)
Ehtisham Ali
 
Sql server ___________session_1-intro
Sql server  ___________session_1-introSql server  ___________session_1-intro
Sql server ___________session_1-intro
Ehtisham Ali
 
Sql server ___________session 3(sql 2008)
Sql server  ___________session 3(sql 2008)Sql server  ___________session 3(sql 2008)
Sql server ___________session 3(sql 2008)
Ehtisham Ali
 
Sql server ___________session 2(sql 2008)
Sql server  ___________session 2(sql 2008)Sql server  ___________session 2(sql 2008)
Sql server ___________session 2(sql 2008)
Ehtisham Ali
 
Sql server ___________data type of sql server
Sql server  ___________data type of sql serverSql server  ___________data type of sql server
Sql server ___________data type of sql server
Ehtisham Ali
 
Sql server ___________data control language
Sql server  ___________data control languageSql server  ___________data control language
Sql server ___________data control language
Ehtisham Ali
 
Sql server ___________ (advance sql)
Sql server  ___________  (advance sql)Sql server  ___________  (advance sql)
Sql server ___________ (advance sql)
Ehtisham Ali
 
Sql server ___________session_20(ddl triggers)
Sql server  ___________session_20(ddl triggers)Sql server  ___________session_20(ddl triggers)
Sql server ___________session_20(ddl triggers)
Ehtisham Ali
 
Sql server ___________session3-normailzation
Sql server  ___________session3-normailzationSql server  ___________session3-normailzation
Sql server ___________session3-normailzation
Ehtisham Ali
 
Sql server ___________session2-data_modeling
Sql server  ___________session2-data_modelingSql server  ___________session2-data_modeling
Sql server ___________session2-data_modeling
Ehtisham Ali
 
Sql server ___________session_19(triggers)
Sql server  ___________session_19(triggers)Sql server  ___________session_19(triggers)
Sql server ___________session_19(triggers)
Ehtisham Ali
 
Sql server ___________session_18(stored procedures)
Sql server  ___________session_18(stored procedures)Sql server  ___________session_18(stored procedures)
Sql server ___________session_18(stored procedures)
Ehtisham Ali
 
Sql server ___________session_17(indexes)
Sql server  ___________session_17(indexes)Sql server  ___________session_17(indexes)
Sql server ___________session_17(indexes)
Ehtisham Ali
 
Sql server ___________session_16(views)
Sql server  ___________session_16(views)Sql server  ___________session_16(views)
Sql server ___________session_16(views)
Ehtisham Ali
 
Sql server ___________session_15(data integrity)
Sql server  ___________session_15(data integrity)Sql server  ___________session_15(data integrity)
Sql server ___________session_15(data integrity)
Ehtisham Ali
 
Sql server ___________session_11-12(joins)
Sql server  ___________session_11-12(joins)Sql server  ___________session_11-12(joins)
Sql server ___________session_11-12(joins)
Ehtisham Ali
 
Sql server ___________session_10(group by clause)
Sql server  ___________session_10(group by clause)Sql server  ___________session_10(group by clause)
Sql server ___________session_10(group by clause)
Ehtisham Ali
 
Sql server ___________session_1-intro
Sql server  ___________session_1-introSql server  ___________session_1-intro
Sql server ___________session_1-intro
Ehtisham Ali
 
Sql server ___________session 3(sql 2008)
Sql server  ___________session 3(sql 2008)Sql server  ___________session 3(sql 2008)
Sql server ___________session 3(sql 2008)
Ehtisham Ali
 
Sql server ___________session 2(sql 2008)
Sql server  ___________session 2(sql 2008)Sql server  ___________session 2(sql 2008)
Sql server ___________session 2(sql 2008)
Ehtisham Ali
 
Sql server ___________data type of sql server
Sql server  ___________data type of sql serverSql server  ___________data type of sql server
Sql server ___________data type of sql server
Ehtisham Ali
 
Sql server ___________data control language
Sql server  ___________data control languageSql server  ___________data control language
Sql server ___________data control language
Ehtisham Ali
 
Sql server ___________ (advance sql)
Sql server  ___________  (advance sql)Sql server  ___________  (advance sql)
Sql server ___________ (advance sql)
Ehtisham Ali
 
Ad

Recently uploaded (20)

COPA Apprentice exam Questions and answers PDF
COPA Apprentice exam Questions and answers PDFCOPA Apprentice exam Questions and answers PDF
COPA Apprentice exam Questions and answers PDF
SONU HEETSON
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
"Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho...
"Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho..."Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho...
"Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho...
ruslana1975
 
How to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo SlidesHow to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo Slides
Celine George
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-14-2025 .pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 5-14-2025  .pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 5-14-2025  .pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-14-2025 .pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Cyber security COPA ITI MCQ Top Questions
Cyber security COPA ITI MCQ Top QuestionsCyber security COPA ITI MCQ Top Questions
Cyber security COPA ITI MCQ Top Questions
SONU HEETSON
 
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon DolabaniHistory Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
fruinkamel7m
 
How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18
Celine George
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
Dr. Nasir Mustafa
 
Rebuilding the library community in a post-Twitter world
Rebuilding the library community in a post-Twitter worldRebuilding the library community in a post-Twitter world
Rebuilding the library community in a post-Twitter world
Ned Potter
 
Origin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theoriesOrigin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theories
PrachiSontakke5
 
The role of wall art in interior designing
The role of wall art in interior designingThe role of wall art in interior designing
The role of wall art in interior designing
meghaark2110
 
CNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscessCNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscess
Mohamed Rizk Khodair
 
spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)
Mohamed Rizk Khodair
 
How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18
Celine George
 
puzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tensepuzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tense
OlgaLeonorTorresSnch
 
Unit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptx
Unit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptxUnit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptx
Unit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptx
Mayuri Chavan
 
How to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 PurchaseHow to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 Purchase
Celine George
 
COPA Apprentice exam Questions and answers PDF
COPA Apprentice exam Questions and answers PDFCOPA Apprentice exam Questions and answers PDF
COPA Apprentice exam Questions and answers PDF
SONU HEETSON
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
"Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho...
"Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho..."Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho...
"Heraldry Detective Project"- Coats of Arms and Mottos of "Ivanhoe" in Ivanho...
ruslana1975
 
How to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo SlidesHow to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo Slides
Celine George
 
Cyber security COPA ITI MCQ Top Questions
Cyber security COPA ITI MCQ Top QuestionsCyber security COPA ITI MCQ Top Questions
Cyber security COPA ITI MCQ Top Questions
SONU HEETSON
 
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon DolabaniHistory Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
fruinkamel7m
 
How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18
Celine George
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
Dr. Nasir Mustafa
 
Rebuilding the library community in a post-Twitter world
Rebuilding the library community in a post-Twitter worldRebuilding the library community in a post-Twitter world
Rebuilding the library community in a post-Twitter world
Ned Potter
 
Origin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theoriesOrigin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theories
PrachiSontakke5
 
The role of wall art in interior designing
The role of wall art in interior designingThe role of wall art in interior designing
The role of wall art in interior designing
meghaark2110
 
CNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscessCNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscess
Mohamed Rizk Khodair
 
spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)
Mohamed Rizk Khodair
 
How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18
Celine George
 
puzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tensepuzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tense
OlgaLeonorTorresSnch
 
Unit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptx
Unit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptxUnit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptx
Unit 5 ACUTE, SUBACUTE,CHRONIC TOXICITY.pptx
Mayuri Chavan
 
How to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 PurchaseHow to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 Purchase
Celine George
 

Sql server ___________session 1(sql 2008)

  • 1. Getting Started with SQL Server 2008 1
  • 2. New Features of SQL Server 2008 / Session 1 2 Objectives  Describe the data platform vision.  Describe the new features in SQL Server 2008.  Explain the dynamic development in SQL Server 2008.  Describe the pervasive insight feature in SQL Server 2008.  Describe Analysis Services of SQL Server 2008.  Describe Integration Services of SQL Server 2008.
  • 3. New Features of SQL Server 2008 / Session 1 3 Objectives  Describe Reporting Services of SQL Server 2008.  Explain IntelliSense in SQL Server 2008.  Explain Multi-Server query feature.  Explain the concept of Query Editor regions.  State the new features of Object Explorer.  Describe Activity Monitor.
  • 4. New Features of SQL Server 2008 / Session 1 4 Introduction  Data platform vision in SQL Server 2008 will help organizations to create next generation data driven applications.  Key areas supporting the data platform vision:  Mission-critical enterprise data platform  Dynamic development  Relational data  Business intelligence  Enhancements in SQL Server Management Studio improve performance and help to develop applications faster.
  • 5. New Features of SQL Server 2008 / Session 1 5 Data Platform Vision 1-3  Data platform is:  Secure  Manageable  Reliable for creating critical applications
  • 6. New Features of SQL Server 2008 / Session 1 6 Data Platform Vision 2-3 Data Platform Vision
  • 7. New Features of SQL Server 2008 / Session 1 7 Data Platform Vision 3-3 SQL Server 2008 targets four major areas: Enterprise Data Platform Dynamic Development Pervasive Business Insight Beyond Relational Data
  • 8. New Features of SQL Server 2008 / Session 1 8 Location Intelligence  Spatial data capabilities help in building location- aware applications, such as applications for Global Positioning System (GPS) devices.
  • 9. New Features of SQL Server 2008 / Session 1 9 Spatial Data Types geometry geography Used to create objects representing a flat plane with x and y coordinates for points traced on edges of polygons, lines, and so forth Uses latitude and longitude angles to find the points on the earth  SQL Server 2008 introduces spatial data types, using which developers can easily develop location-aware applications in SQL.
  • 10. New Features of SQL Server 2008 / Session 1 10 Support for any type of data 1-3  SQL Server 2008 is capable of handling and storing data from diverse sources SQL Server 2008 Data Source 1 Data Source 4Data Source 2 Data Source 3XML ADO.NET Files Collections Spatial Data . . .
  • 11. New Features of SQL Server 2008 / Session 1 11 Support for any type of data 2-3  FILESTREAM data  Used for storing Binary Large Objects (BLOBs) in the form of files  Integrated Full-Text Search  Helps in faster searching of documents and textual data  Provides advantages over alternatives such as LIKE predicate with wildcards or custom-built solutions
  • 12. New Features of SQL Server 2008 / Session 1 12 Support for any type of data 3-3  Large User-Defined Types (UDTs)  Used for storing spatial data like geometry and geography objects  If SqlUserDefinedTypeAttribute.MaxByteS ize is set to -1, the UDT can store data upto 2 GB, otherwise cannot exceed the size specified in MaxByteSize property.
  • 13. New Features of SQL Server 2008 / Session 1 13 Occasionally Connected Systems  SQL Server and .NET Framework 3.5 help to develop cache-based and notification-based applications.  Databases are accessible in mobile applications and then synchronized seamlessly with the server whenever reconnected.
  • 14. New Features of SQL Server 2008 / Session 1 14 Pervasive Insight  Enhancements to SQL Server Analysis Services, Integration Services, Reporting Services, and data warehousing.  SQL Server 2008 has driven business intelligence (BI) in organizations by providing enhancements in data warehousing such as:  Improvements in SQL Server Integration Services (SSIS)  Block Computations  Scalable Reporting  Internet Report Deployment  Manage the Reporting Infrastructure
  • 15. New Features of SQL Server 2008 / Session 1 15 Analysis Services  Improved multidimensional query performance  Enhancements contribute to improved data analysis, Online Analytical Processing (OLAP)  Multidimensional expression queries - used to query multidimensional objects and return multidimensional cellsets  Enhancements in SQL Server Analysis Services:  Attribute Relationship Design  MOLAP Write back  Block Computation  Star Join Query Optimization
  • 16. New Features of SQL Server 2008 / Session 1 16 Integration Services  Plays an important role in Extract, Transform, and Load (ETL) operations  Consists of 28 control flow tasks and 11 maintenance plans in SQL Server 2008  Some of these tasks are:  Container Tasks  Data Preparation Tasks  SQL Tasks  Maintenance Tasks
  • 17. New Features of SQL Server 2008 / Session 1 17 Reporting Services  Enhancements to improve visualization and delivery of data, simplify deployment and configuration of reports  Some enhanced features are:  Managed Reporting  Ad-Hoc Reporting  Report Designer  Report Builder  Compelling Reports
  • 18. New Features of SQL Server 2008 / Session 1 18 Enhancements in Management Studio  The new IntelliSense feature of SQL Server 2008 is comprised of following characteristics:  Speeds up application development by providing syntax and online references in the code  Monitors code typed in the code editor region and prompts with the syntax help  Saves time for the developer because it provides syntax help, word completion, and so forth  Can be activated or deactivated from the menu by selecting Query -> IntelliSense option
  • 19. New Features of SQL Server 2008 / Session 1 19 Multi-Server Query  Enables to query multiple servers from one query window  Procedure:  Each server must be registered in the SQL Server Management Studio local servers group  After all servers are registered, right-click on the group and choose new query option  When multiple servers are connected, the confirmation is displayed at the bottom of window  There can be a mixture of SQL Server 2000, SQL Server 2005, and SQL Server 2008 within a local servers group
  • 20. New Features of SQL Server 2008 / Session 1 20 Query Editor Regions  Help to simplify working with large amount of Transact-SQL code  Is applicable only to multi-line statements  Is new in SQL Server Management Studio  Can be collapsed as well as expanded by clicking the ‘-’ or ‘+’ sign besides them  Regions defined by following hierarchy:  From first GO command to next GO command  Statements between BEGIN – END, BEGIN TRY – END TRY, BEGIN CATCH – END CATCH  Multi-line statements
  • 21. New Features of SQL Server 2008 / Session 1 21 Advanced Object Explorer  Object Explorer Details option:  Enables to view several details about database and server objects  Presents information about all the objects in the server in a tabular format  Sorting, filtering can be done on the columns
  • 22. New Features of SQL Server 2008 / Session 1 22 Search Feature  New feature introduced in Object Explorer Details window  Enables you to search server and database objects  Can search for different types of objects, such as tables, stored procedures, and so forth  The searched result is displayed in the same window as Object Explorer Details  Everything displayed in the Object Explorer details screen can be copied and pasted to Excel without any formatting issue
  • 23. New Features of SQL Server 2008 / Session 1 23 Activity Monitor  Feature that gives information about SQL Server processes  Many changes implemented in Activity Monitor of SQL Server 2008  Represented as a tabbed structure
  • 24. New Features of SQL Server 2008 / Session 1 24 Overview  Is the first tab in the Activity Monitor  Is expanded by default  Comprises of a pane showing the graphical display of instance information such as processor time, waiting tasks, database I/O, and batch requests
  • 25. New Features of SQL Server 2008 / Session 1 25 Processes  Displays information for active user connections  Information displayed can be rearranged, sorted, or filtered
  • 26. New Features of SQL Server 2008 / Session 1 26 Resource Waits  Displays information about waits for resources for the SQL Server instance, including wait time and wait category
  • 27. New Features of SQL Server 2008 / Session 1 27 Data File I/O  Displays I/O activity for relational database files within the Database Engine  Includes both the system and user databases
  • 28. New Features of SQL Server 2008 / Session 1 28 Resource Expensive Query  Shows information about the most expensive queries over the last 30 seconds
  • 29. New Features of SQL Server 2008 / Session 1 29 Summary  SQL Server 2008 includes several new features and architectural enhancements.  Enterprise data platform, support for beyond relational data, and changes in SQL Server Analysis Services are some of the new features and architectural enhancements.  Enhancements have also been made to SQL Server Integration Services and SQL Server Reporting Services.  The enhancements in SQL Server 2008 Management Studio include IntelliSense support, Query Editor regions, Multi-Server query, Object Explorer Details, and Activity Monitor.
  翻译: