Power BI Custom Visuals Class (Module 49 – SandDance)
In this module you will learn how to use the SandDance Power BI Custom Visual. The SandDance visual is an...
2017-05-16 (first published: 2017-05-01)
2,352 reads
In this module you will learn how to use the SandDance Power BI Custom Visual. The SandDance visual is an...
2017-05-16 (first published: 2017-05-01)
2,352 reads
In this module you will learn how to use the Time Brush Power BI Custom Visual. The Time Brush gives...
2017-05-02 (first published: 2017-04-25)
1,390 reads
In this module you will learn how to use the Line Dot Chart Power BI Custom Visual. The Line Dot...
2017-04-26 (first published: 2017-04-18)
1,408 reads
In this module you will learn how to use the Table Sorter Power BI Custom Visual. The Table Sorter allows...
2017-04-13
846 reads
In this module you will learn how to use the Network Navigator Power BI Custom Visual. You may find the...
2017-04-12 (first published: 2017-04-06)
1,379 reads
In this module you will learn how to use the Gantt Power BI Custom Visual. Using the Gantt chart you...
2017-04-04 (first published: 2017-03-21)
2,516 reads
In this module you will learn how to use the Attribute Slicer Power BI Custom Visual. Using the Attribute Slicer...
2017-03-29
1,153 reads
In this module you will learn how to use the Image Viewer Power BI Custom Visual. The Image Viewer visual...
2017-03-14 (first published: 2017-03-07)
2,161 reads
In this module you will learn how to use the Stars Power BI Custom Visual. The Stars visual is a...
2017-03-14
843 reads
In this module you will learn how to use the Long Text Viewer Power BI Custom Visual. The Long Text...
2017-03-07 (first published: 2017-02-28)
2,289 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