If we can do it, so can you
Microsoft is trying to prove that development works well in the cloud by moving their own internal development to the Azure cloud.
2013-09-16
157 reads
Microsoft is trying to prove that development works well in the cloud by moving their own internal development to the Azure cloud.
2013-09-16
157 reads
In part 3 of his thoughts on certifications, Steve Jones gives an idea for how we might move forward from here.
2013-09-11
142 reads
Part 2 of a set of thoughts from Steve Jones on certification in technology areas.
2013-09-10
377 reads
The news about NSA spying keeps coming out, and apparently includes corporate communications as well.
2013-09-09
286 reads
With the discontinuing of the MCM And MCA programs, Steve Jones has a few thoughts. This is the first of a three part series on certifications.
2013-09-09
242 reads
As we ask developers to deliver software quicker, are we helping improve the quality of software? Steve Jones asks the question today.
2013-09-06
235 reads
Are there good and bad interview questions? Are there some you prefer or hate? Steve Jones comments on some of the strange ones out there and how hiring is changing.
2013-09-05
429 reads
The announcement that the MCM program was being discontinued brings us a few thoughts from Gail Shaw, one of the 0.08% to achieve the certification.
2013-09-04
632 reads
The availability of cheap sensors brings with it lots of possibilities and concerns. However there is one certainty: more data.
2013-09-03
129 reads
2013-09-02
87 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