Power BI Custom Visuals Class (Module 86 – Bubble Chart by Akvelon)
In this module you will learn how to use the Bubble Chart Custom Visual by Akvelon. The Bubble chart allows...
2018-01-19
963 reads
In this module you will learn how to use the Bubble Chart Custom Visual by Akvelon. The Bubble chart allows...
2018-01-19
963 reads
In this module you will learn how to use the Image Grid Custom Visual. This visual is a unique way...
2018-01-23 (first published: 2018-01-12)
1,881 reads
In this module you will learn how to use the ChartAccent BarChart Custom Visual. This visual is a custom bar...
2018-01-09 (first published: 2018-01-03)
1,575 reads
In this module you will learn how to use the ChartAccent LineChart Custom Visual. This visual is a custom line...
2017-12-27
1,250 reads
In this module you will learn how to use the Text Filter Custom Visual. This visual allows you to filter...
2017-12-19
618 reads
Hello Everyone! In this episode of the “Problem, Design, Solution” series we will be talking about the “Folder” option inside...
2017-12-18
612 reads
In this module you will learn how to use the Social Network Graph Custom Visual. The Social Network Graph allows...
2018-01-02 (first published: 2017-12-12)
1,945 reads
In this module you will learn how to use the TreeViz Custom Visual. The TreeViz is a breakdown tree that...
2017-12-12 (first published: 2017-12-04)
1,743 reads
In this module you will learn how to use the Venn Diagram Custom Visual by MAQ Software. The Venn Diagram...
2017-12-05 (first published: 2017-11-28)
1,623 reads
In this module you will learn how to use the Data Image Power BI Custom Visual by CloudScope. The Data...
2017-11-28 (first published: 2017-11-21)
1,426 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