Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

Hi,

In Sybase IQ, I want to query the modify date/time for store procedures. However, it seems that sybase IQ only has creation_time for the objects. Is there a way I can get modify_time for an object such as stored procedure??

select object_name(object_id),* from sys.SYSOBJECT where object_name(object_id) is not null and object_type='6' order by creation_time desc

asked 25 Oct '13, 11:08

sqlgeek's gravatar image

sqlgeek
1477713
accept rate: 0%


SQL Anywhere (and IQ) does not keep track of the modification time of a schema object... so there is no method to get this information.

permanent link

answered 25 Oct '13, 11:11

Mark%20Culp's gravatar image

Mark Culp
24.9k10141297
accept rate: 41%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×41

question asked: 25 Oct '13, 11:08

question was seen: 8,188 times

last updated: 25 Oct '13, 11:11