Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated for SEO, added tracker #7

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,24 @@ published: 2024-09-29T14:00:00.000Z
description: >-
New Fabric Certification Exam DP-700
tags:
- Exam
- Certification
- Fabric
- DP-700
category: Fabric
image: "./cover.png"
draft: false
---

# New Fabric Certification Exam: DP-700

In this video, Fabric Developer talks about the second certification exam for Microsoft Fabric, DP-700. Dave and MJ have both passed the exam for DP-600 for Analytics Engineer. They discuss what the two exams are about and how it differs from the each other. DP-600 is more focused on analytics and Power BI, while DP-700 is more focused on data engineering, e.g. Onelake, Warehouse, Lakehouse etc.
DP-700 exam will be available on October 22, 2024 towards *Fabric Data Engineer Associate*!

This video in FabricDeveloper talks about the second certification exam for Microsoft Fabric, DP-700. Dave and MJ have both passed the exam for DP-600 for Analytics Engineer. They discuss what the two exams are about and how it differs from the each other. DP-600 is more focused on analytics and Power BI, while DP-700 is more focused on data engineering, specifically:
* ingesting and transforming data
* securing and managing an analytics solution
* monitoring and optimizing an analytics solution

It also covers some interesting skillsets including SQL, PySpark and KQL (Kusto Query Language).

<iframe width="100%" height="468" src="https://www.youtube.com/embed/x3ou_v0tCjo" title="DP-700 Fabric Data Engineer Certification Exam" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

Expand Down
15 changes: 15 additions & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ const siteLang = lang.replace('_', '-')
media={favicon.theme && `(prefers-color-scheme: ${favicon.theme})`}
/>
))}

<!-- Set the theme before the page is rendered to avoid a flash -->
<script is:inline define:vars={{DEFAULT_THEME: DEFAULT_THEME, LIGHT_MODE: LIGHT_MODE, DARK_MODE: DARK_MODE, AUTO_MODE: AUTO_MODE}}>
const theme = localStorage.getItem('theme') || DEFAULT_THEME;
Expand All @@ -108,6 +109,20 @@ const siteLang = lang.replace('_', '-')
}
</script>

<!-- Plausible tag -->
<script defer data-domain="fabricdeveloper.com" src="https://plausible.io/js/script.hash.outbound-links.js"></script>
<script>window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }</script>

<!-- Google tag (gtag.js) -->
<script is:inline async src="https://www.googletagmanager.com/gtag/js?id=G-N7VKBYP5F4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-N7VKBYP5F4');
</script>

<slot name="head"></slot>

<link rel="stylesheet" href="https://cdn.staticfile.net/KaTeX/0.16.9/katex.min.css" integrity="sha384-n8MVd4RsNIU0tAv4ct0nTaAbDJwPJzDEaqSD1odI+WdtXRGWt2kTvGFasHpSy3SV" crossorigin="anonymous">
Expand Down
Loading