Design Concepts For Better Power BI Reports Part 4: The Squint Test
Data visualization should be iterative. You should get a good initial draft put together and then check to make sure...
2017-12-22
778 reads
Data visualization should be iterative. You should get a good initial draft put together and then check to make sure...
2017-12-22
778 reads
The Gestalt principles of visual perception describe how humans tend to organize visual elements into groups or unified wholes to...
2017-12-18
705 reads
I have decided to write a series of blog posts about visual design concepts that can have a big impact...
2017-12-08 (first published: 2017-11-27)
2,408 reads
I recently worked on a project where a client wanted to use Biml to create SSIS packages to stage data...
2017-12-05 (first published: 2017-11-22)
1,256 reads
Preattentive attributes are visual properties that we notice without using conscious effort to do so. Preattentive processes take place within 200ms...
2017-11-30
841 reads
Next week is PASS Summit 2017, and I’m excited to be a part of it. One of the sessions in...
2017-10-28
369 reads
This year I had the pleasure of contributing a chapter to a book along with some very special and talented...
2017-10-19
614 reads
A while back I created the Tabular Model Documenter Power BI model that can connect to your SSAS Tabular or...
2017-09-26 (first published: 2017-09-19)
2,375 reads
Last month I worked on a proof of concept testing Power BI Report Server for self-service BI. The client determined...
2017-09-25 (first published: 2017-09-18)
3,554 reads
Back in January 2016, I wrote a blog post explaining a DAX workaround that allows you to put measures on...
2017-08-29 (first published: 2017-08-11)
1,856 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