Select * from sysobjects where xtype = 'U'

解决方案 »

  1.   

    sp_tables
    select * from INFORMATION_SCHEMA.TABLES
    select * from sysobjects where xtype='U' and status>0
      

  2.   

    sp_tables

    select * from INFORMATION_SCHEMA.TABLES

    select * from sysobjects where xtype='U' and status>0
    察看标的大小、行数、索引大小
    sp_spaceused 'test'
      

  3.   

    select * from sysobjects where xtype='U' and status>0
      

  4.   

    select name from sysobjects where xtype='U' and status>0
      

  5.   

    select  *  from  sysobjects  where  xtype='U'  and  status  >0这句是对了
    能帮我解释一下吗?
    谢谢
      

  6.   

    sysobject 记录数据库对象 xtype 'U'表示始用户表
    其他得看oblinehelp 输入sysobjects 就出来帮助了。。
      

  7.   

    txlicenhe(马可) 说得对的,在SYBASE里面差不多。