I tried the following SQL:
SELECT * FROM all_objects
But it also updates the LAST_DDL_TIME column of the above table whenever any other table grant is provided.
I want the last DDL update time for the table to change only.
Ketan, I think DDL triggers will solve your problems.
More on this: http://www.dba-oracle.com/t_ddl_triggers.htm
If you use a trigger to monitor DDL, you essentially duplicate the functionality already provided through Oracle Auditing.
http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_4007.htm
10- : https://oracle-base.com/articles/10g/auditing-10gr2
:
SELECT object_name, object_type, last_ddl_time FROM dba_objects WHERE owner = <<table owners name>> AND object_name = 'yourTableName'
Source: https://habr.com/ru/post/1606910/More articles:Trying to read an excel file with epplus and get a System.NullException error? - c #Installing gem mysql2 in a tramp through a chef - ruby | fooobar.comКак проверить, является ли сбор потокобезопасным? - javaRails 4: ошибка при сортировке с использованием isl_table.maximum.desc - sortingYii Framework context in PHP Pthread Class - phpHow to convert list of tuples with Python to most pythonic (possibly with zip) - pythonRepeat row based on number in column - sqlhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1606913/could-not-add-entry-appsourcesets-to-cache-taskartifactsbin&usg=ALkJrhjLOWbIxwsZRnEDROlpH0yQTxMs9QChange the text style of Uilabel Objective-C - iosMarkLogic Javascript request for an empty JSON array - jsonAll Articles