Space allocation is the most primary and important part in any Database.
Teradata gives us the unique set of System Tables, with the help of which, we can do some useful space allocation calculation. Sometimes when there is no more space left in the System then we need to check in the existing databases and retrieve the unused space from them to fulfill our space requirement.
Below mentioned query help us to identify all the Database and the amount of space used by it –
SELECT
DatabaseName (TITLE ‘DatabaseName’)
,SUM(MaxPerm)/(1024*1024*1024) (DECIMAL(15,6)) (TITLE ‘Max Perm (GB)’)
,SUM(CurrentPerm)/(1024*1024*1024) (DECIMAL(15,6)) (TITLE ‘Current Perm (GB)’)
,((SUM(CurrentPerm))/ NULLIFZERO (SUM(MaxPerm)) * 100) (DECIMAL(15,6)) (TITLE ‘Percent Used’)
FROM DBC.DiskSpace
WHERE MAXPERM >0
GROUP BY 1
ORDER BY 4 DESC
;
This Query will return 4 columns DatabaseName, Max Perm (GB), Current Perm (GB) and Percent Used. From them you can analyze the amount space occupied by each Database in the given teradata system.



9 comments
Skip to comment form
Pokijogos is where it’s at. I recently found their site. So much easier to use than some others I’ve seen. Definitely my new go-to. pokijogos
Downloaded the apk from vk777gameapk. Installation went fine. Gameplay’s actually pretty fun! Good job! Visit vk777gameapk vk777gameapk
Been using alfabetapostas for a while now, and honestly? It’s pretty solid. Good odds! Try your luck at alfabetapostas and let me know how it goes.
Thanks for the great post. Very informative and helpful.
Can you please explain the reason for entering 1024*1024*1024 for sum(maxperm)
Author
so that it gives the size in GB, deafault value is in bytes which is hard to understand thats why it is divided by 1024 three times.
WHats the point if you won’t allow screen copy?
Author
To protect the originality of content … 🙂
you can disable javascript in browser and then after reloding the page you can copy the page content