Power BI Custom Visuals Class (Module 08 – Dot Plot)
In this module you will learn how to use the Dot Plot Power BI Custom Visual. The Dot Plot is...
2016-07-20 (first published: 2016-07-18)
2,365 reads
In this module you will learn how to use the Dot Plot Power BI Custom Visual. The Dot Plot is...
2016-07-20 (first published: 2016-07-18)
2,365 reads
In this module you will learn how to use the Enhanced Scatter Power BI Custom Visual. This new-and-improved scatter chart...
2016-07-12
1,142 reads
In this module you will learn how to use the KPI Indicator (This is kind of like saying “ATM Machine”...
2016-07-05 (first published: 2016-06-28)
2,670 reads
In this module you will learn how to use the Histogram, a Power BI Custom Visual. A Histogram is a...
2016-07-05
1,618 reads
A really great feature that was silently added into June update of the Power BI Desktop is a feature called...
2016-07-03
1,091 reads
In the June update of the Power BI Desktop there were some really cool features that were added. I’d encourage...
2016-07-01
1,210 reads
In this module you will learn how to use the Radar Chart, a Power BI Custom Visual. The Radar Chart...
2016-06-28 (first published: 2016-06-21)
2,603 reads
In this module you will learn how to use the Hexbin Scatterplot Power BI Custom Visual. The Hexbin Scatterplot is...
2016-06-23 (first published: 2016-06-14)
2,903 reads
In this module you will learn how to use the Enlighten Aquarium Power BI Custom Visual. While it might not...
2016-06-07
1,840 reads
Welcome to an exciting new FREE class that I am launching today! Over the next year (that’s right year!) I...
2016-06-01
2,245 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