SSDT: Unable to connect to master or target server.
Every now and then I come across this error in SSDT, normally when trying to publish and the odd thing...
2017-06-12
51 reads
Every now and then I come across this error in SSDT, normally when trying to publish and the odd thing...
2017-06-12
51 reads
VS Code is my coding tool of choice. I love that one lightweight editor can do so much and as...
2017-06-12
577 reads
I wrote recently about the Release agent using the hosted queue as the default, which is sometimes a problem. The...
2017-06-12
547 reads
What is an Index?
We often hear indexes explained using the analogy of an index in the back of a book....
2017-06-12
1,593 reads
1. What are IaaS, PaaS and SaaS?
Basically these are cloud service models for cloud offerings. These are categorized on the...
2017-06-12
791 reads
2017-06-11
1,395 reads
Imagine a world where one of the software giants releases their brand new operating system and a new application architecture...
2017-06-09
1,592 reads
Exciting day today as I’m presenting my first webinar on SQL Server & Containers in the GroupBy June conference! There’s a...
2017-06-09
457 reads
Part of a series looking back at Build 2017, going over the 20+ pages of notes I took.
One of the...
2017-06-09 (first published: 2017-05-24)
1,539 reads
Continuing on the series on SQL Azure Databases - Active Secondary, this post will explore the task of failing over to secondary.
Fairly straightforward task, just one needs to take...
2017-06-09
14 reads
It is Friday, the queries are running, and nobody is watching the bill. That...
By Steve Jones
Annabel retired from Redgate Software this week. Across most of my career at Redgate,...
By Tim Radney
As a SQL Server DBA with years of experience tuning production environments, I’ve seen...
Comments posted to this topic are about the item What is the Cloud?
Comments posted to this topic are about the item Changing the Schema
Comments posted to this topic are about the item Index Fragmentation Explained: Page Splits,...
I set up a few users on my SQL Server 2022 instance.
CREATE LOGIN User1 WITH PASSWORD = 'Demo12#1' CREATE USER User1 FOR LOGIN User1 GO CREATE LOGIN User2 WITH PASSWORD = 'Demo12#2' CREATE USER User2 FOR LOGIN User2 GO CREATE LOGIN User3 WITH PASSWORD = 'Demo12#3' CREATE USER User3 FOR LOGIN User3 GOI then created a schema that one of them owned. Under this schema, I added a table with some data.
CREATE SCHEMA MySchema AUTHORIZATION User1
GO
CREATE TABLE Myschema.MyTable(myid INT)
GO
INSERT MySchema.MyTable
(
myid
)
VALUES
(1), (2), (3)
GO
SELECT * FROM MySchema.MyTable
GO
I granted rights and verified that User2 could access this table.
GRANT SELECT ON Myschema.MyTable TO User2 GO SETUSER 'USER2' GO SELECT * FROM MySchema.MyTable GOThis worked. Now, I move this schema to a new user.
ALTER AUTHORIZATION ON SCHEMA::Myschema TO User3; GOWhat happens with this code?
SETUSER 'USER2' GO SELECT * FROM MySchema.MyTable GOSee possible answers