SlideShare uma empresa Scribd logo
1 de 48
Baixar para ler offline
Globalcode – Open4education
Super Hybrid
Trilha – Banco de Dados
Murilo Miranda
SQL Server MVP
Globalcode – Open4education
Murilo Miranda
Lead Database Consultant @ Pythian
@murilocmiranda
http://www.sqlshack.com/author/murilo-miranda/
http://pt.linkedin.com/in/murilomiranda/
http://www.pythian.com/blog/author/murilo/
Globalcode – Open4education
Agenda
Introduction
Azure Blob Storage
Backups to Azure
Managed backups
Low-cost DR
Cloud Witness
Hybrid partitioning
Other Solutions
Strech databases
AG Replica
Globalcode – Open4education
Introduction
Globalcode – Open4education
The Cloud
The first “modern” HD (1956)
IBM 350
50 24-inch
1200 rpm
Capacity: 4.4 Mb
Globalcode – Open4education
The Cloud
Cassete (1972)
Capacity: 660 Kb
Globalcode – Open4education
The Cloud
5.25 Floppy (1976)
Capacity: 1.2 Mb
Globalcode – Open4education
The Cloud
IBM 3380 (1980)
Capacity: 2.52 gb
Globalcode – Open4education
The Cloud
ST-506 – First 5”25 drive (1980)
Capacity: 5 MB
Percursor for modern PC HD
Globalcode – Open4education
The Cloud
From 1990 to 2000’s
Compact Disk
Capacity: 700 Mb
Seagate Barracuda
Capacity: 2.5 Gb
First 7200 RPM HD
Flash Drive
Capacity: 8 Mb
Nowadays hundreds of GB....
Globalcode – Open4education
The Cloud
Nowadays
Globalcode – Open4education
The Cloud
Not only storage
Globalcode – Open4education
Azure Blob Storage
Globalcode – Open4education
Backups to Azure
We can take advantage of Blob Storage to send
backups to the cloud!
Tapes? Why?
Worry about disk space? Never more!
Damaged storage? Azure is Geo-Redundant.
And more...
This is an offsite backup solution.
And you pay as you use!
Globalcode – Open4education
Backups to Azure
In summary...
Mnimizes overall costs
One more option for backup DR.
Globalcode – Open4education
Backups to Azure
Simple steps to follow:
1. Create a container under your Azure Storage account.
2. Download the Publishing Profile.
https://manage.windowsazure.com/publishsettings/
3. Create the Credentials.
4. You are ready!
Globalcode – Open4education
Managed Backups
Managed Backups – what’s that?
Still about backups? Yes!
The difference: it automates and manages SQL
Server backups, based on a retention period.
Globalcode – Open4education
Managed Backups
FULL Backup Schedule
When MB is
enabled.
When log grows
more than 1 GB.
If the last FULL is 1
week older.
When log chain
breaks
Log Backup schedule
When a FULL
backup is performed
When there are no
log backups.
If t-log grows >5 MB
When last backup is
2h older.
Globalcode – Open4education
Blob Storage Tools
Azure Storage Explorer
http://azurestorageexplorer.codeplex.com/
Globalcode – Open4education
Blob Storage Tools
Azure Web Storage Explorer
http://azurestorage.azurewebsites.net/
Globalcode – Open4education
D E M O
Globalcode – Open4education
Database Files in Azure
We can store DB files in Azure!
SQL Server 2012 SP1 – CU2+
Supports data and log files.
AzureOn-Premises
Globalcode – Open4education
Database Files in Azure
Good for small/non-critical databases
Performance is improving but can be a barrier.
Good option to create a low-cost DR solution!

Do not forget to save a
copy of db level objects in
Azure Storage.
Globalcode – Open4education
Database Files in Azure
Steps:
1. Create a Credential in the SQL Server instance.
2. Create a credential.
• The credential name = Container Path.
• This is not a simple process.
• I used a method with PowerShell, explained at this blog:
• http://sqlcommunity.com/SQL-TEAMS/SQLCAT
• Create/attach the dabase pointing to that container.
Globalcode – Open4education
D E M O
Globalcode – Open4education
Cloud Witness
Las vegas Chicago
Vote
Vote
Vote
Vote
Vote
We need 3 votes for the cluster to keep running
Globalcode – Open4education
Cloud Witness
Las vegas Chicago
Vote
Vote
Vote
Vote
Vote
We need 3 votes for the cluster to keep running
Austin
Globalcode – Open4education
Cloud Witness
Introducing Cloud Witness
New kind of failover cluster witness
Windows vNext (2016?)
Leverages Microsoft Azure
It uses Microsoft Azure Blob Storage
Advantages:
No need for 3rd separate datacenter.
Same Storage Account can be used for multiple clusters.
One blob file per cluster.
Very low-cost (few read/write operations)
Globalcode – Open4education
Cloud Witness
Las vegas Chicago
Vote
Vote
Vote
Vote
Vote
Globalcode – Open4education
Cloud Witness
Steps to configure the Cloud Witness
Create Azure Storage Account.
A container named “msft-cloud-witness” will be created.
Globalcode – Open4education
Cloud Witness
Access the Cluster Quorum configuration as
usual...
Globalcode – Open4education
Cloud Witness
A new option is now available.
Globalcode – Open4education
Cloud Witness
Fill the storage account name and account key...
Globalcode – Open4education
Cloud Witness
And that’s all!
Globalcode – Open4education
Hybrid Partitioning
Azure storage is useful for more!
Build a simple data archival model.
By partitioning a table and sending older data to Azure.
PRIMARY
FG1
FGAzure
FG2
FGn
Filegroups Files
Local MDF file
Local NDF file
Local NDF file
Local NDF file
NDF file in Azure
On-Prem
Cloud
Globalcode – Open4education
Hybrid Partitioning
Data archival model
Partitoned Table
Partition with old data uses the “Azure”
Filegroup
Globalcode – Open4education
D E M O
Globalcode – Open4education
Other Solutions
Globalcode – Open4education
Stretch Database
Stretch Databases - Data archival solution.
Based on Azure SQL Database
SQL Server 2016 feature.
Archives historical data – send to the cloud
Two modes:
Archive Table – Moves all the table.
Archive Row – Moves rowa based on rules.
Advantages:
Performance improvements.
Reduced database/backup size.
Backup run faster.
Globalcode – Open4education
Stretch Database
Stretch Databases - Data archival solution.
No changes to existing queries and client apps.
Reduced cost and complexity.
HotDataColdData
Globalcode – Open4education
Stretch Database
Requisites
Azure account.
Stretch database uses an underline Azure SQL Database.
Enable “Strech” on local instance.
EXEC sp_configure 'remote data archive';
GO
EXEC sp_configure 'remote data archive' , '1';
GO
RECONFIGURE;
GO
After that you are good to run the wizard...
Globalcode – Open4education
Strech Database
Types
filestream
timestamp
sql_variant
XML
geometry
geography
hierarchyid
CLR user-defined types
(UDTs)
Features
Column Set
Computed Columns
Check constraints
Foreign key constraints that
reference the table
Default constraints
XML indexes
Full text indexes
Spatial indexes
Clustered columnstore indexes
Indexed views that reference the
table
Limiations
Globalcode – Open4education
Strech Databases
SQLServer 2016 Upgrade Advisor
Globalcode – Open4education
Availability Groups Replica
Availability Group supports replicas in Azure
Since SQL Server 2012 SP1 CU2+
Works as a DR/LB strategy.
Offload workload (reports, backups, ...).
Low-cost DR strategy.
Globalcode – Open4education
Availability Groups Replica
Availability Group supports replicas in Azure
A “wizard” that helps on this task – SQL Server 2014+
Globalcode – Open4education
Availability Groups Replica
Availability Group supports replicas in Azure
Or you can join manually...
1. Deploy the Azure VM
2. Join into the domain
3. Join into the cluster
4. Enbale HADR feature.
5. Joint to AG.
6. Start syncing the databases.
Globalcode – Open4education
Are you ready to jump?
Globalcode – Open4education
Obrigado!
@muriocmiranda

Mais conteúdo relacionado

Mais procurados

MySQL 5.7 -- SCaLE Feb 2014
MySQL 5.7 -- SCaLE Feb 2014MySQL 5.7 -- SCaLE Feb 2014
MySQL 5.7 -- SCaLE Feb 2014
Dave Stokes
 
Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014
Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014
Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014
Dave Stokes
 

Mais procurados (20)

My sql 5.6&MySQL Cluster 7.3
My sql 5.6&MySQL Cluster 7.3My sql 5.6&MySQL Cluster 7.3
My sql 5.6&MySQL Cluster 7.3
 
MySQL Performance Best Practices
MySQL Performance Best PracticesMySQL Performance Best Practices
MySQL Performance Best Practices
 
Upgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtimeUpgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtime
 
MySQL 5.7 -- SCaLE Feb 2014
MySQL 5.7 -- SCaLE Feb 2014MySQL 5.7 -- SCaLE Feb 2014
MySQL 5.7 -- SCaLE Feb 2014
 
MySQL Utilities -- PyTexas 2015
MySQL Utilities -- PyTexas 2015MySQL Utilities -- PyTexas 2015
MySQL Utilities -- PyTexas 2015
 
Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014
Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014
Scaling MySQl 1 to N Servers -- Los Angelese MySQL User Group Feb 2014
 
MySQL NoSQL APIs
MySQL NoSQL APIsMySQL NoSQL APIs
MySQL NoSQL APIs
 
MySQL Cloud Service Deep Dive
MySQL Cloud Service Deep DiveMySQL Cloud Service Deep Dive
MySQL Cloud Service Deep Dive
 
MySQL Devops Webinar
MySQL Devops WebinarMySQL Devops Webinar
MySQL Devops Webinar
 
MySQL Cluster 8.0 tutorial text
MySQL Cluster 8.0 tutorial textMySQL Cluster 8.0 tutorial text
MySQL Cluster 8.0 tutorial text
 
MySQL 5.6 Updates
MySQL 5.6 UpdatesMySQL 5.6 Updates
MySQL 5.6 Updates
 
OTN Tour 2014: Rac 11g vs 12c
OTN Tour 2014: Rac 11g vs 12cOTN Tour 2014: Rac 11g vs 12c
OTN Tour 2014: Rac 11g vs 12c
 
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
 
devops Days Belgium Ghent 2016
devops Days Belgium Ghent 2016devops Days Belgium Ghent 2016
devops Days Belgium Ghent 2016
 
MySQL's NoSQL -- Texas Linuxfest August 22nd 2015
MySQL's NoSQL  -- Texas Linuxfest August 22nd 2015MySQL's NoSQL  -- Texas Linuxfest August 22nd 2015
MySQL's NoSQL -- Texas Linuxfest August 22nd 2015
 
MySQL Utilities -- Cool Tools For You: PHP World Nov 16 2016
MySQL Utilities -- Cool Tools For You: PHP World Nov 16 2016MySQL Utilities -- Cool Tools For You: PHP World Nov 16 2016
MySQL Utilities -- Cool Tools For You: PHP World Nov 16 2016
 
MariaDB Enterprise & MariaDB Enterprise Cluster - MariaDB Webinar July 2014
MariaDB Enterprise & MariaDB Enterprise Cluster - MariaDB Webinar July 2014MariaDB Enterprise & MariaDB Enterprise Cluster - MariaDB Webinar July 2014
MariaDB Enterprise & MariaDB Enterprise Cluster - MariaDB Webinar July 2014
 
MySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersMySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and Developers
 
PNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing DifficultPNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing Difficult
 
SQL on Linux
SQL on LinuxSQL on Linux
SQL on Linux
 

Destaque

Destaque (7)

Quer ser um excelente dba
Quer ser um excelente dbaQuer ser um excelente dba
Quer ser um excelente dba
 
Novidades do Universo MySQL julho-15
Novidades do Universo MySQL julho-15Novidades do Universo MySQL julho-15
Novidades do Universo MySQL julho-15
 
O problema não é no banco de dados
O problema não é no banco de dadosO problema não é no banco de dados
O problema não é no banco de dados
 
PostgreSQL Wonderland TDC-SP 2015
PostgreSQL Wonderland TDC-SP 2015PostgreSQL Wonderland TDC-SP 2015
PostgreSQL Wonderland TDC-SP 2015
 
Como lidar com dados temporais e intervalos com a linguagem SQL
Como lidar com dados temporais e intervalos com a linguagem SQLComo lidar com dados temporais e intervalos com a linguagem SQL
Como lidar com dados temporais e intervalos com a linguagem SQL
 
Tdc2015
Tdc2015Tdc2015
Tdc2015
 
Aprendizado de Máquinas com Azure Machine Learning e R
Aprendizado de Máquinas com Azure Machine Learning e RAprendizado de Máquinas com Azure Machine Learning e R
Aprendizado de Máquinas com Azure Machine Learning e R
 

Semelhante a Super hybrid2016 tdc

Lessons Learned Running Hadoop and Spark in Docker Containers
Lessons Learned Running Hadoop and Spark in Docker ContainersLessons Learned Running Hadoop and Spark in Docker Containers
Lessons Learned Running Hadoop and Spark in Docker Containers
BlueData, Inc.
 
Lessons Learned from Dockerizing Spark Workloads
Lessons Learned from Dockerizing Spark WorkloadsLessons Learned from Dockerizing Spark Workloads
Lessons Learned from Dockerizing Spark Workloads
BlueData, Inc.
 
Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...
Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...
Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...
Spark Summit
 

Semelhante a Super hybrid2016 tdc (20)

Eouc 12 on 12c osama mustafa
Eouc 12 on 12c osama mustafaEouc 12 on 12c osama mustafa
Eouc 12 on 12c osama mustafa
 
Using oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archiveUsing oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archive
 
Apache CarbonData:New high performance data format for faster data analysis
Apache CarbonData:New high performance data format for faster data analysisApache CarbonData:New high performance data format for faster data analysis
Apache CarbonData:New high performance data format for faster data analysis
 
Lessons Learned Running Hadoop and Spark in Docker Containers
Lessons Learned Running Hadoop and Spark in Docker ContainersLessons Learned Running Hadoop and Spark in Docker Containers
Lessons Learned Running Hadoop and Spark in Docker Containers
 
Backup and Restore SQL Server Databases in Microsoft Azure
Backup and Restore SQL Server Databases in Microsoft AzureBackup and Restore SQL Server Databases in Microsoft Azure
Backup and Restore SQL Server Databases in Microsoft Azure
 
OOW 17 - database consolidation using the oracle multitenant architecture
OOW 17 - database consolidation using the oracle multitenant architectureOOW 17 - database consolidation using the oracle multitenant architecture
OOW 17 - database consolidation using the oracle multitenant architecture
 
RMOUG 18 - Winning Performance Challenges in Oracle Multitenant
RMOUG 18 - Winning Performance Challenges in Oracle MultitenantRMOUG 18 - Winning Performance Challenges in Oracle Multitenant
RMOUG 18 - Winning Performance Challenges in Oracle Multitenant
 
TDC2016POA | Trilha Cloud Computing - Microsoft Azure ? From Zero To Hero!
TDC2016POA | Trilha Cloud Computing - Microsoft Azure ? From Zero To Hero!TDC2016POA | Trilha Cloud Computing - Microsoft Azure ? From Zero To Hero!
TDC2016POA | Trilha Cloud Computing - Microsoft Azure ? From Zero To Hero!
 
Lessons Learned from Dockerizing Spark Workloads
Lessons Learned from Dockerizing Spark WorkloadsLessons Learned from Dockerizing Spark Workloads
Lessons Learned from Dockerizing Spark Workloads
 
Winning performance challenges in oracle multitenant
Winning performance challenges in oracle multitenantWinning performance challenges in oracle multitenant
Winning performance challenges in oracle multitenant
 
Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...
Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...
Lessons Learned from Dockerizing Spark Workloads: Spark Summit East talk by T...
 
Winning Performance Challenges in Oracle Multitenant
Winning Performance Challenges in Oracle MultitenantWinning Performance Challenges in Oracle Multitenant
Winning Performance Challenges in Oracle Multitenant
 
Oracle 12c - Multitenant Feature
Oracle 12c - Multitenant FeatureOracle 12c - Multitenant Feature
Oracle 12c - Multitenant Feature
 
Effective Spark with Alluxio at Strata+Hadoop World San Jose 2017
Effective Spark with Alluxio at Strata+Hadoop World San Jose 2017Effective Spark with Alluxio at Strata+Hadoop World San Jose 2017
Effective Spark with Alluxio at Strata+Hadoop World San Jose 2017
 
Spark Summit EU talk by Jiri Simsa
Spark Summit EU talk by Jiri SimsaSpark Summit EU talk by Jiri Simsa
Spark Summit EU talk by Jiri Simsa
 
Spark Summit EU talk by Jiri Simsa
Spark Summit EU talk by Jiri SimsaSpark Summit EU talk by Jiri Simsa
Spark Summit EU talk by Jiri Simsa
 
Introduction to Globus: Research Data Management Software at the ALCF
Introduction to Globus: Research Data Management Software at the ALCFIntroduction to Globus: Research Data Management Software at the ALCF
Introduction to Globus: Research Data Management Software at the ALCF
 
Webinar: Cloud Archiving – Amazon Glacier, Microsoft Azure or Something Else?
Webinar: Cloud Archiving – Amazon Glacier, Microsoft Azure or Something Else?Webinar: Cloud Archiving – Amazon Glacier, Microsoft Azure or Something Else?
Webinar: Cloud Archiving – Amazon Glacier, Microsoft Azure or Something Else?
 
02_DP_300T00A_Plan_implement.pptx
02_DP_300T00A_Plan_implement.pptx02_DP_300T00A_Plan_implement.pptx
02_DP_300T00A_Plan_implement.pptx
 
Oracle 12c PDB insights
Oracle 12c PDB insightsOracle 12c PDB insights
Oracle 12c PDB insights
 

Último

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+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@
 

Último (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
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
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - 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
 
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...
 
+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
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
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
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Super hybrid2016 tdc