Results 1 to 4 of 4

Thread: How to get modify date of sp & table structure

  1. #1
    Join Date
    Jan 2003
    Posts
    2

    How to get modify date of sp & table structure

    How do I get the modify date of the stored procedures and also the table structures? Any suggestions or recommendations will be greatly appreciated.

  2. #2
    Join Date
    Dec 2002
    Posts
    181
    You can pull the date created from the sysobjects table, I'm not aware of a modified date stored anywhere. Why do you need the information?

    Jeff

  3. #3
    Join Date
    Oct 2002
    Posts
    42
    There is no such thing I'm afraid. You'll need to either add the date as a comment into the procedure or keep your procedures in something like sourcesafe or some other document version control system.

  4. #4
    Join Date
    Jan 2003
    Posts
    2
    JBane, thanks so much for your reply. The reason I need the modified date is when I am working on the development environment and I make changes on some of the table structures and also the stored procedures. After finishing the development and moving to Production, I can look at the modified date and I would know which ones need to move to Production.

    Thanks Mist for your suggestions. I don't think sourcesafe would do this. If you know the name of the document version control system that do this, please let me know.

    Thanks so much for all your replies.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •