Power BI Custom Visuals Class (Module 110 – Icon Map)
In this module you will learn how to use the Icon Map. The Icon Map allows you to display your...
2018-07-17 (first published: 2018-07-09)
2,395 reads
In this module you will learn how to use the Icon Map. The Icon Map allows you to display your...
2018-07-17 (first published: 2018-07-09)
2,395 reads
In this module you will learn how to use the as Timeline visual. The as Timeline is a Gantt chart...
2018-07-03 (first published: 2018-06-28)
2,867 reads
In this module you will learn how to use the PowerApps Custom Visual. The PowerApps visual allows you to embed...
2018-06-18
669 reads
In this module you will learn how to use the Advance Card. The Advance Card is similar to the native...
2018-06-26 (first published: 2018-06-12)
2,816 reads
This is a temporary post that was not deleted. Please delete this manually. (e4f4591b-a7d5-4be4-937e-8d6230ec51d8 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2018-06-12
933 reads
This month I continued my series with my friend Manuel Quintana [Blog | Twitter] as we guide you through some of...
2018-06-18 (first published: 2018-06-06)
2,409 reads
In this module you will learn how to use the Ring Chart by MAQ Software. The Ring Chart is similar...
2018-06-12 (first published: 2018-06-04)
2,265 reads
In this module you will learn how to use the Text Wrapper by MAQ Software. The Text Wrapper allows you...
2018-06-05 (first published: 2018-05-29)
2,030 reads
In this module you will learn how to use the User List by CloudScope. The User List by CloudScope is...
2018-05-29 (first published: 2018-05-22)
2,543 reads
In this module you will learn how to use the Timeline by CloudScope. The Timeline by CloudScope is designed for...
2018-05-15
908 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