2016-07-28
1,192 reads
2016-07-28
1,192 reads
Today Steve Jones notes that the ability to search if invaluable as the amount of information, or even objects, we deal with grows.
2016-07-27
95 reads
The first time I heard someone mention drift at Redgate, it made sense to me. After all, in the context...
2016-07-27 (first published: 2016-07-22)
4,414 reads
Releasing software is stressful, and as Steve Jones notes today, can cause bankruptcy if you don't have a solid process.
2016-07-26
101 reads
2016-07-25
79 reads
Today Steve Jones wonders why we don't unit test more, especially for databases.
2016-07-25
124 reads
One of the things that you need with a Continuous Integration server is that ability to build your software on...
2016-07-22 (first published: 2016-07-18)
1,493 reads
2016-07-22
1,263 reads
I’ll be hosting a webinar next week, Thursday, July 28, with Daniel Nolan (t) (founder of ReadyRoll and fellow Redgate...
2016-07-21
567 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-07-21
1,752 reads
If you’ve been watching AI roll through the data community and thinking, “this seems...
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...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Hi All I am trying to find 'bad' characters that users might type in....
Comments posted to this topic are about the item Extreme DAX: Take your Power...
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