Have You Designed a Database from Scratch?
An interesting question from Steve Jones today, asking what is your experience with designing databases.
2016-06-24
188 reads
An interesting question from Steve Jones today, asking what is your experience with designing databases.
2016-06-24
188 reads
I’ve had an aging desktop for some time. I originally bought it from Glenn Berry (b | t), who I think...
2016-06-24
540 reads
I first heard this little acronym from Grant Fritchey (b | t). He used it when talking about backups and restores,...
2016-06-24 (first published: 2016-06-17)
1,809 reads
2016-06-24
1,407 reads
This is a series of posts on the PASS Summit and SQL Saturdays. I’m outlining some thoughts here, sometimes for...
2016-06-23
494 reads
R Services were added to SQL Server 2016, and there are customers using this feature to improve their business processes.
2016-06-23
189 reads
2016-06-23
1,311 reads
Tldr: A bit of a rant. I’m not spending a bunch of time crafting this.
I have mixed feelings about searching...
2016-06-22
498 reads
2016-06-22
1,218 reads
Larry Page is a very interesting person, one that is looking to change the world.
2016-06-21
132 reads
By Arun Sirpal
Not every production incident is a database in RECOVERY_PENDING or a corrupted event (like...
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,...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp: 0817839777 Kw. Industri Pulogadung, Jl. Raya Bekasi Km. 21, Ruko No.A2/18-19, RW.3, Wil,...
WhatsApp: 0817839777 Jl. I Gusti Ngurah Rai No.8 A-B, RT.8/RW.6, Wil, Kec. Duren Sawit,...
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