The Information Schema and Cross-RDBMS Working
A look at the ODBC standard and how valuable it has been, unlike the Information Schema implementations.
2016-05-09
67 reads
A look at the ODBC standard and how valuable it has been, unlike the Information Schema implementations.
2016-05-09
67 reads
There are people in our lives that we want to connect with, so why don't we?
2016-05-09
99 reads
When a business does not have an agreed set of definitions for their every day terms slow burning chaos ensues.
2016-05-04
103 reads
Today we have a guest editorial from Andy Warren as Steve is away. Andy tries to define what a DBA really does in a way that might make sense to others.
2016-05-03
320 reads
2020-06-05 (first published: 2016-04-29)
214 reads
2020-08-14 (first published: 2016-04-28)
204 reads
SQL Server 2016 is the first cloud first version of SQL Server being released as the on-premise product.
2016-04-27
204 reads
2016-04-26
118 reads
2016-04-25
100 reads
Phil Factor recounts the most important lesson of his early IT career: try not to burst into giggles when you get to look at the client's IT system.
2016-04-25
119 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