SlideShare ist ein Scribd-Unternehmen logo
1 von 25
WHAT’S NEW IN SQL SERVER
INTEGRATION SERVICES 2012?
Nico Jacobs
Nico@U2U.be
@sqlwaldorf
WHAT’S SSIS?

•   E   xtract from source systems
    • SQL Server, Oracle, DB2, flat file, xml, Excel, …



•   T   ransform data
    • Lookup surrogate keys, clean data, reformat, …



•   L   oad it into a destination database
    • Transactions, checkpoints, scalability, …
WHAT’S SSIS
• Data flow reads data from source(s)
• Data is pushed in a row-based pipeline
• It optionally passes through one or more preprogrammed or ad-hoc
  transformations
  • Streaming transformations improve scalability
• Destination(s) write data to disk, db, …
• Control flow dictates in which order tasks execute, data flow is one of
  these tasks
WHAT’S NEW IN 2012?
• A lot!

• New stuff for package developers
• New stuff for package administration
• New stuff for package usage

• Let’s get started!
1: GUI IMPROVEMENTS
•   Getting started window
•   Package visualization
•   Zoom
•   Undo
•   SSIS toolbox
•   Data flow source/destination wizard
•   Sort packages by name
•   Grouping in data flow
CHANGE DATA CAPTURE
• Incremental load loads all rows that have changed since the last load
• How do we know what has changed?
  •   Compare every source row with every destination row
  •   Last modified date and a trigger to maintain this
  •   Change tracking
  •   Change data capture!
CHANGE DATA CAPTURE

•   SQL Server Enterprise edition, 2008 or higher
•   Asynchronous process
•   Captures all changes
•   Maintains time window
•   CDC data access via table valued functions




                                                    Books online, change data capture
2: CDC TASK AND COMPONENTS
• CDC needs to keep track of which changes have already been
  processed
• CDC task does this by storing LSNs in a tracking table
• CDC Source component reads from the CDC table function, based on
  the LSN it got from the CDC task
• CDC transformation splits records into new rows, updated rows and
  deleted rows
• No documentation yet in RC0, check Matt Masson’s blog
• Based on Attunity CDC components
3: MAPPING DATA FLOW COLUMNS
• When modifying a data flow, column remapping is sometimes needed
• SSIS 2012 maps columns on name instead of id
• It also has an improved remapping dialog
4: ODBC SOURCE AND DESTINATION
• ODBC was not natively supported in 2008
• SSIS 2012 has ODBC Source & Destination
  • Handy for connecting to SQL Azure
  • Essential if SQL Server stops supporting OleDb
• SSIS 2008 could access ODBC via ADO.Net:
  • Has create table option, which ODBC lacks
  • No control on batch inserts
                                          nr of rows   ODBC     ADO.Net   % Diff
  • Low performance                          1000       0,42       2,12   405%
                                             10000      4,91       7,84    60%
                                            100000      49,2      78,36    59%
                                            1000000    481,65    781,28    62%
REPLACE OLEDB WITH ODBC?

• After comparing ODBC with ODBC via ADO.Net, lets test ODBC versus
  OleDb
  • On bulk insert    nr of rows    OleDb        OleDb Fast       ODBC       % Diff
                         1000        0,15           0,07          0,865      477%
                        10000        0,32           0,16           4,8       1400%
                        100000       1,66           0,565         48,13      2799%
                       1000000      12,485          9,12         483,085     3769%


  • On row by row      nr of rows       OleDb           ODBC        % Diff
                         1000            0,62            0,76       -18%
                         10000           9,15            6,28        46%
                        100000          71,21           67,37         6%
                        1000000         730,16          684,28        7%

   Your mileage may vary…
5: SCRIPTING
• Script task and script component now support .Net 4.0
• Breakpoints are supported in script component
• When developing custom components, there is better backpressure
  support:
  • SupportsBackPressure property, IsInputReady and GetDependantInputs method
6: EXPRESSION TASK
• The script task can be used to modify variable values… but it’s overkill
• Expression task provides a simple task to change variable values
DATA QUALITY SERVICES (DQS)
• DQS is a new service to clean domain data
• Domain knowledge base needs to be build
  • Based on rules, positive and negative examples
  • Potentially using external data from Azure Marketplace or other providers
7: DQS CLEANSING TASK
• Cleaning and standardizing data before it is loaded in the data
  warehouse is essential
• DQS Cleansing task labels data in 4 categories:
  • Correct: a value accepted by the knowledge base
  • Corrected: a value on which DQS is confident it can correct to a valid domain
    value
  • Suggested: a value on which DQS is less confident, but can still suggest a
    domain value
  • New: DQS has no suggestions for this
• See Koen Verbeeck’s session on DQS for more info!
8: PACKAGE CATALOG
• SSIS 2012 can work in the new project mode (default) or in old
  package mode (backwards compatibility)
• In project mode, many things change:
  • Project becomes the level of deployment
  • Deployment to SQL Server becomes obligatory
  • Packages not stored in msdb, but in dedicated user database:
    o The package catalog, named SSISDB
  • Logging happens automatically and is done in the package catalog
    o Custom logging still supported
• Projects can be converted from one deployment type to another
PACKAGE CATALOG
• Manage via SSMS: Relational engine
• Fixed database name: SSISDB
• Stores projects, versions, logs, 5 reports, 25 views, 42 stored
  procedures, …
• This makes it possible to run, monitor and manage SSIS projects and
  packages via T-SQL!
9: PARAMETERS
• Just two scopes:
  • Package
  • Project!
• Read-only
  • Value is set when scope starts and cannot be changed
  • Can be set from SQL Server Data Tools configurations
• Often used together with environments
• Does not replace variables
  • It is more a package configuration replacement
• Using the visual studio (SSDT) configurations
  we can configure default values for testing
10: SHARED CONNECTION MANAGERS
• Shared connection manager is defined at project level and is
  automatically available in every package
  • Not copied as in SSIS 2008
• Shared connection managers can be parameterized as well
• When converting shared connection managers back to regular
  (package) connection managers, they disappear in all other packages
• Shared cache connection managers are supported as well
  • This allows to cache data in memory in one package and reuse it in multiple
    other packages
11: ENVIRONMENTS
• Environments replace package configurations
• They can control parameter values and connection strings
• Environments are created in the package catalog
  • They are not deployed to the server, but created on the server
  • Don’t forget to reference the environment at the project level
  • Script them while creating, this eases creating multiple environments
• A server might have multiple environments
  • When we execute a package, we can choose which environment we’ll use
12: DATA TAPS
• Imagine a data viewer
  • Which can be added on the runtime server
  • Without modifying the package, but using T-SQL
  • Which writes the data to disk instead on visualizing it…
• Voila, you are now thinking about the data tap 
13: AND A LOT MORE…
• .Net API and Powershell
• Pivot and row count transformation get a user interface
• Flat file supports
  • Embedded qualifiers
  • Variable number of columns (but still fixed meta-data)
• Raw file improvements
  • Generate empty raw file
  • Stores sort info
• DTSX files are becoming more readable and ‘mergeable’
  • Sorted, filtered and prettyprinted
• Merge and merge join improve backpressure handling
AND A LOT MORE…
• 4000 char expression length lifted
• New expression language keywords
  • LEFT as syntactic sugar for SUBSTRING(,1,)
  • TOKEN and TOKENCOUNT for shredding strings
SUMMARY
•   Improved GUI
•   Change data capture support
•   Easy column remapping
•   ODBC connections
•   .Net 4.0 support & script component debugging
•   Expression Task
•   Data Quality Cleansing
•   Package catalog
•   Parameters
•   Shared Connection Managers
•   Environments
•   Data Taps
•   And a lot more…
QUESTIONS?

Weitere ähnliche Inhalte

Was ist angesagt?

ABCs of CDC with SSIS 2012
ABCs of CDC with SSIS 2012ABCs of CDC with SSIS 2012
ABCs of CDC with SSIS 2012
Steve Wake
 

Was ist angesagt? (20)

SQL Server 2016 BI updates
SQL Server 2016 BI updatesSQL Server 2016 BI updates
SQL Server 2016 BI updates
 
Implementing Mobile Reports in SQL Sserver 2016 Reporting Services
Implementing Mobile Reports in SQL Sserver 2016 Reporting ServicesImplementing Mobile Reports in SQL Sserver 2016 Reporting Services
Implementing Mobile Reports in SQL Sserver 2016 Reporting Services
 
ABCs of CDC with SSIS 2012
ABCs of CDC with SSIS 2012ABCs of CDC with SSIS 2012
ABCs of CDC with SSIS 2012
 
Sql 2016 - What's New
Sql 2016 - What's NewSql 2016 - What's New
Sql 2016 - What's New
 
What's new in SQL Server 2017
What's new in SQL Server 2017What's new in SQL Server 2017
What's new in SQL Server 2017
 
Stretch db sql server 2016 (sn0028)
Stretch db   sql server 2016 (sn0028)Stretch db   sql server 2016 (sn0028)
Stretch db sql server 2016 (sn0028)
 
Auditing Data Access in SQL Server
Auditing Data Access in SQL ServerAuditing Data Access in SQL Server
Auditing Data Access in SQL Server
 
How SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the GameHow SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the Game
 
Microsoft SQL Server 2012 Components and Tools (Quick Overview) - Rev 1.3
Microsoft SQL Server 2012 Components and Tools (Quick Overview) - Rev 1.3Microsoft SQL Server 2012 Components and Tools (Quick Overview) - Rev 1.3
Microsoft SQL Server 2012 Components and Tools (Quick Overview) - Rev 1.3
 
sqlserverdb2
sqlserverdb2sqlserverdb2
sqlserverdb2
 
Oracle institutes in Hyderabad.
Oracle  institutes in Hyderabad.Oracle  institutes in Hyderabad.
Oracle institutes in Hyderabad.
 
Machine Learning in SQL Server 2019
Machine Learning in SQL Server 2019Machine Learning in SQL Server 2019
Machine Learning in SQL Server 2019
 
SQL Server 2016 Editions
SQL Server 2016 Editions SQL Server 2016 Editions
SQL Server 2016 Editions
 
SQL Server 2008 Overview
SQL Server 2008 OverviewSQL Server 2008 Overview
SQL Server 2008 Overview
 
Rock Solid SQL Server Management
Rock Solid SQL Server ManagementRock Solid SQL Server Management
Rock Solid SQL Server Management
 
Trivadis TechEvent 2017 Oracle to My SQL Migration - Challenges by Robert Bia...
Trivadis TechEvent 2017 Oracle to My SQL Migration - Challenges by Robert Bia...Trivadis TechEvent 2017 Oracle to My SQL Migration - Challenges by Robert Bia...
Trivadis TechEvent 2017 Oracle to My SQL Migration - Challenges by Robert Bia...
 
Introduction to Machine Learning on Azure
Introduction to Machine Learning on AzureIntroduction to Machine Learning on Azure
Introduction to Machine Learning on Azure
 
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
 
SQL on Linux
SQL on LinuxSQL on Linux
SQL on Linux
 
SQL server 2016 New Features
SQL server 2016 New FeaturesSQL server 2016 New Features
SQL server 2016 New Features
 

Andere mochten auch

A Complex SSIS Package
A Complex SSIS PackageA Complex SSIS Package
A Complex SSIS Package
Nitil Dwivedi
 
Elsd sql server_integration_services
Elsd sql server_integration_servicesElsd sql server_integration_services
Elsd sql server_integration_services
Steve Xu
 
Integration Services Presentation V2
Integration Services Presentation V2Integration Services Presentation V2
Integration Services Presentation V2
Catherine Eibner
 
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
 
SQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksSQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & Tricks
Guillermo Caicedo
 
Agnes's SSIS Project Documentation
Agnes's SSIS Project DocumentationAgnes's SSIS Project Documentation
Agnes's SSIS Project Documentation
agnestetter
 
Introduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration ServicesIntroduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration Services
Quang Nguyễn Bá
 
Price control & s d market project
Price control & s d market projectPrice control & s d market project
Price control & s d market project
Travis Klein
 
Presentation1
Presentation1Presentation1
Presentation1
nada2012noor
 
Linux kursu-bayrampasa
Linux kursu-bayrampasaLinux kursu-bayrampasa
Linux kursu-bayrampasa
sersld67
 

Andere mochten auch (20)

Manageability Enhancements of SQL Server 2012
Manageability Enhancements of SQL Server 2012Manageability Enhancements of SQL Server 2012
Manageability Enhancements of SQL Server 2012
 
Stress testing using SQLIOSIM and SQLIO
Stress testing using SQLIOSIM and SQLIOStress testing using SQLIOSIM and SQLIO
Stress testing using SQLIOSIM and SQLIO
 
SQL Server 2012 and Big Data
SQL Server 2012 and Big DataSQL Server 2012 and Big Data
SQL Server 2012 and Big Data
 
Database Schema Management & Deployment using SQL Server Data Tools (SSDT)
Database Schema Management & Deployment using SQL Server Data Tools (SSDT)Database Schema Management & Deployment using SQL Server Data Tools (SSDT)
Database Schema Management & Deployment using SQL Server Data Tools (SSDT)
 
SQL Server 2012 Best Practices
SQL Server 2012 Best PracticesSQL Server 2012 Best Practices
SQL Server 2012 Best Practices
 
A Complex SSIS Package
A Complex SSIS PackageA Complex SSIS Package
A Complex SSIS Package
 
Elsd sql server_integration_services
Elsd sql server_integration_servicesElsd sql server_integration_services
Elsd sql server_integration_services
 
Integration Services Presentation V2
Integration Services Presentation V2Integration Services Presentation V2
Integration Services Presentation V2
 
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
 
SQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksSQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & Tricks
 
Agnes's SSIS Project Documentation
Agnes's SSIS Project DocumentationAgnes's SSIS Project Documentation
Agnes's SSIS Project Documentation
 
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
 
SQL Server Integration Services
SQL Server Integration ServicesSQL Server Integration Services
SQL Server Integration Services
 
Ssis 2008
Ssis 2008Ssis 2008
Ssis 2008
 
Introduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration ServicesIntroduction to Microsoft SQL Server 2008 R2 Integration Services
Introduction to Microsoft SQL Server 2008 R2 Integration Services
 
Price control & s d market project
Price control & s d market projectPrice control & s d market project
Price control & s d market project
 
Presentation1
Presentation1Presentation1
Presentation1
 
Creating a VMware Software-Defined Data Center Reference Architecture
Creating a VMware Software-Defined Data Center Reference Architecture Creating a VMware Software-Defined Data Center Reference Architecture
Creating a VMware Software-Defined Data Center Reference Architecture
 
Linux kursu-bayrampasa
Linux kursu-bayrampasaLinux kursu-bayrampasa
Linux kursu-bayrampasa
 
Finance
FinanceFinance
Finance
 

Ähnlich wie What's new in SQL Server Integration Services 2012?

SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
Andrew Brust
 
NoSQLDatabases
NoSQLDatabasesNoSQLDatabases
NoSQLDatabases
Adi Challa
 
Exciting Features for SQL Devs in SQL 2012
Exciting Features for SQL Devs in SQL 2012Exciting Features for SQL Devs in SQL 2012
Exciting Features for SQL Devs in SQL 2012
Brij Mishra
 
NoSQL
NoSQLNoSQL
NoSQL
dbulic
 
COUG_AAbate_Oracle_Database_12c_New_Features
COUG_AAbate_Oracle_Database_12c_New_FeaturesCOUG_AAbate_Oracle_Database_12c_New_Features
COUG_AAbate_Oracle_Database_12c_New_Features
Alfredo Abate
 

Ähnlich wie What's new in SQL Server Integration Services 2012? (20)

SQLServerDays2012_SSIS_CDC
SQLServerDays2012_SSIS_CDCSQLServerDays2012_SSIS_CDC
SQLServerDays2012_SSIS_CDC
 
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012SQL Server Workshop for Developers - Visual Studio Live! NY 2012
SQL Server Workshop for Developers - Visual Studio Live! NY 2012
 
Daniel Ridder ABAP Core Data Services No Pain, No Gain
Daniel Ridder ABAP Core Data Services No Pain, No GainDaniel Ridder ABAP Core Data Services No Pain, No Gain
Daniel Ridder ABAP Core Data Services No Pain, No Gain
 
Webinar: Migrating from RDBMS to MongoDB
Webinar: Migrating from RDBMS to MongoDBWebinar: Migrating from RDBMS to MongoDB
Webinar: Migrating from RDBMS to MongoDB
 
Sql pass summit
Sql pass summitSql pass summit
Sql pass summit
 
NoSQLDatabases
NoSQLDatabasesNoSQLDatabases
NoSQLDatabases
 
BI, Integration, and Apps on Couchbase using Simba ODBC and JDBC
BI, Integration, and Apps on Couchbase using Simba ODBC and JDBCBI, Integration, and Apps on Couchbase using Simba ODBC and JDBC
BI, Integration, and Apps on Couchbase using Simba ODBC and JDBC
 
Oracle database connection with the .net developers
Oracle database connection with the .net developersOracle database connection with the .net developers
Oracle database connection with the .net developers
 
Chapter1: NoSQL: It’s about making intelligent choices
Chapter1: NoSQL: It’s about making intelligent choicesChapter1: NoSQL: It’s about making intelligent choices
Chapter1: NoSQL: It’s about making intelligent choices
 
Виталий Бондаренко "Fast Data Platform for Real-Time Analytics. Architecture ...
Виталий Бондаренко "Fast Data Platform for Real-Time Analytics. Architecture ...Виталий Бондаренко "Fast Data Platform for Real-Time Analytics. Architecture ...
Виталий Бондаренко "Fast Data Platform for Real-Time Analytics. Architecture ...
 
Exploring sql server 2016
Exploring sql server 2016Exploring sql server 2016
Exploring sql server 2016
 
Directions NA Choosing the best possible Azure platform for NAV
Directions NA Choosing the best possible Azure platform for NAVDirections NA Choosing the best possible Azure platform for NAV
Directions NA Choosing the best possible Azure platform for NAV
 
C* Summit 2013: Searching for a Needle in a Big Data Haystack by Jason Ruther...
C* Summit 2013: Searching for a Needle in a Big Data Haystack by Jason Ruther...C* Summit 2013: Searching for a Needle in a Big Data Haystack by Jason Ruther...
C* Summit 2013: Searching for a Needle in a Big Data Haystack by Jason Ruther...
 
Tech Talk Series, Part 2: Why is sharding not smart to do in MySQL?
Tech Talk Series, Part 2: Why is sharding not smart to do in MySQL?Tech Talk Series, Part 2: Why is sharding not smart to do in MySQL?
Tech Talk Series, Part 2: Why is sharding not smart to do in MySQL?
 
Brk2045 upgrade sql server 2017 (on prem, iaa-s and paas)
Brk2045 upgrade sql server 2017 (on prem, iaa-s and paas)Brk2045 upgrade sql server 2017 (on prem, iaa-s and paas)
Brk2045 upgrade sql server 2017 (on prem, iaa-s and paas)
 
Exciting Features for SQL Devs in SQL 2012
Exciting Features for SQL Devs in SQL 2012Exciting Features for SQL Devs in SQL 2012
Exciting Features for SQL Devs in SQL 2012
 
NoSQL
NoSQLNoSQL
NoSQL
 
Jean-RenĂŠ Roy : The Modern DBA
Jean-RenĂŠ Roy : The Modern DBAJean-RenĂŠ Roy : The Modern DBA
Jean-RenĂŠ Roy : The Modern DBA
 
Latest Advance Animated Ado.Net With JDBC
Latest Advance Animated Ado.Net With JDBC Latest Advance Animated Ado.Net With JDBC
Latest Advance Animated Ado.Net With JDBC
 
COUG_AAbate_Oracle_Database_12c_New_Features
COUG_AAbate_Oracle_Database_12c_New_FeaturesCOUG_AAbate_Oracle_Database_12c_New_Features
COUG_AAbate_Oracle_Database_12c_New_Features
 

Mehr von Microsoft TechNet - Belgium and Luxembourg

Mehr von Microsoft TechNet - Belgium and Luxembourg (20)

Windows 10: all you need to know!
Windows 10: all you need to know!Windows 10: all you need to know!
Windows 10: all you need to know!
 
Configuration Manager 2012 – Compliance Settings 101 - Tim de Keukelaere
Configuration Manager 2012 – Compliance Settings 101 - Tim de KeukelaereConfiguration Manager 2012 – Compliance Settings 101 - Tim de Keukelaere
Configuration Manager 2012 – Compliance Settings 101 - Tim de Keukelaere
 
Windows 8.1 a closer look
Windows 8.1 a closer lookWindows 8.1 a closer look
Windows 8.1 a closer look
 
So you’ve successfully installed SCOM… Now what.
So you’ve successfully installed SCOM… Now what.So you’ve successfully installed SCOM… Now what.
So you’ve successfully installed SCOM… Now what.
 
Data Leakage Prevention
Data Leakage PreventionData Leakage Prevention
Data Leakage Prevention
 
Deploying and managing ConfigMgr Clients
Deploying and managing ConfigMgr ClientsDeploying and managing ConfigMgr Clients
Deploying and managing ConfigMgr Clients
 
Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?
Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?
Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?
 
Hands on with Hyper-V Clustering Maintenance Mode & Cluster Aware Updating
Hands on with Hyper-V Clustering Maintenance Mode & Cluster Aware UpdatingHands on with Hyper-V Clustering Maintenance Mode & Cluster Aware Updating
Hands on with Hyper-V Clustering Maintenance Mode & Cluster Aware Updating
 
SCEP 2012 inside SCCM 2012
SCEP 2012 inside SCCM 2012SCEP 2012 inside SCCM 2012
SCEP 2012 inside SCCM 2012
 
Jump start your application monitoring with APM
Jump start your application monitoring with APMJump start your application monitoring with APM
Jump start your application monitoring with APM
 
What’s new in Lync Server 2013: Persistent Chat
What’s new in Lync Server 2013: Persistent ChatWhat’s new in Lync Server 2013: Persistent Chat
What’s new in Lync Server 2013: Persistent Chat
 
What's new for Lync 2013 Clients & Devices
What's new for Lync 2013 Clients & DevicesWhat's new for Lync 2013 Clients & Devices
What's new for Lync 2013 Clients & Devices
 
Office 365 ProPlus: Click-to-run deployment and management
Office 365 ProPlus: Click-to-run deployment and managementOffice 365 ProPlus: Click-to-run deployment and management
Office 365 ProPlus: Click-to-run deployment and management
 
Office 365 Identity Management options
Office 365 Identity Management options Office 365 Identity Management options
Office 365 Identity Management options
 
SharePoint Installation and Upgrade: Untangling Your Options
SharePoint Installation and Upgrade: Untangling Your Options SharePoint Installation and Upgrade: Untangling Your Options
SharePoint Installation and Upgrade: Untangling Your Options
 
The application model in real life
The application model in real lifeThe application model in real life
The application model in real life
 
Microsoft private cloud with Cisco and Netapp - Flexpod solution
Microsoft private cloud with Cisco and Netapp -  Flexpod solutionMicrosoft private cloud with Cisco and Netapp -  Flexpod solution
Microsoft private cloud with Cisco and Netapp - Flexpod solution
 
Managing Windows RT devices in the Enterprise
Managing Windows RT devices in the Enterprise Managing Windows RT devices in the Enterprise
Managing Windows RT devices in the Enterprise
 
Moving from Device Centric to a User Centric Management
Moving from Device Centric to a User Centric Management Moving from Device Centric to a User Centric Management
Moving from Device Centric to a User Centric Management
 
Network Management in System Center 2012 SP1 - VMM
Network Management in System Center 2012  SP1 - VMM Network Management in System Center 2012  SP1 - VMM
Network Management in System Center 2012 SP1 - VMM
 

KĂźrzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

KĂźrzlich hochgeladen (20)

Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 

What's new in SQL Server Integration Services 2012?

  • 1. WHAT’S NEW IN SQL SERVER INTEGRATION SERVICES 2012? Nico Jacobs Nico@U2U.be @sqlwaldorf
  • 2. WHAT’S SSIS? • E xtract from source systems • SQL Server, Oracle, DB2, flat file, xml, Excel, … • T ransform data • Lookup surrogate keys, clean data, reformat, … • L oad it into a destination database • Transactions, checkpoints, scalability, …
  • 3. WHAT’S SSIS • Data flow reads data from source(s) • Data is pushed in a row-based pipeline • It optionally passes through one or more preprogrammed or ad-hoc transformations • Streaming transformations improve scalability • Destination(s) write data to disk, db, … • Control flow dictates in which order tasks execute, data flow is one of these tasks
  • 4. WHAT’S NEW IN 2012? • A lot! • New stuff for package developers • New stuff for package administration • New stuff for package usage • Let’s get started!
  • 5. 1: GUI IMPROVEMENTS • Getting started window • Package visualization • Zoom • Undo • SSIS toolbox • Data flow source/destination wizard • Sort packages by name • Grouping in data flow
  • 6. CHANGE DATA CAPTURE • Incremental load loads all rows that have changed since the last load • How do we know what has changed? • Compare every source row with every destination row • Last modified date and a trigger to maintain this • Change tracking • Change data capture!
  • 7. CHANGE DATA CAPTURE • SQL Server Enterprise edition, 2008 or higher • Asynchronous process • Captures all changes • Maintains time window • CDC data access via table valued functions Books online, change data capture
  • 8. 2: CDC TASK AND COMPONENTS • CDC needs to keep track of which changes have already been processed • CDC task does this by storing LSNs in a tracking table • CDC Source component reads from the CDC table function, based on the LSN it got from the CDC task • CDC transformation splits records into new rows, updated rows and deleted rows • No documentation yet in RC0, check Matt Masson’s blog • Based on Attunity CDC components
  • 9. 3: MAPPING DATA FLOW COLUMNS • When modifying a data flow, column remapping is sometimes needed • SSIS 2012 maps columns on name instead of id • It also has an improved remapping dialog
  • 10. 4: ODBC SOURCE AND DESTINATION • ODBC was not natively supported in 2008 • SSIS 2012 has ODBC Source & Destination • Handy for connecting to SQL Azure • Essential if SQL Server stops supporting OleDb • SSIS 2008 could access ODBC via ADO.Net: • Has create table option, which ODBC lacks • No control on batch inserts nr of rows ODBC ADO.Net % Diff • Low performance 1000 0,42 2,12 405% 10000 4,91 7,84 60% 100000 49,2 78,36 59% 1000000 481,65 781,28 62%
  • 11. REPLACE OLEDB WITH ODBC? • After comparing ODBC with ODBC via ADO.Net, lets test ODBC versus OleDb • On bulk insert nr of rows OleDb OleDb Fast ODBC % Diff 1000 0,15 0,07 0,865 477% 10000 0,32 0,16 4,8 1400% 100000 1,66 0,565 48,13 2799% 1000000 12,485 9,12 483,085 3769% • On row by row nr of rows OleDb ODBC % Diff 1000 0,62 0,76 -18% 10000 9,15 6,28 46% 100000 71,21 67,37 6% 1000000 730,16 684,28 7% Your mileage may vary…
  • 12. 5: SCRIPTING • Script task and script component now support .Net 4.0 • Breakpoints are supported in script component • When developing custom components, there is better backpressure support: • SupportsBackPressure property, IsInputReady and GetDependantInputs method
  • 13. 6: EXPRESSION TASK • The script task can be used to modify variable values… but it’s overkill • Expression task provides a simple task to change variable values
  • 14. DATA QUALITY SERVICES (DQS) • DQS is a new service to clean domain data • Domain knowledge base needs to be build • Based on rules, positive and negative examples • Potentially using external data from Azure Marketplace or other providers
  • 15. 7: DQS CLEANSING TASK • Cleaning and standardizing data before it is loaded in the data warehouse is essential • DQS Cleansing task labels data in 4 categories: • Correct: a value accepted by the knowledge base • Corrected: a value on which DQS is confident it can correct to a valid domain value • Suggested: a value on which DQS is less confident, but can still suggest a domain value • New: DQS has no suggestions for this • See Koen Verbeeck’s session on DQS for more info!
  • 16. 8: PACKAGE CATALOG • SSIS 2012 can work in the new project mode (default) or in old package mode (backwards compatibility) • In project mode, many things change: • Project becomes the level of deployment • Deployment to SQL Server becomes obligatory • Packages not stored in msdb, but in dedicated user database: o The package catalog, named SSISDB • Logging happens automatically and is done in the package catalog o Custom logging still supported • Projects can be converted from one deployment type to another
  • 17. PACKAGE CATALOG • Manage via SSMS: Relational engine • Fixed database name: SSISDB • Stores projects, versions, logs, 5 reports, 25 views, 42 stored procedures, … • This makes it possible to run, monitor and manage SSIS projects and packages via T-SQL!
  • 18. 9: PARAMETERS • Just two scopes: • Package • Project! • Read-only • Value is set when scope starts and cannot be changed • Can be set from SQL Server Data Tools configurations • Often used together with environments • Does not replace variables • It is more a package configuration replacement • Using the visual studio (SSDT) configurations we can configure default values for testing
  • 19. 10: SHARED CONNECTION MANAGERS • Shared connection manager is defined at project level and is automatically available in every package • Not copied as in SSIS 2008 • Shared connection managers can be parameterized as well • When converting shared connection managers back to regular (package) connection managers, they disappear in all other packages • Shared cache connection managers are supported as well • This allows to cache data in memory in one package and reuse it in multiple other packages
  • 20. 11: ENVIRONMENTS • Environments replace package configurations • They can control parameter values and connection strings • Environments are created in the package catalog • They are not deployed to the server, but created on the server • Don’t forget to reference the environment at the project level • Script them while creating, this eases creating multiple environments • A server might have multiple environments • When we execute a package, we can choose which environment we’ll use
  • 21. 12: DATA TAPS • Imagine a data viewer • Which can be added on the runtime server • Without modifying the package, but using T-SQL • Which writes the data to disk instead on visualizing it… • Voila, you are now thinking about the data tap 
  • 22. 13: AND A LOT MORE… • .Net API and Powershell • Pivot and row count transformation get a user interface • Flat file supports • Embedded qualifiers • Variable number of columns (but still fixed meta-data) • Raw file improvements • Generate empty raw file • Stores sort info • DTSX files are becoming more readable and ‘mergeable’ • Sorted, filtered and prettyprinted • Merge and merge join improve backpressure handling
  • 23. AND A LOT MORE… • 4000 char expression length lifted • New expression language keywords • LEFT as syntactic sugar for SUBSTRING(,1,) • TOKEN and TOKENCOUNT for shredding strings
  • 24. SUMMARY • Improved GUI • Change data capture support • Easy column remapping • ODBC connections • .Net 4.0 support & script component debugging • Expression Task • Data Quality Cleansing • Package catalog • Parameters • Shared Connection Managers • Environments • Data Taps • And a lot more…