SELECT SCN_TO_TIMESTAMP(13232543131) from dual;
I am a software engineer and working as an Oracle Apps DBA. I have started this blog to share my knowledge with others . Here you can find stuff related to Oracle DBA,Oracle Applications DBA,
Tuesday, August 6, 2024
Database Size in SQL Server Management Studio
--List the size of all databases on the server
SELECT
DB_NAME(database_id) AS DatabaseName,
SUM(size * 8 / 1024) AS SizeMB
FROM sys.master_files
GROUP BY database_id;
Subscribe to:
Posts (Atom)