Microsoft SQL Server 2016 Service Pack 1 (SP1)
Microsoft just announced Microsoft SQL Server 2016 Service Pack 1 (SP1)
Microsoft reference: [Click Here]
Ganapathi varma ChekuriLead SQL DBA, MCPLinkedin
2016-11-19
251 reads
Microsoft just announced Microsoft SQL Server 2016 Service Pack 1 (SP1)
Microsoft reference: [Click Here]
Ganapathi varma ChekuriLead SQL DBA, MCPLinkedin
2016-11-19
251 reads
In this post, I’m going to talk an issue that I found when creating an availability group listener by using SQL Server Management Studio's Add Listener. This article helps you to resolve the issue.
2016-09-06
24,479 reads
Resolving an Error When Creating an Availability Group Listener.
In this post, I’m going to talk an issue that I found...
2016-09-06
261 reads
The SQL Server whenever it restarts all the databases goes into the recovery mode. In this state the database comes...
2016-08-29
11,783 reads
Overview
While working with SQL server, users may encounters numerous errors in different stages. These errors creates huddles in SQL transactions...
2016-07-12
915 reads
When stored procedures are created in SQL Server, their entire text body is accessible to all those who have the...
2016-05-20
50,387 reads
Microsoft announced SQL Server 2016 Release Candidate 3 Evaluations
Benefits of SQL Server 2016 Release candidate 3:
Enhanced in-memory performance provide up...
2016-04-16
165 reads
Introduction
Failover cluster in SQL Server is a type of cluster in which two or more independent servers are interconnected with...
2016-03-29
855 reads
Recently I have posted a article in SQLServerCentral on Fixing Maintenance Plan Error code 0x534
Read My Article "Here"
For more updates:
Subscribe for...
2016-03-25
149 reads
This article shows you how to resolve SQL Server maintenance plan execution failure error
2016-03-24
16,417 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