2017-07-20
3,516 reads
2017-07-20
3,516 reads
GE is using lots of data, and machine learning to predict when specific systems will fail by nurturing digital twins.
2021-10-13 (first published: 2017-07-19)
190 reads
2017-07-18
100 reads
Today Steve Jones talks about the short cuts that developers might take, many of which aren't necessarily helpful.
2017-07-17
99 reads
Phil Factor looks at some technologists more famous for thwarting progress than for their own creations.
2022-09-02 (first published: 2017-07-17)
316 reads
A guest editorial from Andy Warren looking at the unlimited amount of vacation time from his company.
2022-08-31 (first published: 2017-07-12)
305 reads
Team building isn't easy, but important for people to work together well.
2017-07-11
64 reads
With progress thwarted by a committee of panjandrums, will T-SQL forever remain in the doldrums? So wonders Phil Factor.
2020-03-09 (first published: 2017-07-10)
465 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
140 reads
2017-07-07
219 reads
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...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
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