“Comment voir la table associée à un schéma dans SQL” Réponses codées

Comment voir la table associée à un schéma dans SQL

select s.name as schema_name, 
    s.schema_id,
    u.name as schema_owner
from sys.schemas s
    inner join sys.sysusers u
        on u.uid = s.principal_id
order by s.name
Shy Seal

Comment voir la table associée à un schéma dans SQL

select schema_name(t.schema_id) as schema_name,
       t.name as table_name,
       t.create_date,
       t.modify_date
from sys.tables t
where schema_name(t.schema_id) = 'Production' -- put schema name here
order by table_name;
Shy Seal

Réponses similaires à “Comment voir la table associée à un schéma dans SQL”

Questions similaires à “Comment voir la table associée à un schéma dans SQL”

Plus de réponses similaires à “Comment voir la table associée à un schéma dans SQL” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code