<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tutorials &#8211; SQLpowered.com</title>
	<atom:link href="https://sqlpowered.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>https://sqlpowered.com</link>
	<description>SQL Server + BI</description>
	<lastBuildDate>Sun, 16 Jun 2024 14:13:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://sqlpowered.com/wp-content/uploads/2020/07/FavIcon-e1594067873682-99x100.png</url>
	<title>Tutorials &#8211; SQLpowered.com</title>
	<link>https://sqlpowered.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Creating an Assembly</title>
		<link>https://sqlpowered.com/creating-an-assembly/</link>
					<comments>https://sqlpowered.com/creating-an-assembly/#respond</comments>
		
		<dc:creator><![CDATA[Jan Dvořák]]></dc:creator>
		<pubDate>Sun, 16 Jun 2024 14:13:34 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">https://sqlpowered.com/?p=5701</guid>

					<description><![CDATA[Creating an assembly involves several steps, including setting up the necessary permissions, writing the .NET code, and then loading the assembly into SQL Server. Here&#8217;s a step-by-step guide to help you create an assembly in SQL Server: 1. Prepare the .NET Assembly First, you need to create a .NET assembly...]]></description>
										<content:encoded><![CDATA[<p>Creating an assembly involves several steps, including setting up the necessary permissions, writing the .NET code, and then loading the assembly into SQL Server. Here&#8217;s a step-by-step guide to help you create an assembly in SQL Server:</p>
<h2>1. Prepare the .NET Assembly</h2>
<p>First, you need to create a .NET assembly (DLL) using a .NET language like C#. Here’s a simple example:</p>
<h3>Create a C# Class Library</h3>
<ol>
<li>Open Visual Studio and create a new Class Library project.</li>
<li>Write your code. For example, you can create a simple method that adds two numbers:</li>
</ol>
<pre class="EnlighterJSRAW" data-enlighter-language="csharp">using System;

namespace SqlServerAssembly
{
    public class MathFunctions
    {
        public static int Add(int a, int b)
        {
            return a + b;
        }
    }
}
</pre>
<ol start="3">
<li>Build the project to generate the DLL file. Note the path where the DLL is saved.</li>
</ol>
<h2>2. Enable CLR Integration</h2>
<p>By default, CLR integration is disabled in SQL Server. You need to enable it using the following SQL commands:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="sql">sp_configure 'clr enabled', 1;
RECONFIGURE;
</pre>
<h2>3. Load the Assembly</h2>
<p>Next, you need to load the assembly into SQL Server.</p>
<ol>
<li>Open SQL Server Management Studio (SSMS).</li>
<li>Connect to your database.</li>
<li>Use the following T-SQL commands to create an assembly and reference the DLL you created:</li>
</ol>
<pre class="EnlighterJSRAW" data-enlighter-language="sql">CREATE ASSEMBLY [SqlServerAssembly]
FROM 'C:\path\to\your\assembly\SqlServerAssembly.dll'
WITH PERMISSION_SET = SAFE;
</pre>
<h2>4. Create Functions or Procedures to Use the Assembly</h2>
<p>After loading the assembly, you need to create functions or stored procedures to call the methods from the assembly.</p>
<p>Create a SQL function that uses the <code>Add</code> method from your assembly:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="sql">CREATE FUNCTION dbo.AddNumbers (@a INT, @b INT)
RETURNS INT
AS EXTERNAL NAME [SqlServerAssembly].[SqlServerAssembly.MathFunctions].[Add];
</pre>
<h2>5. Test the Assembly</h2>
<p>Finally, you can test the function to ensure it works correctly.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="sql">SELECT dbo.AddNumbers(5, 10);
</pre>
<h2>Summary</h2>
<ul>
<li><strong>Create a .NET assembly</strong>: Write and compile a class library in a .NET language like C#.</li>
<li><strong>Enable CLR</strong>: Use <code>sp_configure</code> to enable CLR integration.</li>
<li><strong>Load the assembly</strong>: Use the <code>CREATE ASSEMBLY</code> command to load your DLL into SQL Server.</li>
<li><strong>Create SQL functions or procedures</strong>: Use <code>CREATE FUNCTION</code> or <code>CREATE PROCEDURE</code> to expose the methods from your assembly.</li>
<li><strong>Test the function</strong>: Call your function to verify that it works as expected.</li>
</ul>
<p>This guide covers the basic steps required to create and use an assembly. Depending on your specific needs, you may need to adjust permissions, handle complex types, or manage different versions of assemblies.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sqlpowered.com/creating-an-assembly/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create a new Power BI administrator</title>
		<link>https://sqlpowered.com/create-a-new-power-bi-administrator/</link>
					<comments>https://sqlpowered.com/create-a-new-power-bi-administrator/#respond</comments>
		
		<dc:creator><![CDATA[Jan Dvořák]]></dc:creator>
		<pubDate>Tue, 23 Mar 2021 23:39:48 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">https://sqlpowered.com/?p=4987</guid>

					<description><![CDATA[In this step-by-step tutorial, we will create a new user in Azure Active Directory, sign him for the first time in the Power BI cloud service and promote him to be the Power BI administrator. This will allow the user to perform full administration of the organizational Power BI tenant....]]></description>
										<content:encoded><![CDATA[<p>In this step-by-step tutorial, we will create a new user in Azure Active Directory, sign him for the first time in the Power BI cloud service and promote him to be the Power BI administrator. This will allow the user to perform full administration of the organizational Power BI tenant.</p>
<h3>1. Create a new user in Azure Active Directory</h3>
<p>Log in to the Azure Portal, navigate to the Azure Active Directory item and click on Users.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-5012" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1.png" alt="" width="396" height="293" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1.png 810w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-300x222.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-135x100.png 135w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-768x568.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-360x266.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-160x118.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-320x237.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-331x245.png 331w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-460x340.png 460w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-609x450.png 609w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-676x500.png 676w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_1-520x385.png 520w" sizes="(max-width: 396px) 100vw, 396px" /></p>
<p>Press the + New user button.</p>
<p><img decoding="async" class="alignnone wp-image-4997" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3.png" alt="" width="295" height="119" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3.png 652w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3-300x121.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3-150x61.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3-360x145.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3-160x65.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3-320x129.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_3-520x210.png 520w" sizes="(max-width: 295px) 100vw, 295px" /></p>
<p>Create a new user. For this tutorial, we will call him Power BI Admin and powerbiadmin@sqlpowered.com account name (email address) will be used.<br />
<strong>Don&#8217;t forget to click the Show Password box and note the password. We will need it in the next step!<br />
</strong>When completed, press the create button. You should see the newly created user in the list of Azure AD users.<strong><br />
</strong></p>
<p><img decoding="async" class="wp-image-4998 alignnone" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4.png" alt="" width="514" height="616" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4.png 1264w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-250x300.png 250w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-854x1024.png 854w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-83x100.png 83w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-768x921.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-360x432.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-133x160.png 133w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-267x320.png 267w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-204x245.png 204w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-283x340.png 283w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-375x450.png 375w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-417x500.png 417w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_4-520x624.png 520w" sizes="(max-width: 514px) 100vw, 514px" /></p>
<h3>2. Sign in to the Power BI</h3>
<p>Go to the <a href="http://powerbi.microsoft.com">powerbi.microsoft.com</a> and sign it with the credentials created above (user name (email) and password).</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4999" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5.png" alt="" width="967" height="78" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5.png 1772w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-300x24.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-1024x83.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-150x12.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-768x62.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-1536x124.png 1536w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-360x29.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-160x13.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-320x26.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-520x42.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-720x58.png 720w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-980x79.png 980w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_5-1320x107.png 1320w" sizes="auto, (max-width: 967px) 100vw, 967px" /></p>
<p><img loading="lazy" decoding="async" class=" wp-image-5000 alignnone" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6.png" alt="" width="383" height="271" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6.png 651w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-300x212.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-142x100.png 142w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-360x254.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-160x113.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-320x226.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-347x245.png 347w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-481x340.png 481w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-637x450.png 637w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_6-520x367.png 520w" sizes="auto, (max-width: 383px) 100vw, 383px" /></p>
<p>Because the password set in Azure AD is only temporal and must be changed the first time the user is log in to any Microsoft service, insert the current password in the Current password box and then insert a different new password which should be used by the user permanently and sign in.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5001" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7.png" alt="" width="206" height="227" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7.png 639w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-273x300.png 273w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-91x100.png 91w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-360x396.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-145x160.png 145w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-291x320.png 291w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-223x245.png 223w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-309x340.png 309w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-409x450.png 409w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-454x500.png 454w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_7-520x572.png 520w" sizes="auto, (max-width: 206px) 100vw, 206px" /></p>
<p>Now the password was changed and you will be notified that an account with the same name already exists and you need to sign in again with the new password set in the previous step. This is just a not very clear request to sign in again with the new password.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5002" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8.png" alt="" width="419" height="179" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8.png 1102w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-300x128.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-1024x438.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-150x64.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-768x328.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-360x154.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-160x68.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-320x137.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-520x222.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-720x308.png 720w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_8-980x419.png 980w" sizes="auto, (max-width: 419px) 100vw, 419px" /></p>
<p>On the next screen you can opt-out from some Microsoft marketing materials. Set is base on your preferences and press the Start button.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5003" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9.png" alt="" width="466" height="337" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9.png 1044w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-300x217.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-1024x741.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-138x100.png 138w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-768x555.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-360x260.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-160x116.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-320x231.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-339x245.png 339w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-470x340.png 470w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-622x450.png 622w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-691x500.png 691w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_9-520x376.png 520w" sizes="auto, (max-width: 466px) 100vw, 466px" /></p>
<p>There is an option to invite other people to the Power BI Service. Just Skip it for now.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5004" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10.png" alt="" width="366" height="303" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10.png 999w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-300x248.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-121x100.png 121w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-768x635.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-110x90.png 110w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-360x298.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-160x132.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-320x265.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-296x245.png 296w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-411x340.png 411w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-544x450.png 544w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-605x500.png 605w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_10-520x430.png 520w" sizes="auto, (max-width: 366px) 100vw, 366px" /></p>
<p>You should be successfully logged in to the Power BI Service Portal now.</p>
<h3>3. Review the Admin portal setting</h3>
<p>Press the circle in the top right corner and navigate to the Admin portal section. You can ignore the Power BI Pro offer for now. It doesn&#8217;t have any impact on the Power BI Administrator setup process.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5005" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11.png" alt="" width="353" height="235" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11.png 753w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-300x200.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-150x100.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-360x240.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-160x107.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-320x213.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-368x245.png 368w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-510x340.png 510w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-675x450.png 675w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-750x500.png 750w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_11-520x347.png 520w" sizes="auto, (max-width: 353px) 100vw, 353px" /></p>
<p>What you will see is just this limited list. There is zero option to change anything on the tenant level.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5006" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12.png" alt="" width="538" height="395" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12.png 1420w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-300x220.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-1024x752.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-136x100.png 136w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-768x564.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-360x264.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-160x118.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-320x235.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-334x245.png 334w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-463x340.png 463w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-613x450.png 613w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-681x500.png 681w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_12-520x382.png 520w" sizes="auto, (max-width: 538px) 100vw, 538px" /></p>
<p>To allow more settings available here we must leave the Power BI Service portal and move again to Azure Portal to configure administrator access.</p>
<h3>4. Assign user to the Power BI administrator role</h3>
<p>Go back to the Azure Portal, navigate to the Azure Active Directory, and list of users please select the one created above.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5007" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13.png" alt="" width="636" height="228" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13.png 1679w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-300x108.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-1024x367.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-150x54.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-768x275.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-1536x551.png 1536w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-360x129.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-160x57.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-320x115.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-520x186.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-720x258.png 720w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-980x351.png 980w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_13-1320x473.png 1320w" sizes="auto, (max-width: 636px) 100vw, 636px" /></p>
<p>In the user&#8217;s detail click on Assigned roles, then + Add assignments and the filter for the Power BI administrator role. Select it and press the Add button.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5008" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14.png" alt="" width="817" height="346" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14.png 1910w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-300x127.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-1024x434.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-150x64.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-768x325.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-1536x651.png 1536w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-360x152.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-160x68.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-320x136.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-520x220.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-720x305.png 720w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-980x415.png 980w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_14-1180x500.png 1180w" sizes="auto, (max-width: 817px) 100vw, 817px" /></p>
<p>Our user is now assigned to the Power BI administrator role.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5009" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15.png" alt="" width="778" height="255" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15.png 1682w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-300x98.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-1024x335.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-150x49.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-768x252.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-1536x503.png 1536w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-360x118.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-160x52.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-320x105.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-520x170.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-720x236.png 720w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-980x321.png 980w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_15-1320x432.png 1320w" sizes="auto, (max-width: 778px) 100vw, 778px" /></p>
<h3>5. Review the Admin portal section in the Power BI Portal</h3>
<p>When you will go back to the Power BI Portal and refresh the page you may see the full list of available administrative options and configure a lot of setting for the organizational Power BI tenant.<br />
Note: If the simple page refresh doesn&#8217;t work you must sign out and sign in again. This will refresh your permissions list.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5010" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16.png" alt="" width="585" height="433" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16.png 1526w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-300x222.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-1024x757.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-135x100.png 135w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-768x568.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-360x266.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-160x118.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-320x237.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-331x245.png 331w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-460x340.png 460w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-609x450.png 609w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-676x500.png 676w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_16-520x384.png 520w" sizes="auto, (max-width: 585px) 100vw, 585px" /></p>
<h3>Alternative path: Office 365</h3>
<p>Users can be assigned to the Power B administrator role also in Office 365 admin center. Sign in to the <a href="http://admin.microsoft.com">Office 365 Admin Portal</a>, navigate to Users =&gt; Active user and select the user you will promote to Power Bi administrator. In the Roles section click the Manage roles link and then select the Power BI administrator role from the list and assign it to the user.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5019" src="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19.png" alt="" width="714" height="417" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19.png 1854w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-300x175.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-1024x598.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-150x88.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-768x448.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-1536x896.png 1536w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-360x210.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-160x93.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-320x187.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-420x245.png 420w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-583x340.png 583w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-771x450.png 771w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-857x500.png 857w, https://sqlpowered.com/wp-content/uploads/2021/03/Setup_Power_BI_Administrator_19-520x303.png 520w" sizes="auto, (max-width: 714px) 100vw, 714px" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://sqlpowered.com/create-a-new-power-bi-administrator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create Azure Data Lake Storage Gen2</title>
		<link>https://sqlpowered.com/create-azure-data-lake-storage-gen2/</link>
					<comments>https://sqlpowered.com/create-azure-data-lake-storage-gen2/#respond</comments>
		
		<dc:creator><![CDATA[Jan Dvořák]]></dc:creator>
		<pubDate>Tue, 09 Mar 2021 22:43:28 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">https://sqlpowered.com/?p=4952</guid>

					<description><![CDATA[1. Navigate to Azure Portal and search for Storage Account. 2. Click on Create to create a new Storage Account 3. Fill Resource group name, Storage account name, and switch Replication to Local-only redundant storage to save money when testing. Then move to Advanced tab. 4. Allow Hierarchical namespace (this...]]></description>
										<content:encoded><![CDATA[<p>1. Navigate to Azure Portal and search for Storage Account.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4965" src="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1.png" alt="" width="415" height="134" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1.png 737w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-300x97.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-150x48.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-360x116.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-160x52.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-320x103.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-520x168.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_1-720x233.png 720w" sizes="auto, (max-width: 415px) 100vw, 415px" /></p>
<p>2. Click on <em>Create</em> to create a new Storage Account</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4966" src="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2.png" alt="" width="292" height="111" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2.png 525w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2-300x114.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2-150x57.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2-360x137.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2-160x61.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2-320x122.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_2-520x198.png 520w" sizes="auto, (max-width: 292px) 100vw, 292px" /></p>
<p>3. Fill Resource group name, Storage account name, and switch Replication to Local-only redundant storage to save money when testing. Then move to Advanced tab.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4967" src="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3.png" alt="" width="576" height="602" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3.png 1302w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-287x300.png 287w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-979x1024.png 979w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-96x100.png 96w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-768x803.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-360x377.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-153x160.png 153w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-306x320.png 306w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-234x245.png 234w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-325x340.png 325w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-430x450.png 430w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-478x500.png 478w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_3-520x544.png 520w" sizes="auto, (max-width: 576px) 100vw, 576px" /></p>
<p>4. Allow Hierarchical namespace (this will promote the &#8220;classic&#8221; blob storage to the Azure Data Lake Storage). Switching to the Cool tier will save some resources. You may also disable Public access for better security.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4968" src="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4.png" alt="" width="564" height="668" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4.png 1304w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-254x300.png 254w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-865x1024.png 865w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-85x100.png 85w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-768x909.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-1298x1536.png 1298w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-360x426.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-135x160.png 135w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-270x320.png 270w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-207x245.png 207w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-287x340.png 287w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-380x450.png 380w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-423x500.png 423w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_4-520x615.png 520w" sizes="auto, (max-width: 564px) 100vw, 564px" /></p>
<p>5. Validate the settings and press the Create button to start the deployment.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4969" src="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5.png" alt="" width="548" height="778" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5.png 1084w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-211x300.png 211w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-722x1024.png 722w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-70x100.png 70w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-768x1090.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-1083x1536.png 1083w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-360x511.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-113x160.png 113w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-226x320.png 226w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-173x245.png 173w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-240x340.png 240w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-317x450.png 317w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-352x500.png 352w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_5-520x738.png 520w" sizes="auto, (max-width: 548px) 100vw, 548px" /></p>
<p>6.After a short period of time approval message should appear.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4970" src="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6.png" alt="" width="552" height="223" srcset="https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6.png 1344w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-300x121.png 300w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-1024x414.png 1024w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-150x61.png 150w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-768x310.png 768w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-360x145.png 360w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-160x65.png 160w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-320x129.png 320w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-520x210.png 520w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-720x291.png 720w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-980x396.png 980w, https://sqlpowered.com/wp-content/uploads/2021/03/Create_Azure_Data_Lake_Gen_2_6-1238x500.png 1238w" sizes="auto, (max-width: 552px) 100vw, 552px" /></p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sqlpowered.com/create-azure-data-lake-storage-gen2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
