If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
here is one very urgent query...the problem is that I would like to know is there any way to find out that so far what queries has been run on my DB2 database tables.I am not asking for the specific queries run from DB2 Command Center but from whatever-end...might be an application that run the queries or what so ever.
also, you can using this SQL to query the sqls which is running on your db.
SQL:
SELECT * FROM TABLE( SNAPSHOT_DYN_SQL( 'SAMPLE', -1 )) as SNAPSHOT_DYN_SQL
you code your db name instead of 'SAMPLE',BTW you must have dbm authority.