Backup image select statement

naga49

ADSM.ORG Member
Joined
Apr 30, 2007
Messages
3
Reaction score
0
Points
0
Hi

I want to pull data of image backups of AIX filesystems information from TSM database using select statement.

Can somebody help me with select statement

Thanks
Suresh
 
You can use:
Code:
select * from backups where type='IMAGE'

If you also want to see the data and extents, then use:
Code:
select * from backups where type like 'IMAGE%'
 
Back
Top