Good afternoon,
I have a concern, I do not know why I can not see the views belonging to the "sys" schema, so the following error came up:
... when I made this query:
SELECT * FROM master.sys.database_permissions AS dp
JOIN sys.system_objects AS so
ON dp.major_id = so.object_id
WHERE dp.class = 1 AND so.parent_object_id = 0 ;
GO
And because it is bringing me problems with larger codes, even in the Management Studio browser the views with sys schema do not appear. (Sys.table example) only those with dbo schema appear.
What do you think is due?
Any suggestions would be very grateful.