The New Software Team
Software teams are changing with AI and this might be an exciting time for developers if they take advantage of the capabilities available.
2026-05-22
96 reads
Software teams are changing with AI and this might be an exciting time for developers if they take advantage of the capabilities available.
2026-05-22
96 reads
Steve asks you what you think AI can do for you today, with a few suggestions of what he sees.
2026-05-18
107 reads
2026-04-29
161 reads
2026-04-17
103 reads
It can be irresponsible to use AI, but is it in many cases? Steve has a few thoughts.
2026-04-15
103 reads
Code reviews can be challenging in many places, and with AI, could be even more of an issue in the future.
2026-04-08
115 reads
2026-03-30
137 reads
2026-02-25
96 reads
As Steve uses AI more, it seems determinism isn't something you get out of many LLMs.
2026-02-23
118 reads
GenAI technology is going to change coding, but there is still a lot of work available for humans.
2026-01-26
98 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 Extreme DAX: Take your Power...
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
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