Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL Server - Interrogazione di sysobjects

Vedere OBJECTPROPERTY :

Usalo qualcosa come:

SELECT * from sysobjects where OBJECTPROPERTY(ID,N'IsMSShipped') = 0

Tuttavia, la sua documentazione è un po 'fuori misura - ti aiuta anche a escludere altri oggetti aggiunti "da" SQL Server anche in un secondo momento, ad es. anche tutti gli oggetti correlati alla replica sono considerati IsMSShipped .