cancel
Showing results for 
Search instead for 
Did you mean: 

Portal - Tablespaces

andrewscott9
Participant
0 Kudos

Hi,

I have only been in a Basis role for a few months, so please bear with me.

I can see all the table spaces and their associated datafiles and sizes using DB02

for all the ABAP stack systems.

However, I need to see the same results for the Portal JAVA base systems. I know there

is no SAP GUI for these systems so I can't use DB02.

I'm presuming there are some SQL statements which will show me the same thing?

Can anyone help me out?

Thanks

Andy

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Andy,

Just to add regarding Java tables, there is tool which will be like SE16 where we can manage Java tables.

[http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0c8e229-7322-2b10-f5b3-e6cefa0405fc?QuickLink=index&overridelayout=true]

Regards,

Venkata S Pagolu

Answers (3)

Answers (3)

nicholas_chang
Active Contributor
0 Kudos

Hi Andy,

BRTOOLS is another good tools to monitor and check the db size, datafiles and tablespaces.

Cheers,

Nicholas Chang

andrewscott9
Participant
0 Kudos

Many thanks for all the suggestions.

It is much appreciated

Thanks

Andy

Former Member
0 Kudos

Hi Andy,

Use DBACOCKPIT for Java Stack systems to have a similar look and feel of DB2 in ABAP stack. Connect your java stack database to your Solution Manager system.

Follow this procedure for configuring it.

Note 1261329 - DBA Cockpit: Oracle as a remote database

Br,

Venky

andrewscott9
Participant
0 Kudos

Thankyou very much Venky. Much appreciated

former_member184473
Active Contributor
0 Kudos

Hello Andy,

You can query the dba_data_files:

select * from dba_data_files where tablespace_name='<tablespace_name>';

Regards,

Eduardo Rezende

andrewscott9
Participant
0 Kudos

Thanks mate, much appreciated