Why Don't You Unit Test Code?
This Friday Steve Jones wants to know what you think of testing code and why you don't do it.
2017-10-06
72 reads
This Friday Steve Jones wants to know what you think of testing code and why you don't do it.
2017-10-06
72 reads
Steve Jones talks about learning, teaching, and the need to not waste anyone's time.
2017-10-05
69 reads
Steve Jones notes that we often solve problems better the second time around.
2017-10-04
76 reads
2017-10-03
164 reads
2017-10-02
97 reads
Even the most elaborate team-based development methodology won't compensate for the blinkered attitudes and tribal cultures that come from over-specialization in IT.
2017-10-02
70 reads
2017-09-29
65 reads
2017-09-28
82 reads
2017-09-27
209 reads
2023-05-17 (first published: 2017-09-26)
263 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