sp_help 过程名只有创建时间

解决方案 »

  1.   

    但能看到建立的日期,如果你的存储过程是先drop在create的话,就可以了
    select crdate from sysobjects where name = 'Name'
    或者用
    select * from sysobjects where xtype='P' order by crdate desc
    查看从最近开始建立的存储过程。
      

  2.   

    1、sp_help 存储过程名
    2、select * from sysobjects where xtype='p'
      

  3.   

    źź㘓뿶ź㘓뿶ź㘓ź㘓뿶źź㘓뿶ź㘓뿶źź㘓뿶ź㘓뿶ź
      

  4.   

    里面有个Create_datetime字段是创建时间。
      

  5.   

    sp_help 'procname' 只能看到创建时间
      

  6.   

    select name,crdate from sysobjects where xtype='P'