Monday, June 29, 2020

Key Concepts and Focus Areas to Clear Azure AZ900 examination

In our last blog post on Microsoft Azure AZ-900 fundamentals certification, We had given a set of tips to quickly and easily clear the exam, only if you are running short on time. We thought again and it would be better if we could again prioritize and again give a subset of topics to be learned, where most questions usually come from. 

Personal recommendation is to go through this 3 hour AZ900 video course from FreeCodeCamp and ExamPro and then do practice tests. Separate blog post available on the same.

If you have already started looking into the course syllabus, you would know that the exam is divided into four sub divisions,
  1. Understanding of Cloud Concepts.
  2. Understanding of Core Azure Services.
  3. Understanding of Security, Privacy, Compliance and Trust.
  4. Understanding of Azure Service Level Agreements, Pricing and Life Cycle.
For the first section of Cloud Concepts, below are the key concepts you should learn,

  1. Differentiate Iaas, Paas and SaaS. Learn examples for each in Azure. 
  2. Classify common resources( Virtual Machine, Azure SQL server, Web Apps) to IaaS, PaaS, SaaS etc.
  3. Difference between Capital Expenditure and Operational Expenditure.
  4. Differentiate and understating of Dynamic Scalability, Fault Tolerance, Disaster Recovery, Elasticity and Low Latency.
  5. Differentiate between Private, Public and Hybrid Cloud ?
  6. Understanding of Regions, Availability Sets and High Availability in Azure.
  7. Basic understanding of High Availability Regions and how it works ? 
  8. Understanding of Resources and Resource Group. 

When move on to the next section of the exam, which is on Azure Core Services, below are the most crucial topics.
  1. Basic understanding of the following Azure Core Services. Easy Summary read here.
      1. Azure Machine Learning Studio. - Predictive Analytics package.
      2. Azure IOT Hub. - IOT device communication services.
      3. Azure Congnitive Services - Speech to text, image processing, NLP services.
      4. Azure HDInsights  - Opensource Apache Hadoop platform.
      5. Azure SQL Server - Relational Database Service.
      6. Azure Cosmos DB - NoSQL Database service in Azure.
      7. Azure Synapse Analytics - Datawarehouse optimized database solution.
      8. Azure Databricks - Apache Spark based analytics service.
      9. Azure Functions - Serverless compute services to host web apps.
      10. Azure App Service - Service to host web apps.
      11. Azure Application insights - Insight app, showing anomalies in web apps.
  2. Difference between Compute Services and Server-less Compute Services ? and examples.
  3. Understanding of Different Interfaces to create resources in Azure ? CLI, Azure Portal, PowerShell.
  4. Using Azure Interfaces to create resources from Windows, Linux, MAC and Android, compatibility of each interface to OS ?
    • Windows - CLI, PowerShell, Portal
    • Linux - CLI, Portal.
    • MAC - Poweshell, Portal.
    • Iphone - Portal and CLI.
  5. Understanding of Azure Resource Manager ?
  6. Understanding of Scale Sets in Azure and limitations of same ?
  7. Implementing high availability in Azure ? Minimum configuration required ?
    • 2 VMs and 2 availability zones
  8. Concept of Virtual Networks, Subnets, Network Security Groups in Azure.
  9. Understanding Azure Load Balancer, Azure VPN/Local Gateways and Azure Firewall ?
  10. What is Azure Monitor and it's responsibilities?
  11. What is Azure Advisor and it's responsibilities?
  12. Differentiating Azure Monitor and Azure Advisor responsibilities. 
  13. Types of Storage Services in Azure ? Different scenarios of usage.
Below are the main topics under security, privacy, compliance and trust that one needs to read on,

  1. What is Azure Active Directory ? 
  2. Azure Active Directory integration with On-premise Active Directory ?
  3. Multi-factor Authentication in Azure?
  4. Azure Security Center ?
  5. Azure Information Protection Service in Azure ? ( Protects emails and documents)
  6. Setting Locks for Resources in Azure ? Multiple locks on same resources ?
  7. Understanding of policies like GDPR, Government, NIST, ISO standards etc.
  8. Understanding of setting custom policies in Azure ?
  9. Azure Key Vault and it's significance ?
  10. Azure DDoS protection services, difference between Basic and Standard schemes ?
  11. Azure Role Based Access Control?
  12. Azure Compliance Manager ?

The final section is on Pricing, SLA and Lifecycle of Products, the key concepts to look here are below,

  1. Azure Subscriptions and Azure Management Groups ? Hierarchy of Subscriptions/Management Groups, Can Subscriptions be clubbed ? Can resources be moved from one subscription to another ?
  2. Subscription management understanding ?
  3. Difference between Public Preview, Private Preview and General Availability ?
  4. TCO calculator understanding.
  5. Understanding of SLA in Azure ? Percentage of uptime? 
  6. Combined Composite SLA's when combining two Azure Products ?
  7. How to improve SLA's by going for two region deployment, high availability etc.
  8. Understanding of how Azure pays you back when SLA is not met ?
  9. Azure Support plans available, differentiate Basic, Developer, Standard, Professional Direct and Enterprise Support.

Note: The questions and topics discussed above are the key focus areas of AZ900 exams, however you should run through the other sections of the exams to gain confidence. 

Sunday, June 28, 2020

BODS - SQL Server VARCHAR(Max) source field to target VARCHAR [SOLVED]

Scenario: We had this scenario, where the SQL server database column in our source table was created as VARCHAR(MAX), in order to accommodate large descriptions. This field is to be stored into a VARCHAR(65000) field on the target table. 

Issue: When importing this VARCHAR(MAX) source field, since BODS doesn't have the same datatype defined, this gets imported as LONG datatype in BODS. When you try to map this LONG filed to target VARCHAR field, there is a conversion error that comes up. 


Resolution: The resolution to this problem is to convert the LONG datatype identified by BODS to a VARCHAR field. The CAST. and other commonly used Conversion functions are not capable enough to handle this scenario. We referred to the BODS designer documentation and found that there are two functions to convert Long datatypes to Varchar and vice-versa, 

  • LONG_TO_VARCHAR(TableName.ColumnName, IndexPosition, Length) - Converts Long datatype to Varchar. 
             The function expects three parameters, 
  1. TableName.ColumnName, suppose your table is STUDENTS and column name is REMARKS, This part of the function will be ' STUDENTS.REMARKS '.
  2. Maximum Size - Second argument is the maximum size of the long column to be considered for conversion.
  3. Starting Position(Optional argument) - The third argument would be the Index position to start from for the conversion.
Screenshot from Reference Guide,
        

        Example - 
            LONG_TO_VARCHAR( <column_name>, <max_size>, <start_position> )
            LONG_TO_VARCHAR( STUDENT.REMARKS, 10000, 1) 

        The above function says, convert STUDENT.REMARKS field into a varchar datatype from Long, starting from index position 1 and go up till string index position of 10000. This converted field can now be stored into a VARCHAR field in transform/target.

Saturday, June 27, 2020

How I cleared AZ900 - Approach, Materials and Mock/Practice exam - June 2020


So finally I cleared my AZ 900 examination today and got my first Azure Badge. It was an online exam scheduled at 7 15 PM IST. I joined online at around 6 30 PM and cleared my test prerequisites checks, around 6 45 the 'Begin Exam' link started appearing.  

A proctor(invigilator) will join you on chat and verify your governemnent ID details and the surroundings of your test room. Once they are convinced that you are a fair candidate, They initiate the exam. 

Coming to the exam,  I had a total of 32 questions, and was fairly easy considering I prepared just a couple of days ahead. Below are the materials that I used to prepare, 


  • FreeCodeCamp.Org crash course in Youtube - Partnered with ExamPro.com
This is the only video tutorial I went through to crack the exam. It is just 3 hours long, really easy and straight forward. Doesn't overburden you with a lot of things and is straight to point. 



        This is a very exhaustive course. If you really have the time, do consider giving this course a try. More than the course, there are two practice set of questions at the end of this course. First one with around 115 questions and second with 100 questions. The questions I got on the exam were mostly connected to the questions on this course. Maybe a little re-worded from the course, but the content sticks to the same. I did both these question sets around 2 to 3 times on exam day and made sure I consistently got 90%+ scores. 

       I also went through this dump, this one is really close to the exam as well. You can expect most questions in this exam to be more or less connected to the questions discussed here. 

Out of the 32 questions, guess around 4-5 were not from the dump, but were more or less connected to questions from these dumps.

Update - 06/29/2020 - Suggested read on Key Focus Areas and Concepts to Clear AZ900 exam

To summarize, if you are running short on time. Start with the 3 hour FreeCodeCamp course. Thoroughly take notes and understand. Once you are done with the course, repeat, repeat, and again repeat these practice questions until you consistently get a 90%+ score.


Monday, June 22, 2020

Resources in Microsoft Azure - Hierarchy, Prerequisite and Examples

Resources are the most fundamental entity in a Microsoft Azure cloud solution. Anything from Virtual Machines to Azure SQL databases to Storage accounts can be classified as an Azure resource. 

To create a resource in Azure, as a prerequisite, you would require four levels of hierarchy, 'Resource' being the last in the tree and Management group being the first. The below diagram explains a sample, where we examine the resources created for a sample ETL project. Where you have two database servers, one for source and target, a resource each for both. Since they are both resources that point to databases, logically I grouped them under one Resource Group. 

Here in the example below, we created one resource group for the server hosting the ETL tool. The images of this server for multiple environments( Development, Test, Production), all can be logically grouped under one single Resource Group again. Same way for any visualization tool. 

Azure AZ900 Hierarchy



The first and fore-most prerequisite to create a resource is to have a Resource group. Again a resource group is only created under a Subscription group and a subscription group under a Management group.

Below are the four levels,
  1. Management Group - Logical containers holding multiple subscriptions
  2. Subscription - Logical containers holding Resource Groups and billing in Azure.
  3. Resource Group - Logical containers grouping multiple individual resource, separately or individually.
  4. Resources - Lowest level of entity/object in Azure.                       

More reads on Azure Resource and it's hierarchy are available in below link.

Monday, June 8, 2020

Creating your First Azure Cloud Free Account - Step by Step

  
Recently I tried out creating my first Azure free account to play around the portal and prepare for the 'AZ-900' fundamentals certification. Below are the steps to create your own, it's really easy, however you require a few prerequisites upfront.

Prerequisites to create an Azure free account,
  1. A valid working Phone number.
  2. A valid Credit/Debit Card.
  3. A Microsoft Account username. 

First you need a Microsoft Account, I already had one as I use a secondary outlook account. If you don't have one it is really easy to create, you can create one here at https://account.microsoft.com/account?lang=en-hk .

Secondly you need to have a valid Credit/Debit Card, This is mandatory, I was charged Rs 2, when I signed up. Other than this nominal fee, Microsoft doesn't charge you unless you allow it to. If you exhaust up your resources, you will be asked if you need an upgrade, if you opt for one, you will be charged based on the plan you opted for. So for people looking to create a new account, this shouldn't be a worry/deterrent. 

Thirdly, you need to have a valid phone number which is associated to your Microsoft account, this is where you receive a One Time Password(OTP) which you have to provide during the sign-up process. 

Once you have the above prerequisites ready, go to  https://azure.microsoft.com/en-us/free/, click on Start Free,


Create Azure Free Account


This will take you to a new form page, where you have to give details across four sub sections, 
About you, Identity verification by Phone, Verification by Card, and Agreement.

About you

In About you section, basic details are requested for, from First Name, Last Name, Email Address, Phone Number and Organization. See screenshot below,




Here PAN ID is optional.

Verification by Phone,

In the second section, you have to verify your mobile number with a one-time-password (OTP) send to your mobile number. 



Identity Verification by Card


This is where you have verify your identity, by providing your Debit/Credit card details.



I was charged a very nominal Rs 2, while creating the account.

Sign Agreeement




That's it, once you are done. You can login to your free account and start exploring. Happy learning everyone.