SlideShare una empresa de Scribd logo
1 de 44
itcampro@ itcamp13# Premium conference on Microsoft technologies
Transact-SQL from 0 to SQL
Server 2012
Cristian Lefter
SQL Server MVP
http://about.me/CristianLefter
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best PracticesHuge thanks to our sponsors!
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Introduction
• SQL Server 20XX
• Next Steps
Agenda
itcampro@ itcamp13# Premium conference on Microsoft technologies
INSTEAD OF AN
INTRODUCTION
Section 1
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Initially developed at IBM by Donald D. Chamberlin and
Raymond F. Boyce in the early 1970s under the name of
SEQUEL (Structured English Query Language)
• Designed to manipulate and retrieve data stored in IBM's
original quasi-relational database management system, System
R
• Based on Edgar F. Codd's relational model, described in his
1970 paper "A Relational Model of Data for Large Shared Data
Banks”
• Was renamed SQL because "SEQUEL" was a trademark of an
UK-based aircraft company.
• SQL becomes a standard of the American National Standards
Institute (ANSI) in 1986 and for International Organization for
Standards (ISO) in 1987
SQL - history
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Version Year Release Name Codename
1.0
(OS/2)
1989 SQL Server 1.0
(16 bit)
-
1.1
(OS/2)
1991 SQL Server 1.1
(16 bit)
-
4.21
(WinNT)
1993 SQL Server 4.21 SQLNT
6.0 1995 SQL Server 6.0 SQL95
6.5 1996 SQL Server 6.5 Hydra
7.0 1998 SQL Server 7.0 Sphinx
- 1999 SQL Server 7.0
OLAP Tools
Plato mania
Microsoft SQL Server History
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Version Year Release Name Codename
8.0 2000 SQL Server 2000 Shiloh
8.0 2003 SQL Server 2000
64-bit Edition
Liberty
9.0 2005 SQL Server 2005 Yukon
10.0 2008 SQL Server 2008 Katmai
10.25 2010 SQL Azure DB CloudDatabase
10.5 2010 SQL Server 2008
R2
Kilimanjaro (aka KJ)
11.0 2012 SQL Server 2012 Denali
Microsoft SQL Server History (cont.)
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best PracticesVersion 1.0
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best PracticesVersion 1.1 on OS/2 – SQL Admin Facility
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
What is a database?
A collection of objects known as tables. For the
OS, a database is simply a file.
What is a table?
A table is a set of data elements (values) that is
organized using a model of vertical columns
(which are identified by their name) and
horizontal rows.
Database related terms
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Are these familiar to you?
– SELECT / INSERT / UPDATE / DELETE
• How about these?
– GROUP BY, PROCEDURE, FUNCTION, TRIGGER
Where Do We Start From?
itcampro@ itcamp13# Premium conference on Microsoft technologies
SQL SERVER 2000
Section 2
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• XML support - FOR XML clause
• User-Defined Functions
• Indexed Views
• INSTEAD OF and AFTER triggers
New in SQL Server 2000
itcampro@ itcamp13# Premium conference on Microsoft technologies
SQL SERVER 2005
Section 2
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Syntax:
Common Table Expressions (CTE)
WITH <common_table_expression> [ ,...n ]
<common_table_expression>::=
expression_name [ ( column_name [
,...n ] )]
AS ( CTE_query_definition )
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Syntax:
OUTPUT clause
OUTPUT <dml_select_list> INTO {
@table_variable | output_table } [ (
column_list ) ]
[ OUTPUT <dml_select_list> ]
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• CROSS APPLY
• OUTER APPLY
Syntax:
APPLY operator
FROM left_table_source
{OUTER | CROSS} APPLY right_table_source
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Partial Syntax:
PIVOT and UNPIVOT operators
SELECT * FROM table_source
PIVOT (aggregate_function ( value_column )
FOR pivot_column IN ( <column_list> )
) table_alias
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• CREATE LOGIN,
• ALTER LOGIN
• DROP LOGIN
• CREATE USER
• ALTER USER
• DROP USER
Security Statements
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Syntax:
Error Handling
BEGIN TRY
{ sql_statement | statement_block }
END TRY
BEGIN CATCH
{ sql_statement | statement_block }
END CATCH
[ ; ]
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• RANK
• DENSE_RANK
• NTILE
• ROW_NUMBER
Ranking Functions
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• .NET Integration
• XML support (xml data type, XQUERY
support, XML Data Manipulation
Language, XML Schemas support)
• VARCHAR(MAX), VARBINARY(MAX)
• Execution context – EXECUTE AS
• Schemas
Other things to mention
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Full-text Search DDL
– CREATE FULLTEXT CATALOG
– CREATE FULLTEXT INDEX
• DDL Triggers
• Event Notifications
• Service Broker
– SEND
– RECEIVE
• Partitioning
– CREATE PARTITION FUNCTION
– CREATE PARTITION SCHEME
– CREATE TABLE table_name ON partition_scheme_name
(column_name)
Other things to mention (cont.)
itcampro@ itcamp13# Premium conference on Microsoft technologies
SQL SERVER 2008
Section 3
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Row Constructors
• One statement variable
declaration/assignment
• Compound assignment operators
T-SQL delighters
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Syntax:
INSERT over DML
OUTPUT <dml_select_list> INTO{
@table_variable|output_table}
[(column_list)]][OUTPUT<dml_select_list>]
<dml_select_list> ::=
{ <column_name> | scalar_expression } [ [AS]
column_alias_identifier ][ ,...n ]
<column_name> ::={DELETED|INSERTED|
from_table_name}.{*|column_name}|$ACTION
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Example of usage:
Table-valued parameters
CREATE TABLE StockTransactions(TransactionID INT PRIMARY KEY
IDENTITY(1,1),StockSymbol VARCHAR(64),Qty INT);
GO
CREATE TYPE TransactionType AS TABLE (StockSymbol VARCHAR(64),
Qty INT);
GO
CREATE PROCEDURE usp_InsertTransaction
@TVP TransactionType READONLY
AS
BEGIN
SET NOCOUNT ON
INSERT INTO StockTransactions(StockSymbol,Qty)
SELECT StockSymbol,Qty FROM @TVP;
END;
GO
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Partial syntax:
MERGE statement
MERGE
[INTO] target_table
USING <table_source>
ON <search_condition>
[WHEN MATCHED [AND <search_condition>]
THEN <merge_matched>]
[WHEN [TARGET] NOT MATCHED [AND <search_condition>]
THEN <merge_not_matched>]
[WHEN SOURCE NOT MATCHED [AND <search_condition>]
THEN <merge_matched>]
<output_clause>;
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• DATE
• TIME
• DATETIME2
• DATETIMEOFFSET
Date and Time Data Types
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Sparse Columns and Column Sets
• HierarchyID data type
• GROUP BY Enhancements
• Resource Governor
• Transparent Data Encryption
• SQL Server Audit
• Extended Events
• Data Compression
• Backup Compression
Other things to mention
itcampro@ itcamp13# Premium conference on Microsoft technologies
SQL SERVER 2008 R2
Section 4
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Nothing major for T-SQL except UNICODE
compression
SQL Server 2008 R2
itcampro@ itcamp13# Premium conference on Microsoft technologies
SQL SERVER 2012
Section 4
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best PracticesQuery Pagination
Syntax:
Example:
OFFSET <offset_value> ROW|ROWS
FETCH FIRST|NEXT <fetch_value> ROW|ROWS
[ONLY]
SELECT ProductID, Name,Color, Size
FROM Production.Product
ORDER BY Color,ProductID ASC
OFFSET 100 ROWS
FETCH NEXT 25 ROWS ONLY;
END;
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Syntax:
Sequences
CREATE SEQUENCE [schema_name . ] sequence_name
[ AS [ built_in_integer_type | user-
defined_integer_type ] ]
[ START WITH <constant> ]
[ INCREMENT BY <constant> ]
[ { MINVALUE [ <constant> ] } | { NO MINVALUE }
]
[ { MAXVALUE [ <constant> ] } | { NO MAXVALUE }
]
[ CYCLE | { NO CYCLE } ]
[ { CACHE [ <constant> ] } | { NO CACHE } ]
[ ; ]
]
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• SQL:2008 Compliant
• Partial Syntax:
• New analytic functions
Extended support for Window Functions
OVER (
[ <PARTITION BY clause> ]
[ <ORDER BY clause> ]
[ <ROW or RANGE clause> ]
)
CUME_DIST LEAD FIRST_VALUE
PERCENTILE_CONT LAG PERCENTILE_DISC
LAST_VALUE PERCENT_RANK
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Example
Extended support for Window Functions
(cont.)
SELECT
PS.Name AS SubcategoryName,
P.Name AS ProductName,
P.ListPrice,
FIRST_VALUE(P.Name) OVER (PARTITION BY
P.ProductSubcategoryID
ORDER BY P.ListPrice ASC) AS LeastExpensive
FROM Production.Product P
JOIN Production.ProductSubcategory PS
ON P.ProductSubcategoryID = PS.ProductSubcategoryID
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Conversion functions
– PARSE
– TRY_CONVERT
– TRY_PARSE
• Date and time functions
– DATEFROMPARTS
– DATETIME2FROMPARTS
– DATETIMEFROMPARTS
– DATETIMEOFFSETFROMPARTS
– EOMONTH
– SMALLDATETIMEFROMPARTS
– TIMEFROMPARTS
New Functions
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Logical functions
– CHOOSE
– IIF
• String functions
– CONCAT
– FORMAT
New Functions (cont.)
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
Syntax
THROW
THROW [ { error_number |
@local_variable },
{ message | @local_variable
},
{ state | @local_variable } ]
[ ; ]
itcampro@ itcamp13# Premium conference on Microsoft technologies
NEXT STEPS
Section 5
itcampro@ itcamp13# Premium conference on Microsoft technologies
Architecture &
Best Practices
• Read about Hekaton
• SQL Server 2012 Update for Developers
Training Workshop http://bit.ly/sql2012ro
• ROSQL http://sqlserver.ro
Next Steps
itcampro@ itcamp13# Premium conference on Microsoft technologies
Q & A
itcampro@ itcamp13# Premium conference on Microsoft technologies
THANK YOU!

Más contenido relacionado

La actualidad más candente (20)

Structured Query Language (SQL)
Structured Query Language (SQL)Structured Query Language (SQL)
Structured Query Language (SQL)
 
Oracle advanced queuing
Oracle advanced queuingOracle advanced queuing
Oracle advanced queuing
 
Ms sql-server
Ms sql-serverMs sql-server
Ms sql-server
 
MySQL and its basic commands
MySQL and its basic commandsMySQL and its basic commands
MySQL and its basic commands
 
Sql 2009
Sql 2009Sql 2009
Sql 2009
 
SQL
SQLSQL
SQL
 
Sq lite module7
Sq lite module7Sq lite module7
Sq lite module7
 
Intro to T-SQL - 1st session
Intro to T-SQL - 1st sessionIntro to T-SQL - 1st session
Intro to T-SQL - 1st session
 
MYSQL.ppt
MYSQL.pptMYSQL.ppt
MYSQL.ppt
 
SQL Server Learning Drive
SQL Server Learning Drive SQL Server Learning Drive
SQL Server Learning Drive
 
DDL(Data defination Language ) Using Oracle
DDL(Data defination Language ) Using OracleDDL(Data defination Language ) Using Oracle
DDL(Data defination Language ) Using Oracle
 
Sql - Structured Query Language
Sql - Structured Query LanguageSql - Structured Query Language
Sql - Structured Query Language
 
Fg d
Fg dFg d
Fg d
 
Introduction to mysql part 1
Introduction to mysql part 1Introduction to mysql part 1
Introduction to mysql part 1
 
Oracle SQL Part1
Oracle SQL Part1Oracle SQL Part1
Oracle SQL Part1
 
Database Basics Theory
Database Basics TheoryDatabase Basics Theory
Database Basics Theory
 
Transaction
TransactionTransaction
Transaction
 
Getting Started with MySQL II
Getting Started with MySQL IIGetting Started with MySQL II
Getting Started with MySQL II
 
Physical Design and Development
Physical Design and DevelopmentPhysical Design and Development
Physical Design and Development
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to database
 

Destacado

T sql語法之 cte 20140214
T sql語法之 cte 20140214T sql語法之 cte 20140214
T sql語法之 cte 20140214LearningTech
 
Mastering T-SQL Window Functions
Mastering T-SQL Window FunctionsMastering T-SQL Window Functions
Mastering T-SQL Window FunctionsJose Rivera Miranda
 
Window functions with SQL Server 2016
Window functions with SQL Server 2016Window functions with SQL Server 2016
Window functions with SQL Server 2016Mark Tabladillo
 
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
 
T-SQL: Pivot, Unpivot, Except, Intersect
T-SQL: Pivot, Unpivot, Except, IntersectT-SQL: Pivot, Unpivot, Except, Intersect
T-SQL: Pivot, Unpivot, Except, IntersectBill Lin
 
Exploring Advanced SQL Techniques Using Analytic Functions
Exploring Advanced SQL Techniques Using Analytic FunctionsExploring Advanced SQL Techniques Using Analytic Functions
Exploring Advanced SQL Techniques Using Analytic FunctionsZohar Elkayam
 
Introduction to SQL
Introduction to SQLIntroduction to SQL
Introduction to SQLEhsan Hamzei
 

Destacado (10)

T sql語法之 cte 20140214
T sql語法之 cte 20140214T sql語法之 cte 20140214
T sql語法之 cte 20140214
 
Mastering T-SQL Window Functions
Mastering T-SQL Window FunctionsMastering T-SQL Window Functions
Mastering T-SQL Window Functions
 
Data twisting
Data twistingData twisting
Data twisting
 
Window functions with SQL Server 2016
Window functions with SQL Server 2016Window functions with SQL Server 2016
Window functions with SQL Server 2016
 
Sql server ___________session 2(sql 2008)
Sql server  ___________session 2(sql 2008)Sql server  ___________session 2(sql 2008)
Sql server ___________session 2(sql 2008)
 
T-SQL: Pivot, Unpivot, Except, Intersect
T-SQL: Pivot, Unpivot, Except, IntersectT-SQL: Pivot, Unpivot, Except, Intersect
T-SQL: Pivot, Unpivot, Except, Intersect
 
Exploring Advanced SQL Techniques Using Analytic Functions
Exploring Advanced SQL Techniques Using Analytic FunctionsExploring Advanced SQL Techniques Using Analytic Functions
Exploring Advanced SQL Techniques Using Analytic Functions
 
T-SQL Overview
T-SQL OverviewT-SQL Overview
T-SQL Overview
 
Introduction to SQL
Introduction to SQLIntroduction to SQL
Introduction to SQL
 
Sql ppt
Sql pptSql ppt
Sql ppt
 

Similar a ITCamp 2013 - Cristian Lefter - Transact-SQL from 0 to SQL Server 2012

Patterns for Scalability in Windows Azure Applications (Alex Mang)
Patterns for Scalability in Windows Azure Applications (Alex Mang)Patterns for Scalability in Windows Azure Applications (Alex Mang)
Patterns for Scalability in Windows Azure Applications (Alex Mang)ITCamp
 
SQL Server 2014 for Developers (Cristian Lefter)
SQL Server 2014 for Developers (Cristian Lefter)SQL Server 2014 for Developers (Cristian Lefter)
SQL Server 2014 for Developers (Cristian Lefter)ITCamp
 
Elements of DDD with ASP.NET MVC & Entity Framework Code First v2
Elements of DDD with ASP.NET MVC & Entity Framework Code First v2Elements of DDD with ASP.NET MVC & Entity Framework Code First v2
Elements of DDD with ASP.NET MVC & Entity Framework Code First v2Enea Gabriel
 
Busy Developers Guide to AngularJS (Tiberiu Covaci)
Busy Developers Guide to AngularJS (Tiberiu Covaci)Busy Developers Guide to AngularJS (Tiberiu Covaci)
Busy Developers Guide to AngularJS (Tiberiu Covaci)ITCamp
 
ITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance Tools
ITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance ToolsITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance Tools
ITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance ToolsITCamp
 
Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)
Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)
Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)ITCamp
 
ITCamp 2013 - Mihai Tataran - Building Autoscalable Azure Applications
ITCamp 2013 - Mihai Tataran - Building Autoscalable Azure ApplicationsITCamp 2013 - Mihai Tataran - Building Autoscalable Azure Applications
ITCamp 2013 - Mihai Tataran - Building Autoscalable Azure ApplicationsITCamp
 
ITCamp 2013 - Radu Vunvulea - Messaging Patterns in the Cloud
ITCamp 2013 - Radu Vunvulea - Messaging Patterns in the CloudITCamp 2013 - Radu Vunvulea - Messaging Patterns in the Cloud
ITCamp 2013 - Radu Vunvulea - Messaging Patterns in the CloudITCamp
 
Messaging patterns in the cloud
Messaging patterns in the cloudMessaging patterns in the cloud
Messaging patterns in the cloudRadu Vunvulea
 
ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...
ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...
ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...ITCamp
 
ITCamp 2018 - Damian Widera U-SQL in great depth
ITCamp 2018 - Damian Widera U-SQL in great depthITCamp 2018 - Damian Widera U-SQL in great depth
ITCamp 2018 - Damian Widera U-SQL in great depthITCamp
 
ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...
ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...
ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...ITCamp
 
Data Mining 2008
Data Mining 2008Data Mining 2008
Data Mining 2008llangit
 
Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)
Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)
Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)ITCamp
 
Data Mining for Developers
Data Mining for DevelopersData Mining for Developers
Data Mining for Developersllangit
 
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAsOracle Database Performance Tuning Advanced Features and Best Practices for DBAs
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAsZohar Elkayam
 
ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...
ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...
ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...ITCamp
 
BI 2008 Simple
BI 2008 SimpleBI 2008 Simple
BI 2008 Simplellangit
 
Cloudbursting VDI Scenarios (Tiberiu Radu)
Cloudbursting VDI Scenarios (Tiberiu Radu)Cloudbursting VDI Scenarios (Tiberiu Radu)
Cloudbursting VDI Scenarios (Tiberiu Radu)ITCamp
 
Why Upgrade to v8.6?
Why Upgrade to v8.6?Why Upgrade to v8.6?
Why Upgrade to v8.6?BillCavaUs
 

Similar a ITCamp 2013 - Cristian Lefter - Transact-SQL from 0 to SQL Server 2012 (20)

Patterns for Scalability in Windows Azure Applications (Alex Mang)
Patterns for Scalability in Windows Azure Applications (Alex Mang)Patterns for Scalability in Windows Azure Applications (Alex Mang)
Patterns for Scalability in Windows Azure Applications (Alex Mang)
 
SQL Server 2014 for Developers (Cristian Lefter)
SQL Server 2014 for Developers (Cristian Lefter)SQL Server 2014 for Developers (Cristian Lefter)
SQL Server 2014 for Developers (Cristian Lefter)
 
Elements of DDD with ASP.NET MVC & Entity Framework Code First v2
Elements of DDD with ASP.NET MVC & Entity Framework Code First v2Elements of DDD with ASP.NET MVC & Entity Framework Code First v2
Elements of DDD with ASP.NET MVC & Entity Framework Code First v2
 
Busy Developers Guide to AngularJS (Tiberiu Covaci)
Busy Developers Guide to AngularJS (Tiberiu Covaci)Busy Developers Guide to AngularJS (Tiberiu Covaci)
Busy Developers Guide to AngularJS (Tiberiu Covaci)
 
ITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance Tools
ITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance ToolsITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance Tools
ITCamp 2013 - Martin Kulov - Demystifying Visual Studio 2012 Performance Tools
 
Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)
Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)
Database and Public EndPoints Redundancy on Azure (Radu Vunvulea)
 
ITCamp 2013 - Mihai Tataran - Building Autoscalable Azure Applications
ITCamp 2013 - Mihai Tataran - Building Autoscalable Azure ApplicationsITCamp 2013 - Mihai Tataran - Building Autoscalable Azure Applications
ITCamp 2013 - Mihai Tataran - Building Autoscalable Azure Applications
 
ITCamp 2013 - Radu Vunvulea - Messaging Patterns in the Cloud
ITCamp 2013 - Radu Vunvulea - Messaging Patterns in the CloudITCamp 2013 - Radu Vunvulea - Messaging Patterns in the Cloud
ITCamp 2013 - Radu Vunvulea - Messaging Patterns in the Cloud
 
Messaging patterns in the cloud
Messaging patterns in the cloudMessaging patterns in the cloud
Messaging patterns in the cloud
 
ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...
ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...
ITCamp 2013 - Martin Kulov - Agile Project Management with Team Foundation Se...
 
ITCamp 2018 - Damian Widera U-SQL in great depth
ITCamp 2018 - Damian Widera U-SQL in great depthITCamp 2018 - Damian Widera U-SQL in great depth
ITCamp 2018 - Damian Widera U-SQL in great depth
 
ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...
ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...
ITCamp 2013 - Lorant Domokos - Chasing the one codebase, multiple platforms d...
 
Data Mining 2008
Data Mining 2008Data Mining 2008
Data Mining 2008
 
Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)
Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)
Migrating from eRoom to SharePoint, A Success Story (Valy Greavu)
 
Data Mining for Developers
Data Mining for DevelopersData Mining for Developers
Data Mining for Developers
 
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAsOracle Database Performance Tuning Advanced Features and Best Practices for DBAs
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
 
ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...
ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...
ITCamp 2018 - Damian Widera - SQL Server 2016. Meet the Row Level Security. P...
 
BI 2008 Simple
BI 2008 SimpleBI 2008 Simple
BI 2008 Simple
 
Cloudbursting VDI Scenarios (Tiberiu Radu)
Cloudbursting VDI Scenarios (Tiberiu Radu)Cloudbursting VDI Scenarios (Tiberiu Radu)
Cloudbursting VDI Scenarios (Tiberiu Radu)
 
Why Upgrade to v8.6?
Why Upgrade to v8.6?Why Upgrade to v8.6?
Why Upgrade to v8.6?
 

Más de ITCamp

ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...
ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...
ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...ITCamp
 
ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...
ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...
ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...ITCamp
 
ITCamp 2019 - Peter Leeson - Managing Skills
ITCamp 2019 - Peter Leeson - Managing SkillsITCamp 2019 - Peter Leeson - Managing Skills
ITCamp 2019 - Peter Leeson - Managing SkillsITCamp
 
ITCamp 2019 - Mihai Tataran - Governing your Cloud Resources
ITCamp 2019 - Mihai Tataran - Governing your Cloud ResourcesITCamp 2019 - Mihai Tataran - Governing your Cloud Resources
ITCamp 2019 - Mihai Tataran - Governing your Cloud ResourcesITCamp
 
ITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UX
ITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UXITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UX
ITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UXITCamp
 
ITCamp 2019 - Florin Coros - Implementing Clean Architecture
ITCamp 2019 - Florin Coros - Implementing Clean ArchitectureITCamp 2019 - Florin Coros - Implementing Clean Architecture
ITCamp 2019 - Florin Coros - Implementing Clean ArchitectureITCamp
 
ITCamp 2019 - Florin Loghiade - Azure Kubernetes in Production - Field notes...
ITCamp 2019 - Florin Loghiade -  Azure Kubernetes in Production - Field notes...ITCamp 2019 - Florin Loghiade -  Azure Kubernetes in Production - Field notes...
ITCamp 2019 - Florin Loghiade - Azure Kubernetes in Production - Field notes...ITCamp
 
ITCamp 2019 - Florin Flestea - How 3rd Level support experience influenced m...
ITCamp 2019 - Florin Flestea -  How 3rd Level support experience influenced m...ITCamp 2019 - Florin Flestea -  How 3rd Level support experience influenced m...
ITCamp 2019 - Florin Flestea - How 3rd Level support experience influenced m...ITCamp
 
ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...
ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...
ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...ITCamp
 
ITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The Enterprise
ITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The EnterpriseITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The Enterprise
ITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The EnterpriseITCamp
 
ITCamp 2019 - Cristiana Fernbach - Blockchain Legal Trends
ITCamp 2019 - Cristiana Fernbach - Blockchain Legal TrendsITCamp 2019 - Cristiana Fernbach - Blockchain Legal Trends
ITCamp 2019 - Cristiana Fernbach - Blockchain Legal TrendsITCamp
 
ITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data Lake
ITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data LakeITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data Lake
ITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data LakeITCamp
 
ITCamp 2019 - Andy Cross - Business Outcomes from AI
ITCamp 2019 - Andy Cross - Business Outcomes from AIITCamp 2019 - Andy Cross - Business Outcomes from AI
ITCamp 2019 - Andy Cross - Business Outcomes from AIITCamp
 
ITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud Story
ITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud StoryITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud Story
ITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud StoryITCamp
 
ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...
ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...
ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...ITCamp
 
ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...
ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...
ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...ITCamp
 
ITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go Now
ITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go NowITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go Now
ITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go NowITCamp
 
ITCamp 2019 - Peter Leeson - Vitruvian Quality
ITCamp 2019 - Peter Leeson - Vitruvian QualityITCamp 2019 - Peter Leeson - Vitruvian Quality
ITCamp 2019 - Peter Leeson - Vitruvian QualityITCamp
 
ITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World Application
ITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World ApplicationITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World Application
ITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World ApplicationITCamp
 
ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...
ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...
ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...ITCamp
 

Más de ITCamp (20)

ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...
ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...
ITCamp 2019 - Stacey M. Jenkins - Protecting your company's data - By psychol...
 
ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...
ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...
ITCamp 2019 - Silviu Niculita - Supercharge your AI efforts with the use of A...
 
ITCamp 2019 - Peter Leeson - Managing Skills
ITCamp 2019 - Peter Leeson - Managing SkillsITCamp 2019 - Peter Leeson - Managing Skills
ITCamp 2019 - Peter Leeson - Managing Skills
 
ITCamp 2019 - Mihai Tataran - Governing your Cloud Resources
ITCamp 2019 - Mihai Tataran - Governing your Cloud ResourcesITCamp 2019 - Mihai Tataran - Governing your Cloud Resources
ITCamp 2019 - Mihai Tataran - Governing your Cloud Resources
 
ITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UX
ITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UXITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UX
ITCamp 2019 - Ivana Milicic - Color - The Shadow Ruler of UX
 
ITCamp 2019 - Florin Coros - Implementing Clean Architecture
ITCamp 2019 - Florin Coros - Implementing Clean ArchitectureITCamp 2019 - Florin Coros - Implementing Clean Architecture
ITCamp 2019 - Florin Coros - Implementing Clean Architecture
 
ITCamp 2019 - Florin Loghiade - Azure Kubernetes in Production - Field notes...
ITCamp 2019 - Florin Loghiade -  Azure Kubernetes in Production - Field notes...ITCamp 2019 - Florin Loghiade -  Azure Kubernetes in Production - Field notes...
ITCamp 2019 - Florin Loghiade - Azure Kubernetes in Production - Field notes...
 
ITCamp 2019 - Florin Flestea - How 3rd Level support experience influenced m...
ITCamp 2019 - Florin Flestea -  How 3rd Level support experience influenced m...ITCamp 2019 - Florin Flestea -  How 3rd Level support experience influenced m...
ITCamp 2019 - Florin Flestea - How 3rd Level support experience influenced m...
 
ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...
ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...
ITCamp 2019 - Emil Craciun - RoboRestaurant of the future powered by serverle...
 
ITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The Enterprise
ITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The EnterpriseITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The Enterprise
ITCamp 2019 - Eldert Grootenboer - Cloud Architecture Recipes for The Enterprise
 
ITCamp 2019 - Cristiana Fernbach - Blockchain Legal Trends
ITCamp 2019 - Cristiana Fernbach - Blockchain Legal TrendsITCamp 2019 - Cristiana Fernbach - Blockchain Legal Trends
ITCamp 2019 - Cristiana Fernbach - Blockchain Legal Trends
 
ITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data Lake
ITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data LakeITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data Lake
ITCamp 2019 - Andy Cross - Machine Learning with ML.NET and Azure Data Lake
 
ITCamp 2019 - Andy Cross - Business Outcomes from AI
ITCamp 2019 - Andy Cross - Business Outcomes from AIITCamp 2019 - Andy Cross - Business Outcomes from AI
ITCamp 2019 - Andy Cross - Business Outcomes from AI
 
ITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud Story
ITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud StoryITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud Story
ITCamp 2019 - Andrea Saltarello - Modernise your app. The Cloud Story
 
ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...
ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...
ITCamp 2019 - Andrea Saltarello - Implementing bots and Alexa skills using Az...
 
ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...
ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...
ITCamp 2019 - Alex Mang - I'm Confused Should I Orchestrate my Containers on ...
 
ITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go Now
ITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go NowITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go Now
ITCamp 2019 - Alex Mang - How Far Can Serverless Actually Go Now
 
ITCamp 2019 - Peter Leeson - Vitruvian Quality
ITCamp 2019 - Peter Leeson - Vitruvian QualityITCamp 2019 - Peter Leeson - Vitruvian Quality
ITCamp 2019 - Peter Leeson - Vitruvian Quality
 
ITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World Application
ITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World ApplicationITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World Application
ITCamp 2018 - Ciprian Sorlea - Million Dollars Hello World Application
 
ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...
ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...
ITCamp 2018 - Ciprian Sorlea - Enterprise Architectures with TypeScript And F...
 

Último

Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesManik S Magar
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 

Último (20)

Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 

ITCamp 2013 - Cristian Lefter - Transact-SQL from 0 to SQL Server 2012

  • 1. itcampro@ itcamp13# Premium conference on Microsoft technologies Transact-SQL from 0 to SQL Server 2012 Cristian Lefter SQL Server MVP http://about.me/CristianLefter
  • 2. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best PracticesHuge thanks to our sponsors!
  • 3. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Introduction • SQL Server 20XX • Next Steps Agenda
  • 4. itcampro@ itcamp13# Premium conference on Microsoft technologies INSTEAD OF AN INTRODUCTION Section 1
  • 5. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Initially developed at IBM by Donald D. Chamberlin and Raymond F. Boyce in the early 1970s under the name of SEQUEL (Structured English Query Language) • Designed to manipulate and retrieve data stored in IBM's original quasi-relational database management system, System R • Based on Edgar F. Codd's relational model, described in his 1970 paper "A Relational Model of Data for Large Shared Data Banks” • Was renamed SQL because "SEQUEL" was a trademark of an UK-based aircraft company. • SQL becomes a standard of the American National Standards Institute (ANSI) in 1986 and for International Organization for Standards (ISO) in 1987 SQL - history
  • 6. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Version Year Release Name Codename 1.0 (OS/2) 1989 SQL Server 1.0 (16 bit) - 1.1 (OS/2) 1991 SQL Server 1.1 (16 bit) - 4.21 (WinNT) 1993 SQL Server 4.21 SQLNT 6.0 1995 SQL Server 6.0 SQL95 6.5 1996 SQL Server 6.5 Hydra 7.0 1998 SQL Server 7.0 Sphinx - 1999 SQL Server 7.0 OLAP Tools Plato mania Microsoft SQL Server History
  • 7. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Version Year Release Name Codename 8.0 2000 SQL Server 2000 Shiloh 8.0 2003 SQL Server 2000 64-bit Edition Liberty 9.0 2005 SQL Server 2005 Yukon 10.0 2008 SQL Server 2008 Katmai 10.25 2010 SQL Azure DB CloudDatabase 10.5 2010 SQL Server 2008 R2 Kilimanjaro (aka KJ) 11.0 2012 SQL Server 2012 Denali Microsoft SQL Server History (cont.)
  • 8. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best PracticesVersion 1.0
  • 9. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best PracticesVersion 1.1 on OS/2 – SQL Admin Facility
  • 10. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices What is a database? A collection of objects known as tables. For the OS, a database is simply a file. What is a table? A table is a set of data elements (values) that is organized using a model of vertical columns (which are identified by their name) and horizontal rows. Database related terms
  • 11. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Are these familiar to you? – SELECT / INSERT / UPDATE / DELETE • How about these? – GROUP BY, PROCEDURE, FUNCTION, TRIGGER Where Do We Start From?
  • 12. itcampro@ itcamp13# Premium conference on Microsoft technologies SQL SERVER 2000 Section 2
  • 13. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • XML support - FOR XML clause • User-Defined Functions • Indexed Views • INSTEAD OF and AFTER triggers New in SQL Server 2000
  • 14. itcampro@ itcamp13# Premium conference on Microsoft technologies SQL SERVER 2005 Section 2
  • 15. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Syntax: Common Table Expressions (CTE) WITH <common_table_expression> [ ,...n ] <common_table_expression>::= expression_name [ ( column_name [ ,...n ] )] AS ( CTE_query_definition )
  • 16. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Syntax: OUTPUT clause OUTPUT <dml_select_list> INTO { @table_variable | output_table } [ ( column_list ) ] [ OUTPUT <dml_select_list> ]
  • 17. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • CROSS APPLY • OUTER APPLY Syntax: APPLY operator FROM left_table_source {OUTER | CROSS} APPLY right_table_source
  • 18. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Partial Syntax: PIVOT and UNPIVOT operators SELECT * FROM table_source PIVOT (aggregate_function ( value_column ) FOR pivot_column IN ( <column_list> ) ) table_alias
  • 19. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • CREATE LOGIN, • ALTER LOGIN • DROP LOGIN • CREATE USER • ALTER USER • DROP USER Security Statements
  • 20. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Syntax: Error Handling BEGIN TRY { sql_statement | statement_block } END TRY BEGIN CATCH { sql_statement | statement_block } END CATCH [ ; ]
  • 21. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • RANK • DENSE_RANK • NTILE • ROW_NUMBER Ranking Functions
  • 22. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • .NET Integration • XML support (xml data type, XQUERY support, XML Data Manipulation Language, XML Schemas support) • VARCHAR(MAX), VARBINARY(MAX) • Execution context – EXECUTE AS • Schemas Other things to mention
  • 23. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Full-text Search DDL – CREATE FULLTEXT CATALOG – CREATE FULLTEXT INDEX • DDL Triggers • Event Notifications • Service Broker – SEND – RECEIVE • Partitioning – CREATE PARTITION FUNCTION – CREATE PARTITION SCHEME – CREATE TABLE table_name ON partition_scheme_name (column_name) Other things to mention (cont.)
  • 24. itcampro@ itcamp13# Premium conference on Microsoft technologies SQL SERVER 2008 Section 3
  • 25. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Row Constructors • One statement variable declaration/assignment • Compound assignment operators T-SQL delighters
  • 26. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Syntax: INSERT over DML OUTPUT <dml_select_list> INTO{ @table_variable|output_table} [(column_list)]][OUTPUT<dml_select_list>] <dml_select_list> ::= { <column_name> | scalar_expression } [ [AS] column_alias_identifier ][ ,...n ] <column_name> ::={DELETED|INSERTED| from_table_name}.{*|column_name}|$ACTION
  • 27. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Example of usage: Table-valued parameters CREATE TABLE StockTransactions(TransactionID INT PRIMARY KEY IDENTITY(1,1),StockSymbol VARCHAR(64),Qty INT); GO CREATE TYPE TransactionType AS TABLE (StockSymbol VARCHAR(64), Qty INT); GO CREATE PROCEDURE usp_InsertTransaction @TVP TransactionType READONLY AS BEGIN SET NOCOUNT ON INSERT INTO StockTransactions(StockSymbol,Qty) SELECT StockSymbol,Qty FROM @TVP; END; GO
  • 28. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Partial syntax: MERGE statement MERGE [INTO] target_table USING <table_source> ON <search_condition> [WHEN MATCHED [AND <search_condition>] THEN <merge_matched>] [WHEN [TARGET] NOT MATCHED [AND <search_condition>] THEN <merge_not_matched>] [WHEN SOURCE NOT MATCHED [AND <search_condition>] THEN <merge_matched>] <output_clause>;
  • 29. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • DATE • TIME • DATETIME2 • DATETIMEOFFSET Date and Time Data Types
  • 30. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Sparse Columns and Column Sets • HierarchyID data type • GROUP BY Enhancements • Resource Governor • Transparent Data Encryption • SQL Server Audit • Extended Events • Data Compression • Backup Compression Other things to mention
  • 31. itcampro@ itcamp13# Premium conference on Microsoft technologies SQL SERVER 2008 R2 Section 4
  • 32. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Nothing major for T-SQL except UNICODE compression SQL Server 2008 R2
  • 33. itcampro@ itcamp13# Premium conference on Microsoft technologies SQL SERVER 2012 Section 4
  • 34. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best PracticesQuery Pagination Syntax: Example: OFFSET <offset_value> ROW|ROWS FETCH FIRST|NEXT <fetch_value> ROW|ROWS [ONLY] SELECT ProductID, Name,Color, Size FROM Production.Product ORDER BY Color,ProductID ASC OFFSET 100 ROWS FETCH NEXT 25 ROWS ONLY; END;
  • 35. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Syntax: Sequences CREATE SEQUENCE [schema_name . ] sequence_name [ AS [ built_in_integer_type | user- defined_integer_type ] ] [ START WITH <constant> ] [ INCREMENT BY <constant> ] [ { MINVALUE [ <constant> ] } | { NO MINVALUE } ] [ { MAXVALUE [ <constant> ] } | { NO MAXVALUE } ] [ CYCLE | { NO CYCLE } ] [ { CACHE [ <constant> ] } | { NO CACHE } ] [ ; ] ]
  • 36. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • SQL:2008 Compliant • Partial Syntax: • New analytic functions Extended support for Window Functions OVER ( [ <PARTITION BY clause> ] [ <ORDER BY clause> ] [ <ROW or RANGE clause> ] ) CUME_DIST LEAD FIRST_VALUE PERCENTILE_CONT LAG PERCENTILE_DISC LAST_VALUE PERCENT_RANK
  • 37. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Example Extended support for Window Functions (cont.) SELECT PS.Name AS SubcategoryName, P.Name AS ProductName, P.ListPrice, FIRST_VALUE(P.Name) OVER (PARTITION BY P.ProductSubcategoryID ORDER BY P.ListPrice ASC) AS LeastExpensive FROM Production.Product P JOIN Production.ProductSubcategory PS ON P.ProductSubcategoryID = PS.ProductSubcategoryID
  • 38. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Conversion functions – PARSE – TRY_CONVERT – TRY_PARSE • Date and time functions – DATEFROMPARTS – DATETIME2FROMPARTS – DATETIMEFROMPARTS – DATETIMEOFFSETFROMPARTS – EOMONTH – SMALLDATETIMEFROMPARTS – TIMEFROMPARTS New Functions
  • 39. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Logical functions – CHOOSE – IIF • String functions – CONCAT – FORMAT New Functions (cont.)
  • 40. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices Syntax THROW THROW [ { error_number | @local_variable }, { message | @local_variable }, { state | @local_variable } ] [ ; ]
  • 41. itcampro@ itcamp13# Premium conference on Microsoft technologies NEXT STEPS Section 5
  • 42. itcampro@ itcamp13# Premium conference on Microsoft technologies Architecture & Best Practices • Read about Hekaton • SQL Server 2012 Update for Developers Training Workshop http://bit.ly/sql2012ro • ROSQL http://sqlserver.ro Next Steps
  • 43. itcampro@ itcamp13# Premium conference on Microsoft technologies Q & A
  • 44. itcampro@ itcamp13# Premium conference on Microsoft technologies THANK YOU!