Power BI Custom Visuals Class (Module 67 – Impact Bubble Chart)
In this module you will learn how to use the Impact Bubble Chart Custom Visual. The Impact Bubble Chart is...
2017-09-19 (first published: 2017-09-05)
2,412 reads
In this module you will learn how to use the Impact Bubble Chart Custom Visual. The Impact Bubble Chart is...
2017-09-19 (first published: 2017-09-05)
2,412 reads
In this module you will learn how to use the Calendar Custom Visual by Tallan. The Calendar Visual provides a...
2017-08-29
815 reads
In this module you will learn how to use the Visio Visual Custom Visual. The Visio Visual allows you to...
2017-09-05 (first published: 2017-08-24)
1,738 reads
In this module you will learn how to use the Dot Plot Custom Visual by MAQ Software. The Dot Plot...
2017-08-29 (first published: 2017-08-17)
1,557 reads
In this module you will learn how to use the Quadrant Chart Custom Visual. The Quadrant Chart is used to...
2017-08-09
640 reads
There is a video that walks you through the solution in depth, please find the video at the end of...
2017-08-08
666 reads
In this module you will learn how to use the Beyondsoft Calendar Custom Visual. The Beyondsoft Calendar displays a single...
2017-08-22 (first published: 2017-07-31)
1,585 reads
In this module you will learn how to use the Power KPI Custom Visual. The Power KPI displays your KPI...
2017-08-08 (first published: 2017-07-25)
2,160 reads
In this module you will learn how to use the Drilldown Player Custom Visual. The Drilldown Player acts like a...
2017-08-01 (first published: 2017-07-18)
1,725 reads
In this module you will learn how to use the Drilldown Cartogram Custom Visual. The Drilldown Cartogram is a map...
2017-07-18 (first published: 2017-07-11)
2,015 reads
By Ed Elliott
Running tSQLt unit tests is great from Visual Studio but my development workflow...
By James Serra
I remember a meeting where a client’s CEO leaned in and asked me, “So,...
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
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
exec etl.GettheProduct
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