Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Read DBTABLOG table

Former Member
0 Likes
1,178

Hi Folks,

I want to read DBTABLOG table, basically want to extract data of field LOGDATA.

So please let me know how I can read this field.

Regards,

Amey

5 REPLIES 5
Read only

Former Member
0 Likes
892

hi,

do as follows:

select logdata from DBTABLOG where logdata = sy-datum

and TABNAME = give the table name.

thanks,

anupama.

Read only

Former Member
0 Likes
892

I guess there is FM for this check with APPlog* in SE37, my system is not working so sorry for asking you to check

Read only

Former Member
0 Likes
892

Hi,

READ table DBTABLOG with key LOGDATE.

Regards,

jaya

Read only

Former Member
0 Likes
892

USE FM : DBLOG_READ ...

for more info search SCN ...

Read only

Former Member
0 Likes
892

Hi,

By using this...

db2 "select SUBSTR(TBSPACE,1,10) AS TABLESPACE, sum(CARD) as CARD, sum(NPAGES) as NPAGES, sum(FPAGES) as FPAGES from syscat.tables where TBSPACEID = 14 group by TBSPACE"

Thanks,

Neelima.