Microsoft SQL Server 2019 bug
ROHIT KUMAR
0
Reputation points
Hi,
I want to raise a bug for the MSSQL Server 2019 bug in which I have different schemas and suppose that a same-named table exists in both the schemas and if I update any one schema's table then it's updating the table in both schemas.
For ex.
Schemas:- Dbo, DeletedObjects
TableName:- Sysinfo (component, Brand)
Updating the DeletedObjects Sysinfo automatically updates the Dbo table even if I mention the schema name in the update clause.
As, Update DeletedObjects.Sysinfo Set Brand ='HP' where Componentname='Monitor'
It is updating the same value in the Dbo schema table.
Sign in to answer