How to Get Data Using Python in Power BI
This article shows how you can incorporate Python scripting inside a Power BI report.
2022-08-01
12,445 reads
This article shows how you can incorporate Python scripting inside a Power BI report.
2022-08-01
12,445 reads
Learn how you can make your visuals more interesting with the Infographic Designer Visual.
2022-07-25
10,055 reads
In this article learn how to download, install and get started building your first Power BI report using SQL Server data.
2022-07-22
Learn how to work with SSAS data in Power BI in this article.
2022-07-18
5,548 reads
Learn how you can adjust the way users interact with reports and change font sizes as well as add parameters for filtering.
2022-07-11
15,386 reads
This article continues looking at various expressions that are available in the Report Builder. We cover some build in functions as well as various logical operators.
2022-06-20
4,647 reads
Learn about expressions and date functions in the Power BI Report Builder.
2022-06-13
18,143 reads
Learn how to more easily manage permissions in the Power BI service using PowerShell.
2022-06-06
3,167 reads
Learn how you can add images to your reports in Power BI when using the Report Builder.
2022-05-23
5,960 reads
2022-05-16
10,367 reads
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
Hello team Can anyone share popular azure SQL DBA certification exam code? and your...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers