Learning Isn’t Easy, But It’s Vital
This week Grant notes that we need to work on our learning skills, especially as the world continues to drive forward.
2020-08-29
202 reads
This week Grant notes that we need to work on our learning skills, especially as the world continues to drive forward.
2020-08-29
202 reads
This week Steve wonders if you're want to tackle an exciting project for a day or a week.
2020-08-28
93 reads
Steve doesn't think microservices work with relational databases, but maybe you can convince him otherwise.
2020-08-27
272 reads
DevOps can help provide better security for your databases.
2020-08-26
84 reads
The ability to analyze lots of data on a workstation can be a way to test things without overloading server systems until you are sure your code works.
2020-08-25
130 reads
Steve looks at some of the software development trends from last year, and if they apply today.
2020-08-24
197 reads
One of the finest songs of the sixties had the following lines … "Sitting one day by myself, And I'm thinking, "What could be wrong?" When this funny little Hedgehog comes running up to me, And it starts up to sing me this song. Oh, you know all the words, and you sung all the […]
2020-08-22
370 reads
Today Steve asks about the people that might be critical in your organization.
2020-08-21
158 reads
The challenges of large scale administration can be complex, but the more we share, the more we help others learn and better manage systems.
2020-08-20
84 reads
2020-08-19
116 reads
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.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
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