What Counts as Work - in Software Development
Bill explores the consequences of people not seeing the value in doing things that are crucial to the success of projects.
2013-12-11
545 reads
Bill explores the consequences of people not seeing the value in doing things that are crucial to the success of projects.
2013-12-11
545 reads
This article explores the place of emotion among knowledge workers doing team-based design activities.
2013-04-05
181 reads
A look at what passes for technology from Bill Nicolich in our guest editorial.
2012-12-18
121 reads
A reflective editorial on how SharePoints and other collaborative work spaces are getting used.
2012-01-02
232 reads
Is your area of responsibility starved for resources? Is it difficult to get a raise? If so, don't despair. You're...
2011-02-24
1,805 reads
Bill Nicolich uses T-SQL to look at the community participation of people at SQLServerCentral.
2010-12-23
1,594 reads
It finally dawned on me why people would bother getting a separate book-reading device like Kindle - and why it might...
2010-12-22
1,233 reads
The Development DBA role, though not as common as the more prominent DBA and Database Developer roles in the database...
2010-12-01
4,490 reads
A technique from Bill Nicolich that allows you to target columns by data type for the same custom expression and easily build complex queries.
2010-05-25
8,640 reads
I wanted the SCRUM Master certification this year, and could have gone local, but I wanted to get the training...
2010-04-30
2,100 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