Is there a table that holds the listing of sysobjects.xtype descriptions?

前端 未结 2 2091
旧巷少年郎
旧巷少年郎 2021-02-05 19:12

According to the sysobjects documentation, sysobjects.xtype can be one of these object types:

| xtype |             


        
2条回答
  •  无人共我
    2021-02-05 19:46

    There is this

    SELECT name 
    FROM master..spt_values
    WHERE type = 'O9T'
    

    Output

    AF: aggregate function
    AP: application
    C : check cns
    D : default (maybe cns)
    EN: event notification
    F : foreign key cns
    FN: scalar function
    FS: assembly scalar function
    FT: assembly table function
    IF: inline function
    IS: inline scalar function
    IT: internal table
    L : log
    P : stored procedure
    PC : assembly stored procedure
    PK: primary key cns
    R : rule
    RF: replication filter proc
    S : system table
    SN: synonym
    SQ: queue
    TA: assembly trigger
    TF: table function
    TR: trigger
    U : user table
    UQ: unique key cns
    V : view
    X : extended stored proc
    sysobjects.type, reports
    

提交回复
热议问题