Find database size in Oracle March 28, 2018 To find database size (GB) in Oracle, use below query. select round((sum(bytes)/1048576/1024), 2) from v$datafile; Read more
Backup and restore in PostgreSQL March 18, 2018 To take backup and restore in PostgreSQL database, use below commands. Backup : pg_dump -U <userName> -f <backupLocation.sql> <dbName> Restore : psql -d <dbName> -f <backupLocation.sql> Read more