SlideShare a Scribd company logo
Azure
Cosmos db
Course Content
Design Azure Cosmos DB
 Brief description about NoSQL
 NoSQL Features and Advantage
 Introduction of Cosmos DB
 Core Feature, Resource Hierarchy and Collection
 Demo – Account, Collection and Document Creation
Horizontal Partitioning
 Cosmos DB Scale
 Horizontal Scale
 Elastic Scale
 Partition Keys
 Choosing the Right Partition Key
 Cross Partition Queries
Globally Distributed Data/DR
 Global Distribution and Replication
 Replication and Consistency
 Consistency Levels and setting
SQL API for a documenting data model
 Document database
 Data modeling : Relational vs Document
 Demo - Importing documents from Sql server
 Partition Keys
 Choosing the Right Partition Key
 Cross Partition Queries
Querying Documents with the SQL API
 Query with SQL
 SQL operators and functions
 Demo - SQL Query
 Demo -Query Operator and built-in Functions
 Demo - Querying Documents in Collection
NoSQL DatabaseIntroduction:
NoSQL database stands for "Not Only SQL" or "Not SQL." NoSQL is a non-relational DMS, that does not require a
fixed schema, avoids joins, and is easy to scale. NoSQL database is used for distributed data stores with
humongous data storage needs. Carl Strozz introduced the NoSQL concept in 1998.
Azure cosmos db, Azure no-SQL database,
Features of NoSQL
1. Non-relational
2. Simple API
4. Distributed3. Schema-free
Advantages of NoSQL
• Big Data Capability
• No Single Point of Failure
• Easy Replication
• Can handle structured, semi-structured, and unstructured data with equal effect
• Object-oriented programming which is easy to use and flexible
• Simple to implement than using RDBMS
• Handles big data which manages data velocity, variety, volume, and complexity
• Support Key Developer Languages and Platforms
Azure Cosmos DB
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Creating Collection/Container
Creating Collections/Containers using .NET
Creating Documents using Portal
Creating Documents using .NET
Cosmos DB Scale
Azure Cosmos DB, provisioned throughput is represented as request units/second (RU/s or the plural form RUs).
RUs measure the cost of both read and write operations against your Cosmos container.
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
The Partition Key is used to automatically
partition data among multiple servers for
scalability. Choose a JSON property name that
has a wide range of values and is likely to have
evenly distributed access patterns.
Partition Keys
• Collection 1 : The Size is 10 GB, so CosmosDB can place all the documents within the same Logical
Partition (Logical Partition 1)
• Collection 2 : The size is unlimited (greater than 10 GB), so CosmsosDB has to spread the documents
across multiple logical partitions
Azure cosmos db, Azure no-SQL database,
Cross Partition Query
FeedOptions.EnableCrossPartitionQuery Property
// Enable cross partition query.
var queryable = client.CreateDocumentQuery<Book>(
collectionLink, new FeedOptions { EnableCrossPartitionQuery = true }).Where(b => b.Price > 1000);
Disaster Recovery(DR)
Ø Global Distribution
Ø Replication
Global Distribution
Azure cosmos db, Azure no-SQL database,
Replication
Consistency levels in Azure Cosmos DB
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Azure cosmos db, Azure no-SQL database,
Data modeling in Azure Cosmos DB
While schema-free databases, like Azure Cosmos DB, make it super easy to store and query unstructured and
semi-structured data, you should spend some time thinking about your data model to get the most of the service
in terms of performance and scalability and lowest cost.
Azure cosmos db, Azure no-SQL database,
Referencing data
Azure cosmos db, Azure no-SQL database,
Hybrid data models
Based on your application's specific usage patterns and workloads there may be cases where mixing embedded
and referenced data makes sense and could lead to simpler application logic with fewer server round trips while
still maintaining a good level of performance.
Author documents:
{
"id": "a1",
"firstName": “Rahul",
"lastName": “Kumar",
"countOfBooks": 3,
"books": ["b1", "b2", "b3"],
"images": [
{"thumbnail": "https://....png"}
{"profile": "https://....png"}
{"large": "https://....png"}
]
},
{
"id": "a2",
"firstName": “Brijesh",
"lastName": “Kumar",
"countOfBooks": 1,
"books": ["b1"],
"images": [
{"thumbnail": "https://....png"}
]
}
Book documents:
{
"id": "b1",
"name": "Azure Cosmos DB 101",
"authors": [
{"id": "a1", "name": “Brijesh Kumar", "thumbnailUrl": "https://....png"},
{"id": "a2", "name": “Brijesh Kumar", "thumbnailUrl": "https://....png"}
]
},
{​
"id": "b2",​
"name": "Azure Cosmos DB for RDBMS Users",​
"authors": [​
{"id": "a1", "name": “Brijesh Kumar", "thumbnailUrl": "https://....png"},​
]​
}​
Migrating from SQL Server to Cosmos db
Demo
Quering Documents with the SQL API
Documents Operators
Azure cosmos db, Azure no-SQL database,
SQL(Document ) Query
SQL Query Operators & In-Build Functions
Demo
References
https://www.guru99.com/nosql-tutorial.html
https://docs.microsoft.com/en-us/azure/cosmos-db/scaling-throughput
https://www.c-sharpcorner.com/article/partitioning-in-cosmos-db/
https://docs.microsoft.com/en-us/azure/cosmos-db/distribute-data-globally
https://docs.microsoft.com/en-us/azure/cosmos-db/modeling-data
https://docs.microsoft.com/en-us/azure/cosmos-db/import-data
https://docs.microsoft.com/en-us/azure/cosmos-db/how-to-sql-query
https://docs.microsoft.com/en-us/azure/cosmos-db/how-to-sql-query
https://www.documentdb.com/sql/demo
Thank You

More Related Content

What's hot

Cloud Storage in Azure, AWS and Google Cloud
Cloud  Storage in Azure, AWS and Google CloudCloud  Storage in Azure, AWS and Google Cloud
Cloud Storage in Azure, AWS and Google Cloud
Thurupathan Vijayakumar
 
Building Your Data Warehouse with Amazon Redshift
Building Your Data Warehouse with Amazon RedshiftBuilding Your Data Warehouse with Amazon Redshift
Building Your Data Warehouse with Amazon Redshift
Amazon Web Services
 
실시간 스트리밍 분석 Kinesis Data Analytics Deep Dive
실시간 스트리밍 분석  Kinesis Data Analytics Deep Dive실시간 스트리밍 분석  Kinesis Data Analytics Deep Dive
실시간 스트리밍 분석 Kinesis Data Analytics Deep Dive
Amazon Web Services Korea
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
Amazon Web Services Korea
 
AWS Storage - S3 Fundamentals
AWS Storage - S3 FundamentalsAWS Storage - S3 Fundamentals
AWS Storage - S3 Fundamentals
Piyush Agrawal
 
Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)
James Serra
 
Azure fundamentals-170910113238
Azure fundamentals-170910113238Azure fundamentals-170910113238
Azure fundamentals-170910113238
ScottSmith574468
 
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
Amazon Web Services Korea
 
Azure Serverless with Functions, Logic Apps, and Event Grid
Azure Serverless with Functions, Logic Apps, and Event Grid  Azure Serverless with Functions, Logic Apps, and Event Grid
Azure Serverless with Functions, Logic Apps, and Event Grid
WinWire Technologies Inc
 
Microsoft Azure Storage Basics
Microsoft Azure Storage BasicsMicrosoft Azure Storage Basics
Microsoft Azure Storage Basics
Sai Kishore Naidu
 
Amazon Aurora: Under the Hood
Amazon Aurora: Under the HoodAmazon Aurora: Under the Hood
Amazon Aurora: Under the Hood
Amazon Web Services
 
Deep Dive - Amazon Elastic MapReduce (EMR)
Deep Dive - Amazon Elastic MapReduce (EMR)Deep Dive - Amazon Elastic MapReduce (EMR)
Deep Dive - Amazon Elastic MapReduce (EMR)
Amazon Web Services
 
Best practices for MySQL High Availability Tutorial
Best practices for MySQL High Availability TutorialBest practices for MySQL High Availability Tutorial
Best practices for MySQL High Availability Tutorial
Colin Charles
 
Sizing Your MongoDB Cluster
Sizing Your MongoDB ClusterSizing Your MongoDB Cluster
Sizing Your MongoDB Cluster
MongoDB
 
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
Amazon Web Services Korea
 
Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)
Amazon Web Services
 
Azure: PaaS or IaaS
Azure: PaaS or IaaSAzure: PaaS or IaaS
Azure: PaaS or IaaS
Shahed Chowdhuri
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon Web Services Korea
 
Centralized Logging System Using ELK Stack
Centralized Logging System Using ELK StackCentralized Logging System Using ELK Stack
Centralized Logging System Using ELK Stack
Rohit Sharma
 
Azure Synapse Analytics Overview (r2)
Azure Synapse Analytics Overview (r2)Azure Synapse Analytics Overview (r2)
Azure Synapse Analytics Overview (r2)
James Serra
 

What's hot (20)

Cloud Storage in Azure, AWS and Google Cloud
Cloud  Storage in Azure, AWS and Google CloudCloud  Storage in Azure, AWS and Google Cloud
Cloud Storage in Azure, AWS and Google Cloud
 
Building Your Data Warehouse with Amazon Redshift
Building Your Data Warehouse with Amazon RedshiftBuilding Your Data Warehouse with Amazon Redshift
Building Your Data Warehouse with Amazon Redshift
 
실시간 스트리밍 분석 Kinesis Data Analytics Deep Dive
실시간 스트리밍 분석  Kinesis Data Analytics Deep Dive실시간 스트리밍 분석  Kinesis Data Analytics Deep Dive
실시간 스트리밍 분석 Kinesis Data Analytics Deep Dive
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
 
AWS Storage - S3 Fundamentals
AWS Storage - S3 FundamentalsAWS Storage - S3 Fundamentals
AWS Storage - S3 Fundamentals
 
Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)
 
Azure fundamentals-170910113238
Azure fundamentals-170910113238Azure fundamentals-170910113238
Azure fundamentals-170910113238
 
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
 
Azure Serverless with Functions, Logic Apps, and Event Grid
Azure Serverless with Functions, Logic Apps, and Event Grid  Azure Serverless with Functions, Logic Apps, and Event Grid
Azure Serverless with Functions, Logic Apps, and Event Grid
 
Microsoft Azure Storage Basics
Microsoft Azure Storage BasicsMicrosoft Azure Storage Basics
Microsoft Azure Storage Basics
 
Amazon Aurora: Under the Hood
Amazon Aurora: Under the HoodAmazon Aurora: Under the Hood
Amazon Aurora: Under the Hood
 
Deep Dive - Amazon Elastic MapReduce (EMR)
Deep Dive - Amazon Elastic MapReduce (EMR)Deep Dive - Amazon Elastic MapReduce (EMR)
Deep Dive - Amazon Elastic MapReduce (EMR)
 
Best practices for MySQL High Availability Tutorial
Best practices for MySQL High Availability TutorialBest practices for MySQL High Availability Tutorial
Best practices for MySQL High Availability Tutorial
 
Sizing Your MongoDB Cluster
Sizing Your MongoDB ClusterSizing Your MongoDB Cluster
Sizing Your MongoDB Cluster
 
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
 
Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)
 
Azure: PaaS or IaaS
Azure: PaaS or IaaSAzure: PaaS or IaaS
Azure: PaaS or IaaS
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
 
Centralized Logging System Using ELK Stack
Centralized Logging System Using ELK StackCentralized Logging System Using ELK Stack
Centralized Logging System Using ELK Stack
 
Azure Synapse Analytics Overview (r2)
Azure Synapse Analytics Overview (r2)Azure Synapse Analytics Overview (r2)
Azure Synapse Analytics Overview (r2)
 

Similar to Azure cosmos db, Azure no-SQL database,

SQL or NoSQL, is this the question? - George Grammatikos
SQL or NoSQL, is this the question? - George GrammatikosSQL or NoSQL, is this the question? - George Grammatikos
SQL or NoSQL, is this the question? - George Grammatikos
George Grammatikos
 
Introduction to Cosmos DB Presentation.pptx
Introduction to Cosmos DB Presentation.pptxIntroduction to Cosmos DB Presentation.pptx
Introduction to Cosmos DB Presentation.pptx
Knoldus Inc.
 
Mongo Bb - NoSQL tutorial
Mongo Bb - NoSQL tutorialMongo Bb - NoSQL tutorial
Mongo Bb - NoSQL tutorial
Mohan Rathour
 
Nosql seminar
Nosql seminarNosql seminar
Unit 3 MongDB
Unit 3 MongDBUnit 3 MongDB
Unit 3 MongDB
Praveen M Jigajinni
 
Azure data platform overview
Azure data platform overviewAzure data platform overview
Azure data platform overview
Alessandro Melchiori
 
SQL vs NoSQL deep dive
SQL vs NoSQL deep diveSQL vs NoSQL deep dive
SQL vs NoSQL deep dive
Ahmed Shaaban
 
2014.11.14 Data Opportunities with Azure
2014.11.14 Data Opportunities with Azure2014.11.14 Data Opportunities with Azure
2014.11.14 Data Opportunities with Azure
Marco Parenzan
 
Azure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu Ganta
Azure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu GantaAzure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu Ganta
Azure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu Ganta
Databricks
 
Cloud architectural patterns and Microsoft Azure tools
Cloud architectural patterns and Microsoft Azure toolsCloud architectural patterns and Microsoft Azure tools
Cloud architectural patterns and Microsoft Azure tools
Pushkar Chivate
 
AWS tutorial-Part58:AWS Cloud Database Products-1st Intro Session
AWS tutorial-Part58:AWS Cloud Database Products-1st Intro SessionAWS tutorial-Part58:AWS Cloud Database Products-1st Intro Session
AWS tutorial-Part58:AWS Cloud Database Products-1st Intro Session
SaM theCloudGuy
 
Why you should(n't) run your databases in the cloud
Why you should(n't) run your databases in the cloudWhy you should(n't) run your databases in the cloud
Why you should(n't) run your databases in the cloud
Microsoft TechNet - Belgium and Luxembourg
 
Sql vs NoSQL-Presentation
 Sql vs NoSQL-Presentation Sql vs NoSQL-Presentation
Sql vs NoSQL-Presentation
Shubham Tomar
 
Introduction-to-MongoDB.pptx
Introduction-to-MongoDB.pptxIntroduction-to-MongoDB.pptx
Introduction-to-MongoDB.pptx
MohamedAdelMostafa
 
Big data technology unit 3
Big data technology unit 3Big data technology unit 3
Big data technology unit 3
RojaT4
 
NoSQL
NoSQLNoSQL
NoSQL
dbulic
 
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Trivadis
 
Couchbase - Introduction
Couchbase - IntroductionCouchbase - Introduction
Couchbase - Introduction
Knoldus Inc.
 
Selecting best NoSQL
Selecting best NoSQL Selecting best NoSQL
Selecting best NoSQL
Mohammed Fazuluddin
 
Azure - Data Platform
Azure - Data PlatformAzure - Data Platform
Azure - Data Platform
giventocode
 

Similar to Azure cosmos db, Azure no-SQL database, (20)

SQL or NoSQL, is this the question? - George Grammatikos
SQL or NoSQL, is this the question? - George GrammatikosSQL or NoSQL, is this the question? - George Grammatikos
SQL or NoSQL, is this the question? - George Grammatikos
 
Introduction to Cosmos DB Presentation.pptx
Introduction to Cosmos DB Presentation.pptxIntroduction to Cosmos DB Presentation.pptx
Introduction to Cosmos DB Presentation.pptx
 
Mongo Bb - NoSQL tutorial
Mongo Bb - NoSQL tutorialMongo Bb - NoSQL tutorial
Mongo Bb - NoSQL tutorial
 
Nosql seminar
Nosql seminarNosql seminar
Nosql seminar
 
Unit 3 MongDB
Unit 3 MongDBUnit 3 MongDB
Unit 3 MongDB
 
Azure data platform overview
Azure data platform overviewAzure data platform overview
Azure data platform overview
 
SQL vs NoSQL deep dive
SQL vs NoSQL deep diveSQL vs NoSQL deep dive
SQL vs NoSQL deep dive
 
2014.11.14 Data Opportunities with Azure
2014.11.14 Data Opportunities with Azure2014.11.14 Data Opportunities with Azure
2014.11.14 Data Opportunities with Azure
 
Azure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu Ganta
Azure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu GantaAzure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu Ganta
Azure Databricks – Customer Experiences and Lessons Denzil Ribeiro Madhu Ganta
 
Cloud architectural patterns and Microsoft Azure tools
Cloud architectural patterns and Microsoft Azure toolsCloud architectural patterns and Microsoft Azure tools
Cloud architectural patterns and Microsoft Azure tools
 
AWS tutorial-Part58:AWS Cloud Database Products-1st Intro Session
AWS tutorial-Part58:AWS Cloud Database Products-1st Intro SessionAWS tutorial-Part58:AWS Cloud Database Products-1st Intro Session
AWS tutorial-Part58:AWS Cloud Database Products-1st Intro Session
 
Why you should(n't) run your databases in the cloud
Why you should(n't) run your databases in the cloudWhy you should(n't) run your databases in the cloud
Why you should(n't) run your databases in the cloud
 
Sql vs NoSQL-Presentation
 Sql vs NoSQL-Presentation Sql vs NoSQL-Presentation
Sql vs NoSQL-Presentation
 
Introduction-to-MongoDB.pptx
Introduction-to-MongoDB.pptxIntroduction-to-MongoDB.pptx
Introduction-to-MongoDB.pptx
 
Big data technology unit 3
Big data technology unit 3Big data technology unit 3
Big data technology unit 3
 
NoSQL
NoSQLNoSQL
NoSQL
 
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
 
Couchbase - Introduction
Couchbase - IntroductionCouchbase - Introduction
Couchbase - Introduction
 
Selecting best NoSQL
Selecting best NoSQL Selecting best NoSQL
Selecting best NoSQL
 
Azure - Data Platform
Azure - Data PlatformAzure - Data Platform
Azure - Data Platform
 

More from BRIJESH KUMAR

53-Dataset Source and Sink Data flow in Azure Data Factory.pptx
53-Dataset Source and Sink Data flow in Azure Data Factory.pptx53-Dataset Source and Sink Data flow in Azure Data Factory.pptx
53-Dataset Source and Sink Data flow in Azure Data Factory.pptx
BRIJESH KUMAR
 
52- Source and Sink Data flow in Azure Data Factory.pptx
52- Source and Sink Data flow in Azure Data Factory.pptx52- Source and Sink Data flow in Azure Data Factory.pptx
52- Source and Sink Data flow in Azure Data Factory.pptx
BRIJESH KUMAR
 
51- Data flow in Azure Data Factory.pptx
51- Data flow in Azure Data Factory.pptx51- Data flow in Azure Data Factory.pptx
51- Data flow in Azure Data Factory.pptx
BRIJESH KUMAR
 
3- Azure Resource Group.pptx
3- Azure Resource Group.pptx3- Azure Resource Group.pptx
3- Azure Resource Group.pptx
BRIJESH KUMAR
 
1- Introduction of Azure Cloud.pptx
1- Introduction of Azure Cloud.pptx1- Introduction of Azure Cloud.pptx
1- Introduction of Azure Cloud.pptx
BRIJESH KUMAR
 
47- Web Hook Activity in Azure Data Factory.pptx
47- Web Hook Activity in Azure Data Factory.pptx47- Web Hook Activity in Azure Data Factory.pptx
47- Web Hook Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
46- Web Activity in Azure Data Factory.pptx
46- Web Activity in Azure Data Factory.pptx46- Web Activity in Azure Data Factory.pptx
46- Web Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
44- Filter Activity in Azure Data Factory.pptx
44- Filter Activity in Azure Data Factory.pptx44- Filter Activity in Azure Data Factory.pptx
44- Filter Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
43- Wait Activity in Azure Data Factory.pptx
43- Wait Activity in Azure Data Factory.pptx43- Wait Activity in Azure Data Factory.pptx
43- Wait Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
41- Scripts Activity in Azure Data Factory.pptx
41- Scripts Activity in Azure Data Factory.pptx41- Scripts Activity in Azure Data Factory.pptx
41- Scripts Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
39- Lookup Activity in Azure Data Factory.pptx
39- Lookup Activity in Azure Data Factory.pptx39- Lookup Activity in Azure Data Factory.pptx
39- Lookup Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
40 Stored Procedure Activity in Azure Data Factory.pptx
40 Stored Procedure Activity in Azure Data Factory.pptx40 Stored Procedure Activity in Azure Data Factory.pptx
40 Stored Procedure Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
38- Get Metadata Activity in Azure Data Factory.pptx
38- Get Metadata Activity in Azure Data Factory.pptx38- Get Metadata Activity in Azure Data Factory.pptx
38- Get Metadata Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
37- User Properties in Activity in Azure Data Factory.pptx
37- User Properties in Activity in Azure Data Factory.pptx37- User Properties in Activity in Azure Data Factory.pptx
37- User Properties in Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
36- Copy Activity Setting in Azure Data Factory.pptx
36- Copy Activity Setting in Azure Data Factory.pptx36- Copy Activity Setting in Azure Data Factory.pptx
36- Copy Activity Setting in Azure Data Factory.pptx
BRIJESH KUMAR
 
35- Copy Activity in Azure Data Factory.pptx
35- Copy Activity in Azure Data Factory.pptx35- Copy Activity in Azure Data Factory.pptx
35- Copy Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
34- Fail Activity in Azure Data Factory.pptx
34- Fail Activity in Azure Data Factory.pptx34- Fail Activity in Azure Data Factory.pptx
34- Fail Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
33- If Condition Activity in Azure Data Factory.pptx
33- If Condition Activity in Azure Data Factory.pptx33- If Condition Activity in Azure Data Factory.pptx
33- If Condition Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
32- Validation Activity in Azure Data Factory.pptx
32- Validation Activity in Azure Data Factory.pptx32- Validation Activity in Azure Data Factory.pptx
32- Validation Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 
31- Execute Pipeline Activity in Azure Data Factory.pptx
31- Execute Pipeline Activity in Azure Data Factory.pptx31- Execute Pipeline Activity in Azure Data Factory.pptx
31- Execute Pipeline Activity in Azure Data Factory.pptx
BRIJESH KUMAR
 

More from BRIJESH KUMAR (20)

53-Dataset Source and Sink Data flow in Azure Data Factory.pptx
53-Dataset Source and Sink Data flow in Azure Data Factory.pptx53-Dataset Source and Sink Data flow in Azure Data Factory.pptx
53-Dataset Source and Sink Data flow in Azure Data Factory.pptx
 
52- Source and Sink Data flow in Azure Data Factory.pptx
52- Source and Sink Data flow in Azure Data Factory.pptx52- Source and Sink Data flow in Azure Data Factory.pptx
52- Source and Sink Data flow in Azure Data Factory.pptx
 
51- Data flow in Azure Data Factory.pptx
51- Data flow in Azure Data Factory.pptx51- Data flow in Azure Data Factory.pptx
51- Data flow in Azure Data Factory.pptx
 
3- Azure Resource Group.pptx
3- Azure Resource Group.pptx3- Azure Resource Group.pptx
3- Azure Resource Group.pptx
 
1- Introduction of Azure Cloud.pptx
1- Introduction of Azure Cloud.pptx1- Introduction of Azure Cloud.pptx
1- Introduction of Azure Cloud.pptx
 
47- Web Hook Activity in Azure Data Factory.pptx
47- Web Hook Activity in Azure Data Factory.pptx47- Web Hook Activity in Azure Data Factory.pptx
47- Web Hook Activity in Azure Data Factory.pptx
 
46- Web Activity in Azure Data Factory.pptx
46- Web Activity in Azure Data Factory.pptx46- Web Activity in Azure Data Factory.pptx
46- Web Activity in Azure Data Factory.pptx
 
44- Filter Activity in Azure Data Factory.pptx
44- Filter Activity in Azure Data Factory.pptx44- Filter Activity in Azure Data Factory.pptx
44- Filter Activity in Azure Data Factory.pptx
 
43- Wait Activity in Azure Data Factory.pptx
43- Wait Activity in Azure Data Factory.pptx43- Wait Activity in Azure Data Factory.pptx
43- Wait Activity in Azure Data Factory.pptx
 
41- Scripts Activity in Azure Data Factory.pptx
41- Scripts Activity in Azure Data Factory.pptx41- Scripts Activity in Azure Data Factory.pptx
41- Scripts Activity in Azure Data Factory.pptx
 
39- Lookup Activity in Azure Data Factory.pptx
39- Lookup Activity in Azure Data Factory.pptx39- Lookup Activity in Azure Data Factory.pptx
39- Lookup Activity in Azure Data Factory.pptx
 
40 Stored Procedure Activity in Azure Data Factory.pptx
40 Stored Procedure Activity in Azure Data Factory.pptx40 Stored Procedure Activity in Azure Data Factory.pptx
40 Stored Procedure Activity in Azure Data Factory.pptx
 
38- Get Metadata Activity in Azure Data Factory.pptx
38- Get Metadata Activity in Azure Data Factory.pptx38- Get Metadata Activity in Azure Data Factory.pptx
38- Get Metadata Activity in Azure Data Factory.pptx
 
37- User Properties in Activity in Azure Data Factory.pptx
37- User Properties in Activity in Azure Data Factory.pptx37- User Properties in Activity in Azure Data Factory.pptx
37- User Properties in Activity in Azure Data Factory.pptx
 
36- Copy Activity Setting in Azure Data Factory.pptx
36- Copy Activity Setting in Azure Data Factory.pptx36- Copy Activity Setting in Azure Data Factory.pptx
36- Copy Activity Setting in Azure Data Factory.pptx
 
35- Copy Activity in Azure Data Factory.pptx
35- Copy Activity in Azure Data Factory.pptx35- Copy Activity in Azure Data Factory.pptx
35- Copy Activity in Azure Data Factory.pptx
 
34- Fail Activity in Azure Data Factory.pptx
34- Fail Activity in Azure Data Factory.pptx34- Fail Activity in Azure Data Factory.pptx
34- Fail Activity in Azure Data Factory.pptx
 
33- If Condition Activity in Azure Data Factory.pptx
33- If Condition Activity in Azure Data Factory.pptx33- If Condition Activity in Azure Data Factory.pptx
33- If Condition Activity in Azure Data Factory.pptx
 
32- Validation Activity in Azure Data Factory.pptx
32- Validation Activity in Azure Data Factory.pptx32- Validation Activity in Azure Data Factory.pptx
32- Validation Activity in Azure Data Factory.pptx
 
31- Execute Pipeline Activity in Azure Data Factory.pptx
31- Execute Pipeline Activity in Azure Data Factory.pptx31- Execute Pipeline Activity in Azure Data Factory.pptx
31- Execute Pipeline Activity in Azure Data Factory.pptx
 

Recently uploaded

21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
OliverVillanueva13
 
Java Full Stack Developer Interview Questions PDF By ScholarHat
Java Full Stack Developer Interview Questions PDF By ScholarHatJava Full Stack Developer Interview Questions PDF By ScholarHat
Java Full Stack Developer Interview Questions PDF By ScholarHat
Scholarhat
 
Reports in Odoo 17 Point of Sale - Odoo Slides
Reports in Odoo 17 Point of Sale - Odoo SlidesReports in Odoo 17 Point of Sale - Odoo Slides
Reports in Odoo 17 Point of Sale - Odoo Slides
Celine George
 
Microservices Interview Questions and Answers PDF By ScholarHat
Microservices Interview Questions and Answers PDF By ScholarHatMicroservices Interview Questions and Answers PDF By ScholarHat
Microservices Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
How to Create an XLS Report in Odoo 17 - Odoo 17 Slides
How to Create an XLS Report in Odoo 17 - Odoo 17 SlidesHow to Create an XLS Report in Odoo 17 - Odoo 17 Slides
How to Create an XLS Report in Odoo 17 - Odoo 17 Slides
Celine George
 
Lecture Notes Unit5 chapter 15 PL/SQL Programming
Lecture Notes Unit5 chapter 15 PL/SQL ProgrammingLecture Notes Unit5 chapter 15 PL/SQL Programming
Lecture Notes Unit5 chapter 15 PL/SQL Programming
Murugan146644
 
How to Make a Field Storable in Odoo 17 - Odoo Slides
How to Make a Field Storable in Odoo 17 - Odoo SlidesHow to Make a Field Storable in Odoo 17 - Odoo Slides
How to Make a Field Storable in Odoo 17 - Odoo Slides
Celine George
 
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry  by V.Jesinthal MaryPlato and Aristotle's Views on Poetry  by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
jessintv
 
How to install python packages from Pycharm
How to install python packages from PycharmHow to install python packages from Pycharm
How to install python packages from Pycharm
Celine George
 
Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024
APEC Melmaruvathur
 
FINAL MATATAG PE and Health CG 2023 Grades 4-10.pdf
FINAL MATATAG PE and Health CG 2023 Grades 4-10.pdfFINAL MATATAG PE and Health CG 2023 Grades 4-10.pdf
FINAL MATATAG PE and Health CG 2023 Grades 4-10.pdf
HayddieMaeCapunong
 
2024 Winter SWAYAM NPTEL & A Student.pptx
2024 Winter SWAYAM NPTEL & A Student.pptx2024 Winter SWAYAM NPTEL & A Student.pptx
2024 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
NLC 2024 - Certificate of Recognition
NLC  2024  -  Certificate of RecognitionNLC  2024  -  Certificate of Recognition
NLC 2024 - Certificate of Recognition
Deped
 
SQL Server Interview Questions PDF By ScholarHat
SQL Server Interview Questions PDF By ScholarHatSQL Server Interview Questions PDF By ScholarHat
SQL Server Interview Questions PDF By ScholarHat
Scholarhat
 
How to Fix Field Does Not Exist Error in Odoo 17
How to Fix Field Does Not Exist Error in Odoo 17How to Fix Field Does Not Exist Error in Odoo 17
How to Fix Field Does Not Exist Error in Odoo 17
Celine George
 
Dreams Realised by mahadev desai 9 1.pptx
Dreams Realised by mahadev desai 9 1.pptxDreams Realised by mahadev desai 9 1.pptx
Dreams Realised by mahadev desai 9 1.pptx
AncyTEnglish
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Official MATATAG Weekly Lesson Log Format.pdf
Official MATATAG Weekly Lesson Log Format.pdfOfficial MATATAG Weekly Lesson Log Format.pdf
Official MATATAG Weekly Lesson Log Format.pdf
JaReah
 
Lecture Notes Unit4 Chapter13 users , roles and privileges
Lecture Notes Unit4 Chapter13 users , roles and privilegesLecture Notes Unit4 Chapter13 users , roles and privileges
Lecture Notes Unit4 Chapter13 users , roles and privileges
Murugan146644
 
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 SlidesHow to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
Celine George
 

Recently uploaded (20)

21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
 
Java Full Stack Developer Interview Questions PDF By ScholarHat
Java Full Stack Developer Interview Questions PDF By ScholarHatJava Full Stack Developer Interview Questions PDF By ScholarHat
Java Full Stack Developer Interview Questions PDF By ScholarHat
 
Reports in Odoo 17 Point of Sale - Odoo Slides
Reports in Odoo 17 Point of Sale - Odoo SlidesReports in Odoo 17 Point of Sale - Odoo Slides
Reports in Odoo 17 Point of Sale - Odoo Slides
 
Microservices Interview Questions and Answers PDF By ScholarHat
Microservices Interview Questions and Answers PDF By ScholarHatMicroservices Interview Questions and Answers PDF By ScholarHat
Microservices Interview Questions and Answers PDF By ScholarHat
 
How to Create an XLS Report in Odoo 17 - Odoo 17 Slides
How to Create an XLS Report in Odoo 17 - Odoo 17 SlidesHow to Create an XLS Report in Odoo 17 - Odoo 17 Slides
How to Create an XLS Report in Odoo 17 - Odoo 17 Slides
 
Lecture Notes Unit5 chapter 15 PL/SQL Programming
Lecture Notes Unit5 chapter 15 PL/SQL ProgrammingLecture Notes Unit5 chapter 15 PL/SQL Programming
Lecture Notes Unit5 chapter 15 PL/SQL Programming
 
How to Make a Field Storable in Odoo 17 - Odoo Slides
How to Make a Field Storable in Odoo 17 - Odoo SlidesHow to Make a Field Storable in Odoo 17 - Odoo Slides
How to Make a Field Storable in Odoo 17 - Odoo Slides
 
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry  by V.Jesinthal MaryPlato and Aristotle's Views on Poetry  by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
 
How to install python packages from Pycharm
How to install python packages from PycharmHow to install python packages from Pycharm
How to install python packages from Pycharm
 
Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024
 
FINAL MATATAG PE and Health CG 2023 Grades 4-10.pdf
FINAL MATATAG PE and Health CG 2023 Grades 4-10.pdfFINAL MATATAG PE and Health CG 2023 Grades 4-10.pdf
FINAL MATATAG PE and Health CG 2023 Grades 4-10.pdf
 
2024 Winter SWAYAM NPTEL & A Student.pptx
2024 Winter SWAYAM NPTEL & A Student.pptx2024 Winter SWAYAM NPTEL & A Student.pptx
2024 Winter SWAYAM NPTEL & A Student.pptx
 
NLC 2024 - Certificate of Recognition
NLC  2024  -  Certificate of RecognitionNLC  2024  -  Certificate of Recognition
NLC 2024 - Certificate of Recognition
 
SQL Server Interview Questions PDF By ScholarHat
SQL Server Interview Questions PDF By ScholarHatSQL Server Interview Questions PDF By ScholarHat
SQL Server Interview Questions PDF By ScholarHat
 
How to Fix Field Does Not Exist Error in Odoo 17
How to Fix Field Does Not Exist Error in Odoo 17How to Fix Field Does Not Exist Error in Odoo 17
How to Fix Field Does Not Exist Error in Odoo 17
 
Dreams Realised by mahadev desai 9 1.pptx
Dreams Realised by mahadev desai 9 1.pptxDreams Realised by mahadev desai 9 1.pptx
Dreams Realised by mahadev desai 9 1.pptx
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Official MATATAG Weekly Lesson Log Format.pdf
Official MATATAG Weekly Lesson Log Format.pdfOfficial MATATAG Weekly Lesson Log Format.pdf
Official MATATAG Weekly Lesson Log Format.pdf
 
Lecture Notes Unit4 Chapter13 users , roles and privileges
Lecture Notes Unit4 Chapter13 users , roles and privilegesLecture Notes Unit4 Chapter13 users , roles and privileges
Lecture Notes Unit4 Chapter13 users , roles and privileges
 
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 SlidesHow to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
 

Azure cosmos db, Azure no-SQL database,