Power BI Custom Visuals Class (Module 30 – Linear Gauge)
In this module you will learn how to use the Linear Gauge Power BI Custom Visual. The Linear Gauge would...
2016-12-21
742 reads
In this module you will learn how to use the Linear Gauge Power BI Custom Visual. The Linear Gauge would...
2016-12-21
742 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-12-14
423 reads
In this module you will learn how to use the Dial Gauge Power BI Custom Visual. While the usefulness of...
2016-12-13
602 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-12-07
838 reads
In this module you will learn how to use the Synoptic Panel Power BI Custom Visual. The Synoptic Panel is...
2016-12-06 (first published: 2016-11-29)
2,102 reads
In this module you will learn how to use the Sankey Power BI Custom Visual. The Sankey is a type...
2016-12-06
966 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-30
825 reads
In this module you will learn how to use the Timeline Power BI Custom Visual. The Timeline is a great...
2016-11-29 (first published: 2016-11-22)
2,559 reads
In this module you will learn how to use the Scroller Power BI Custom Visual. The Scroller has the appearance...
2016-11-22 (first published: 2016-11-14)
1,830 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-16
511 reads
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
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
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