Comparison of database operations-related capabilities
Suggest editsConsider these operations-related capabilities when analyzing the feasibility of your migration.
High availability
Mission-critical workloads must remain operational at all times and have little tolerance for even planned downtime for maintenance. This demand for high availability requires solutions that provide:
- High-speed replication and redundancy to eliminate single points of failure in the system
- Failure detection and automated failover to ensure systems continue to function in case of a breakdown in the system
- Data and system recovery to assist DBAs following failure events
Oracle Enterprise | EDB Postgres Advanced Server |
---|---|
Data Guard | Yes Using streaming replication and log shipping |
Active Data Guard | Yes Failover Manager |
Flashback (querying) | No |
Flashback (undo operations) | No |
Backup and recovery tools | Yes Barman or pgBackRest |
Point-in-time recovery | Yes |
Performance and scalability
You can optimize database operations through various means to deliver higher performance. Connection pooling, for example, refers to a common way of maintaining open connections to the database for applications that repeatedly make requests as opposed to having to create new connections each time. Data replication can increase performance by making information simultaneously available to multiple end-user applications. You can achieve these performance enhancements through database enhancements and various external complementary solutions.
Performance/scalability | Oracle Enterprise | EDB Postgres Advanced Server |
---|---|---|
Connection pooling | Yes | Yes |
5-9s High availability | Yes Using Real Application Clusters (RAC) | Yes Using EDB Postgres Distributed |
Write scalabality | Yes RAC | No |
Read scalability | Yes Using Active Data Guard or RAC | Yes Achieved with read replicas |
In-memory database | Yes | No |
Multi-master read/write solution | Yes Using Advanced Replication, Streams, or GoldenGate | Yes EDB Postgres Distributed or Replication Server |
Columnar store | Yes Using in-memory column store | No |
CPU and I/O resource limits | Yes | Yes |
Security
Database security consists of many dimensions, including secure connections, password management, access control, physical data encryption, auditing, and more. Among open source and commercial databases, EDB Postgres Advanced Server is one of the most secure and contains extensive support for PCI DSS.
Security | Oracle Enterprise | EDB Postgres Advanced Server |
---|---|---|
Authentication systems support | Yes LDAP, SSL, RADIUS, PAM, Kerberos, GSSAPI, SSPI | Yes LDAP, SSL, RADIUS, PAM, Kerberos, GSSAPI, SSPI |
DB connection encryption | Yes | Yes |
DB connection white lists | Yes Using before connect triggers | Yes |
DB connection black lists | Yes Using before connect triggers | Yes |
Profiles for passwords | Yes | Yes ✓ |
Server code obfuscation | Yes | Yes |
ANSI standard SQL GRANT/REVOKE | Yes | Yes |
Column-level permissions | Yes | Yes |
User/group/role support | Yes | Yes ✓ |
Virtual Private Database (VPD) / Row Level Security (RLS) | Yes | Yes |
View security barriers | No | Yes |
Transparent Data Encryption | Yes | Yes |
Data masking | Yes | No |
Data redaction | Yes | Yes ✓ |
Real Application Security | Yes | Partial Only DBMS_RLS functionality |
Database Vault | Yes | No |
Audit Vault and Database Firewall | Yes | Partial Database firewall only (SQL/protect) |
Advanced Security | Yes | Yes Multiple options available; see Data encryption options |
Auditing | Yes | Yes |
Fine-grained auditing | Yes | No |
Data encryption toolkit | Yes | Yes ✓ DBMS_CRYPTO package provide with compatibility for Oracle |
Data encryption options
The following data encryption options offer different levels and granularity of protection depending on the needs of the application.
Using pgcrypto:
- Postgres contrib module.
- Applied to selected table columns.
- Can't search or index encrypted fields.
- Encryption must be applied at table creation, so advance planning is required.
- The application must handle the encryption/decryption so that exchanges with the database remain encrypted.
- DBAs can't see data in clear.
Using DBMS_CRYPTO:
- Oracle-compatible wrapper around pgcrypto with same features and limitations.
- Supports multiple cipher algorithms.
- DES, 3DES, AES, and AES128.
- MD4, MD5, and SHA-1 hash functions.
- Generate cryptographically strong random values.
Using EDB Transparent Data Encryption:
- Encrypts all Postgres user data stored on disk.
- Prevents unauthorized viewing of data in operating system files on the database server and on backup storage
- No application changes or updated client drivers.
- Flexible Key Management architecture.
Using disk partition encryption:
- File system disk partition is encrypted/decrypted by the OS.
- Protects all files in the database partition, including temporary files.
- Data is decrypted when read from the filesystem. This allows DBAs to see the data so they have roles and permissions locked down.
- Transparent to application developers, e.g., Red Hat Enterprise Linux supports Linux Unified Key Setupon-disk-format (LUKS).
Using file system level:
- Individual files or directories are encrypted by the file system.
- Requires file-based key management.
- Individual management of encrypted files, e.g., incremental backups even in encrypted form.
- Access control can be enforced by use of public-key cryptography.
- Cryptographic keys are held in memory only while the file that is decrypted by them is held open.
- Transparent to application developers, e.g., eCryptfs for Linux.
Using Thales CipherTrust Transparent Encryption:
- Secures data at-rest for EPAS databases and backups.
- File system-level encryption backed by centralized key management.
- Privileged user access controls.
- Detailed data access audit logging.
Integration
Today’s data centers commonly consist of one or more relational and many nonrelational database solutions deployed to handle specific workloads based on data type and application. Relational databases use a range of mechanisms for connecting to other like and dissimilar database solutions across the infrastructure to connect data from multiple sources and create a cohesive data fabric. In some cases, the database is engineered with specific capabilities that enhance data integration. Database vendors also develop adaptors that enable their database to connect with other vendor solutions.
Integration | Oracle Enterprise | EDB Postgres Advanced Server |
---|---|---|
Database links | Yes | Yes ✓ |
Native asynchronous log-based replication | Yes | Yes |
Native synchronous log-based replication | Yes | Yes |
Session-based synchronous replication* | No | Yes |
Distributed transactions | Yes | No |
Distributed queries | Yes | Yes |
Integration with SQL Server | Yes Oracle Database Gateway | Yes Replication Server |
Integration with Hadoop | Yes Oracle Data Integrator | Yes HDFS Foreign Data Wrapper |
Integration with MongoDB | Yes Oracle GoldenGate | Yes MongoDB Foreign Data Wrapper |
Integration with MySQL | Yes Oracle Database Gateway | Yes MySQL Foreign Data Wrapper or Migration Toolkit |
Integration with Sybase | Yes Oracle Database Gateway | Yes Migration Toolkit |
*It's possible, and often useful, to have some transactions commit synchronously and others asynchronously depending on the session connected to the database.
Management
Large enterprises have large database deployments often into the hundreds and beyond. DBAs require tools for maintaining these data farms easily and quickly and for performing operations in bulk across multiple databases. Customizable graphical consoles with complete features for monitoring, tuning, managing, and alerting are critical to DBAs performing the basics of their responsibilities. Management encompasses both the capabilities in the database that support the DBA in their operational tasks and tools external to the database.
Management | Oracle Enterprise | EDB Postgres Advanced Server |
---|---|---|
CLI | Yes SQL*Plus | Yes ✓ EDB*Plus |
Bulk data loader | Yes SQL*Loader | Yes ✓ EDB*Loader |
Enterprise management | Yes Oracle Enterprise Manager | Yes Postgres Enterprise Manager |
System catalog views | Yes | Yes ✓ (See Appendix C) |
Point-in-time recovery (PITR) | Yes | Yes |
Online backup | Yes | Yes |
Online reorganization | Yes | No |
Automatic memory management | Yes | No |
Automatic storage management | Yes | No |
Automatic undo management | Yes | No |
Diagnostics package | Yes | Yes EDB Wait Sates |
Tuning package | Yes | Yes Tuning Wizard, Index Advisor, Postgres Expert in PEM |
SQL query profiler | Yes | Yes Available in PEM |
EDB Postgres Advanced Server-compatible catalog views
EDB Postgres Advanced Server provides over 90 Oracle catalog views that provide information about database objects in a manner compatible with the Oracle data dictionary views.
ALL_ Views | DBA_ Views | USER_ Views |
---|---|---|
ALL_ALL_TABLES | DBA_ALL_TABLES | USER_ALL_TABLES |
ALL_COL_PRIVS | DBA_COL_PRIVS | USER_COL_PRIVS |
ALL_CONSTRAINTS | DBA_CONSTRAINTS | USER_CONSTRAINTS |
ALL_CONS_COLUMNS | DBA_CONS_COLUMNS | USER_CONS_COLUMNS |
ALL_DB_LINKS | DBA_DB_LINKS | USER_DB_LINKS |
ALL_DEPENDENCIES | DBA_DEPENDENCIES | USER_DEPENDENCIES |
ALL_DIRECTORIES | DBA_DIRECTORIES | |
ALL_INDEXES | DBA_INDEXES | USER_INDEXES |
ALL_IND_COLUMNS | DBA_IND_COLUMNS | USER_IND_COLUMNS |
ALL_OBJECTS | DBA_OBJECTS | USER_OBJECTS |
ALL_PART_KEY_COLUMNS | DBA_PART_KEY_COLUMNS | USER_PART_KEY_COLUMNS |
ALL_PART_TABLES | DBA_PART_TABLES | USER_PART_TABLES |
ALL_POLICIES | DBA_POLICIES | USER_POLICIES |
DBA_PROFILES | ||
ALL_QUEUES | DBA_QUEUES | USER_QUEUES |
ALL_QUEUE_TABLES | DBA_QUEUE_TABLES | USER_QUEUE_TABLES |
DBA_ROLES | ||
DBA_ROLE_PRIVS | USER_ROLE_PRIVS | |
ALL_SEQUENCES | DBA_SEQUENCES | USER_SEQUENCES |
ALL_SOURCE | DBA_SOURCE | USER_SOURCE |
ALL_SUBPART_KEY_COLUMNS | DBA_SUBPART_KEY_COLUMNS | USER_SUBPART_KEY_COLUMNS |
ALL_SYNONYMS | DBA_SYNONYMS | USER_SYNONYMS |
ALL_TABLES | DBA_TABLES | USER_TABLES |
ALL_TAB_COLUMNS | DBA_TAB_COLUMNS | USER_TAB_COLUMNS |
ALL_TAB_PARTITIONS | DBA_TAB_PARTITIONS | USER_TAB_PARTITIONS |
ALL_TAB_PRIVS | DBA_TAB_PRIVS | USER_TAB_PRIVS |
ALL_TAB_SUBPARTITIONS | DBA_TAB_SUBPARTITIONS | USER_TAB_SUBPARTITIONS |
ALL_TRIGGERS | DBA_TRIGGERS | USER_TRIGGERS |
ALL_TYPES | DBA_TYPES | USER_TYPES |
ALL_USERS | DBA_USERS | USER_USERS |
ALL_VIEWS | DBA_VIEWS | USER_VIEWS |
ALL_VIEW_COLUMNS | DBA_VIEW_COLUMNS | USER_VIEW_COLUMNS |
In addition to the views listed in the table, the following views are also provided:
- DBMS_AQ_STAT_DATABASES
- DBMS_AQ_STAT_MESSAGES
- DBMS_AQ_STAT_QUEUES
- DBMS_AQ_STAT_WAITERS
- PRODUCT_COMPONENT_VERSION
- V$VERSION
Deployment options
With the advance of public and private clouds and virtualization, the range of database deployment options has increased for end users. The following is a snapshot of the available deployment options for Oracle Enterprise and EDB Postgres Advanced Server.
Deployment options | Oracle Enterprise | EDB Postgres Advanced Server |
---|---|---|
On-premises hardware | Yes Intel, AMD, IBM Power, Sun ultraSPARC | Yes Intel, AMD, IBM Power |
On-premises virtual | Yes With restrictions | Yes |
On-premises cloud, private cloud | Yes Oracle Cloud on an Oracle stack including infrastructure and platform (middleware and database) | Yes Consumption-based solution in HPE GreenLake Database with EDB Postgres |
Public cloud - managed service | Yes Oracle Cloud on a proprietary stack including infrastructure and platform (middleware and database) | Yes BigAnimal |
Public cloud - self managed | Yes | Yes |
Hybrid cloud | Yes | Yes |
Kubernetes/containers | Yes | Yes |
Could this page be better? Report a problem or suggest an addition!