Top 5 Reasons Why I think SQL Server on Linux is Legit
Here are my top 5 reasons why I thing SQL Server on Linux is Legit!
SQL Server on Linux is Fast – Earlier...
2017-11-12
868 reads
Here are my top 5 reasons why I thing SQL Server on Linux is Legit!
SQL Server on Linux is Fast – Earlier...
2017-11-12
868 reads
Here are my top 5 reasons why I thing SQL Server on Linux is Legit!
SQL Server on Linux is Fast – Earlier this year SQL Server on Linux posted...
2017-11-12
5 reads
There was a question this morning on the SQL Server Community Slack channel from SvenLowry about how to launch SQL Server on Linux in Single User Mode. Well you’ve...
2017-11-09
4 reads
New Pluralsight Course – SQL Server on Linux Administration Fundamentals
My new course “SQL Server on Linux Administration Fundamentals” in now available on Pluralsight here!...
2017-11-01
493 reads
New Pluralsight Course – SQL Server on Linux Administration Fundamentals
My new course “SQL Server on Linux Administration Fundamentals” in now available on Pluralsight here! If you want to learn about the...
2017-11-01
13 reads
I’m proud to announce to you that I’m partnering with the folks over a Brent Ozar Unlimited to provide live,...
2017-11-01
498 reads
In this blog post we’re going to cover systemd, process exit codes and highlight how systemd reacts in certain exit...
2017-10-28
1,311 reads
In this blog post we’re going to cover systemd, process exit codes and highlight how systemd reacts in certain exit conditions from SQL Server on Linux. My friend and...
2017-10-28
6 reads
In this blog post we’re going to explore how SQL Server on Linux responds to external memory pressure. On Windows...
2017-10-27 (first published: 2017-10-20)
1,949 reads
In this blog post we’re going to explore how SQL Server on Linux responds to external memory pressure. On Windows based SQL Server systems we’ve become accustomed to the...
2017-10-20
9 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