Reputation: 1
I need help in creating an SQL query that can retrieve the size occupied by the latest FullBackup in HANA Studio. I haven't been able to find this SQL query in any forum or SAP note. Any ideas on how to obtain this value?
Example :
SELECT TOP 1 STATE_NAME, BACKUP_SIZE
FROM SYS.M_BACKUP_CATALOG
WHERE entry_type_name = 'complete data backup'
ORDER BY ENTRY_ID DESC;
Specifically, the value I want to obtain is the one shown in the following image:
Thank you in advance.
Upvotes: 0
Views: 559
Reputation: 1
hello You may need M_BACKUP_CATALOG_FILES view access to information
You can refer to the SAP Note 1969700 script
Upvotes: 0