0% found this document useful (0 votes)
606 views4 pages

Data Analyst Associate Cert Training Resources

This document provides resources for Databricks' Data Analyst Associate Certification training, including links to self-paced training courses, information on registering for the certification exam, and an FAQ section answering common questions about the exam process, prerequisites, costs, and obtaining an exam voucher through an accreditation program. The document also includes SQL code examples for setting up sample datasets in a Databricks SQL environment for the training courses.

Uploaded by

jose
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
606 views4 pages

Data Analyst Associate Cert Training Resources

This document provides resources for Databricks' Data Analyst Associate Certification training, including links to self-paced training courses, information on registering for the certification exam, and an FAQ section answering common questions about the exam process, prerequisites, costs, and obtaining an exam voucher through an accreditation program. The document also includes SQL code examples for setting up sample datasets in a Databricks SQL environment for the training courses.

Uploaded by

jose
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Data Analyst Associate Cert Training

Resources Doc
Resources

FAQ

Resources
● https://databricks-academy.github.io/data-analysis-with-databricks-sql/v1.1.4/
● Survey
● Free Training: Databricks Lakehouse Fundamentals
● Links to Self-Paced Training
○ Data Analysis with Databricks SQL
○ How to Integrate BI Tools with Databricks SQL
○ Certification Overview: Databricks Certified Data Analyst Associate Exam
● Link to Register for Databricks Certification Exam

SQL if you want to setup the examples in your DB SQL Environment


CREATE SCHEMA IF NOT EXISTS change_this_to_your_schema_or_database_name;

USE change_this_to_your_schema_or_database_name;

DROP TABLE IF EXISTS temp_delays;


DROP TABLE IF EXISTS flight_delays;
CREATE TABLE temp_delays USING CSV OPTIONS (path
"wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databricks/v01
/flights/departuredelays.csv", header "true", inferSchema "true");
CREATE TABLE flight_delays AS SELECT * FROM temp_delays;
DROP TABLE temp_delays;
DROP TABLE IF EXISTS sales;
CREATE TABLE sales AS
SELECT * FROM
delta.`wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databric
ks/v01/sales`;
DROP TABLE IF EXISTS promo_prices;
CREATE TABLE promo_prices AS
SELECT * FROM
delta.`wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databric
ks/v01/promo_prices`;
DROP TABLE IF EXISTS sales_orders;
CREATE TABLE sales_orders AS
SELECT * FROM
json.`wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databrick
s/v01/sales_orders`;
DROP TABLE IF EXISTS temp_loyalty_segments;
DROP TABLE IF EXISTS loyalty_segments;
CREATE TABLE temp_loyalty_segments USING CSV OPTIONS (path
"wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databricks/v01
/loyalty_segments/loyalty_segment.csv", header "true", inferSchema "true");
CREATE TABLE loyalty_segments AS SELECT * FROM temp_loyalty_segments;
DROP TABLE temp_loyalty_segments;
DROP TABLE IF EXISTS temp_customers;
DROP TABLE IF EXISTS customers;
CREATE TABLE temp_customers USING CSV OPTIONS (path
"wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databricks/v01
/customers/customers.csv", header "true", inferSchema "true");
CREATE TABLE customers AS SELECT * FROM temp_customers;
DROP TABLE temp_customers;
DROP TABLE IF EXISTS temp_suppliers;
DROP TABLE IF EXISTS suppliers;
CREATE TABLE temp_suppliers USING CSV OPTIONS (path
"wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databricks/v01
/suppliers/suppliers.csv", header "true", inferSchema "true");
CREATE TABLE suppliers AS SELECT * FROM temp_suppliers;
DROP TABLE temp_suppliers;
DROP TABLE IF EXISTS temp_suppliers;
DROP TABLE IF EXISTS source_suppliers;
CREATE TABLE temp_suppliers USING CSV OPTIONS (path
"wasbs://courseware@dbacademy.blob.core.windows.net/data-analysis-with-databricks/v01
/suppliers/suppliers.csv", header "true", inferSchema "true");
CREATE TABLE source_suppliers AS SELECT * FROM temp_suppliers;
DROP TABLE temp_suppliers;
FAQ
General link - https://files.training.databricks.com/lms/docebo/databricks-academy-faq.pdf

Is there a prerequisite for this exam?


Data Analyst Learning Plan in Databricks Academy

When do I get the badge?


Through Accredible.com usually one hour later

When do I know if I passed?


After taking the exam you will get unofficial results immediately.

Is it free or a cost?
The certification exam costs $200

How do I get a voucher?


Complete the Fundamentals of the Databricks Lakehouse Platform Accreditation by July 29,
provide your proof of completion on our feedback survey and you will receive 1 voucher to
take on any Databricks certification exam before October 31, 2022. You will also be entered
into a raffle where 25 lucky winners will be sent some cool Databricks swag!
● This is a 20-minute assessment that will test your knowledge about fundamental
concepts about the Databricks Lakehouse Platform. This accreditation is the
beginning step in all of the Databricks Academy learning plans for data analysts,
machine learning practitioners, data engineers, and platform administrators. Business
leaders are also welcome to take this assessment.

When will I get my voucher?


By August 12 via email, assuming you filled out the survey.

Will this recording be shared?


The recording will be shared before the end of the week.

What if I don’t have a Databricks workspace?


Try Databricks for free

What if I have a Databricks workspace but can’t access DB SQL?


Please talk to your admin to enable it for you
What if the webinar platform freezes?
Please refresh your web page

Is there a practice exam?


Not yet, coming soon!

Can I retake the exam?


You can pay to retake the exam.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy