SlideShare ist ein Scribd-Unternehmen logo
1 von 23
Downloaden Sie, um offline zu lesen
© 2015 EnterpriseDB Corporation. All rights reserved. 1
Introducing Postgres Plus Advanced Server 9.4
To listen to the recorded presentation please visit
EnterpriseDB > Resources > Webcasts > Ondemand Webcasts
© 2015 EnterpriseDB Corporation. All rights reserved. 2
•  EnterpriseDB and Postgres Plus Overview
•  Postgres Plus Advanced Server 9.4
−  Resource Management
−  Partitioning
−  Enhanced SQL (Cube/Rollup/Grouping Sets, Connect_By_Root)
−  UTL_HTTP
−  SQL/Protect & MTK Enhancements
Agenda
© 2015 EnterpriseDB Corporation. All rights reserved. 3
POSTGRES
innovation
ENTERPRISE
reliability
24/7
support
Services
& training
Enterprise-class
features, tools &
compatibility
Indemnification
Product
road-map
Control
Thousands
of developers
Fast
development
cycles
Low cost
No vendor
lock-in
Advanced
features
Enabling commercial
adoption of Postgres
© 2015 EnterpriseDB Corporation. All rights reserved. 4
The Database
PostgreSQL / Postgres Plus Advanced Server
Tools
xDB Replication
Server
Failover Manager
Management and
Monitoring
Back and
Recovery Tool Postgres Enterprise
Management (PEM)
Stack Builder &
Update Monitor
Cloud Enablement
Cloud Database for
Amazon Web Services Open Stack Support*
Core
OR
PostgreSQL
Postgres Plus
Advanced Server
Extension
Components (PostGIS, pgPool, pgBouncer,
SQL/Protect, PL/Perl Python TCL, FDW)
Connectors (.Net, JDBC, ODBC,OCL)
Utilities (EDBLoader, EDBPlus, ECPGPlus)
Migration Tool Kit
* Roadmap
EnterpriseDB Product Overview
APIs to enable the
Platform as a Service*
© 2015 EnterpriseDB Corporation. All rights reserved. 5
EDB is a Gartner Magic Quadrant Leader
© 2015 EnterpriseDB Corporation. All rights reserved. 6
from PostgreSQL core from EDB Development
•  64 bit LOBs
up to 4TB
in size
•  Custom
background
workers
•  Writable
Foreign
Data
Wrappers
v9.1
EDB contributions to
PostgreSQL core
• No restore In-place
version upgrades
v9.2
v9.3
v9.0
• Materialized Views
•  Deferrable unique
constraints and
Exclusion constraints
•  Streaming replication
•  Windows
64 bit Support
•  Hot standby
•  Synchronous
replication
•  Serializable
Snapshot Isolation
•  In-memory
(unlogged) tables
•  Writeable Common
Table Expressions
(WITH)
•  Cascaded streaming
replication
•  JSON support, Range
Types
•  VARRAY support
•  SQL Profiler
•  Index Advisor
•  Parallel Bulk Data
Load
•  Row Level Security •  Declarative Partitioning
syntax
•  Table() function support
for nested tables
•  INSERT APPEND hint
•  xDB Multi-master
replication
•  Expanded Object Type
support
•  Partition Read
Improvements
over 75x
•  Support for
1000s of
Partitions
•  Partition write
improvements
over 400x
• MySQL Foreign Data
Wrappers for SQL/MED
Postgres Plus Advanced Server Key Feature Development
• Index-only scans (covering
indexes)
• Linear read scalability to
64 cores
v9.4
• pg_prewarm
• ALTER SYSTEM
• Concurrently updatable
Materialized Views
• Mongo FDW & MySQL FDW
•  Logical
Decoding for
Scalability
•  JSONB Data
Type
•  JSONB
Indexing
•  Expanded
JSON functions
•  Delayed
Application of
Replication
•  3x Faster GIN
indexes
•  Support for
Linux Huge
Pages
•  CPU & I/O
Resource
Management
•  SQL Aggregation
with CUBE,
ROLLUP and
GROUPING
SETS
•  Comprehensive
UTL_HTTP
Package
•  Hash Partitioned
Tables
•  Connect_By_Ro
ot Operator for
hierarchical
queries
•  SQL/Protect
Logging to DB
Table
•  EDB*Loader
Improved Error
handling
© 2015 EnterpriseDB Corporation. All rights reserved. 7
CPU & I/O Resource Management
Hash Partitioned Tables
SQL Aggregation with CUBE,
ROLLUP and GROUPING SETS
Comprehensive UTL_HTTP Package
Connect_By_Root Operator
ICU Collation
EDB*Loader Improvements
SQL/Protect Logging to DB Table
Migration Toolkit Enhancements
Postgres Plus Advanced Server Postgres Community
Feature Highlights for Postgres Plus
Advanced Server (PPAS) 9.4
Many new features including:
Logical Change Set Extraction
JSONB Data Type
Time Delayed Standby
ALTER SYSTEM
pg_prewarm()
Materialized View Refresh
Concurrently
Ordered Set Aggregates
and more…
http://www.depesz.com/ is a good reference site
https://commitfest.postgresql.org/ is the global
community site for patches review
© 2015 EnterpriseDB Corporation. All rights reserved. 8
Postgres Plus
Advanced
Server
Resource
Manager
(CPU & I/O)
Reporting
Transactions
80%
20%
Run Mixed Workloads More Efficiently with
PPAS 9.4 Resource Management
•  DBA assigns CPU & I/O to job groups
•  Allocates and prioritizes consumption of resources
•  Low priority jobs don’t hurt high priority jobs
© 2015 EnterpriseDB Corporation. All rights reserved. 9
•  Create Resource Groups and assign the CPU Rate Limit
•  Use these resource groups during a psql session
Run Mixed Workloads More Efficiently with
PPAS 9.4 Resource Management
- Statements executed will be limited in CPU or writing to shared_buffers per
resource group.
- Individual limits are computed based on recent CPU / shared_buffer usage.
- Processes sleep when necessary & avoid sleep when holding critical locks.
- The limits are adjusted regularly based on current usage.
- If multiple processes in the same group are being executed, aggregate usage
will be limited
CREATE RESOURCE GROUP resgrp_a;
CREATE RESOURCE GROUP resgrp_b;
ALTER RESOURCE GROUP resgrp_a SET cpu_rate_limit = .25;
ALTER RESOURCE GROUP resgrp_a SET dirty_rate_limit = 12288;
SET edb_resource_group TO res_grp_a;
© 2015 EnterpriseDB Corporation. All rights reserved. 10
Chapter 13 of EDB Oracle Compatibility Guide for details on usage
One logically large table is broken into smaller physical pieces.
•  Worthwhile when a table would otherwise be very large.
•  Exact point to see benefits will depend on the application.
When should I Partition?
•  Good rule of thumb is that the size of the table should exceed the physical memory
of the database server.
•  When most accessed rows are in a single partition or a small number of partitions.
•  When there is a lot of concurrent inserts or updates (Hash partitioning may benefit)
•  When a query or update accesses a large percentage of a single partition.
•  For Bulk Loads / Unloads (ALTER TABLE faster than bulk load, avoids VACUUM
overhead from DELETE).
•  When actively archiving seldom-used data to less expensive storage.
Support Larger Tables with Partitioning
© 2015 EnterpriseDB Corporation. All rights reserved. 11
Use PPAS Syntax To Minimize Partitioning
Errors and Complexity
CREATE TABLE sales (
dept_no number,
part_no varchar2,
country varchar2(20),
date date,
amount number )
PARTITION BY RANGE(date)
(
PARTITION q1_2014 VALUES LESS THAN('2014-
Apr-01'),
PARTITION q2_2014 VALUES LESS THAN('2014-
Jul-01'),
PARTITION q3_2014 VALUES LESS THAN('2014-
Oct-01'),
PARTITION q4_2014 VALUES LESS THAN('2015-
Jan-01')
);
CREATE INDEX sales_date on sales(date);
Simple Declarative
PARTITION BY and
SUBPARTITION BY
Single Index
command
•  More SQL syntax provide sophisticated
data management techniques
−  ADD / DROP to augment the partitions
−  SPLIT to divide the data
−  EXCHANGE to swap in a new partition
−  TRUNCATE to remove all data but leave
structure in tact
−  MOVE to shift data to a different tablespace
•  PPAS Improved performance with Fast
Pruning and Constraint Exclusion support
•  System Catalog Views for Partitions
−  ALL_PART_TABLES
−  ALL_TAB_PARTITIONS,
ALL_TAB_SUBPARTITIONS
−  ALL_PART_KEY_COLUMNS,
ALL_SUBPART_KEY_COLUMNS
© 2015 EnterpriseDB Corporation. All rights reserved. 12
List, Range or Hash Partition Rules
•  Provide the constraints to define where data is stored
•  For PPAS, also used to support Fast Partition Pruning
•  Consider how data stored will be queried, include often-queried columns
in partitioning rules.
•  List – Single partitioning key column; based on exact value
•  Range – One of more partitioning key columns; based on values between
two extremes
•  Hash (New 9.4) – Data divided amongst equal sized partitions based on
hash value.
* Internal tests have shown hash partitioning can improve performance when many
hundred concurrent connections insert/update to the same table*
PPAS 9.4 Supports Various Partitioning
Rules
© 2015 EnterpriseDB Corporation. All rights reserved. 13
Advanced Server’s Query Planner uses two optimization techniques to
compute an efficient plan:
•  Constraint exclusion (constraint_exclusion = partition or on)
−  Provided by PSQL
−  SELECT w/ WHERE: Query Planner must examine the CHECK constraints defined
for each partition before deciding which partition to send query fragments to.
•  Fast pruning (edb_partition_pruning = on)
−  Occurs earlier in query planner process. Understands the relationship between
partitions in an Oracle style partitioned table.
−  SELECT w/ WHERE: Query Planner can reason that only a certain partition holds
the values without examining the constraints defined for each partition.
−  Can be used for LIST or single value RANGE Partitions (not usable on subpartitioned
tables or multi-value range partitioned tables)
−  Works with >, >=, =, <=, <, AND, BETWEEN operators in the WHERE Clause
PPAS Improves Partitioning Performance
© 2015 EnterpriseDB Corporation. All rights reserved. 14
•  Aggregation Functions (CUBE / ROLLUP / GROUPING SETS)
−  From the edb-sample.sql, see dept, emp and jobhist tables to aggregate
employees based on their locations, departments and jobs.
−  Chapter 2.2.6 of EDB Database Compatibility Guide for Oracle for more
details on GROUP BY ROLLUP / CUBE / GROUPING SETS and the
subtotals, groupings and result sets generated.
−  Your own data for analysis might be involve sales or support related
information. You could report on revenues or tickets grouped by geographic
regions, assigned sales or support engineer, product utilized, etc.
•  Connect_By_Root
−  Support additional hierarchal query needs. With our edb-sample data, we
can report on various levels of manager employee hierarchies.
−  Chapter 2.2.5.6 of EDB Oracle Compatibility Guide for more details on
sample usage
−  Your own data for reporting might look at hierarchies of products or modules
Enhanced SQL for Aggregation
and Connect_By_Root Syntax
© 2015 EnterpriseDB Corporation. All rights reserved. 15
•  GROUP BY ROLLUP
produces subtotals for each
hierarchal group based on a
left to right listing of items in
the expression
SELECT loc, dname, job, COUNT(*)
AS "employees" FROM emp e,
dept d
WHERE e.deptno = d.deptno
GROUP BY ROLLUP (loc, dname, job)
ORDER BY 1, 2, 3;
Multidimensional Analysis - Rollup
© 2015 EnterpriseDB Corporation. All rights reserved. 16
•  GROUP BY CUBE
produces groupings and
subtotals for every
permutation of items in the
expression
SELECT loc, dname, job, COUNT(*)
AS "employees" FROM emp e,
dept d
WHERE e.deptno = d.deptno
GROUP BY CUBE (loc, dname, job)
ORDER BY 1, 2, 3;
Multidimensional Analysis - Cube
……………
© 2015 EnterpriseDB Corporation. All rights reserved. 17
•  GROUP BY GROUPING
SETS produces one result
set that is a concatenation
of multiple result sets based
on different groupings (i.e.
UNION ALL)
SELECT loc, dname, job, COUNT(*)
AS "employees" FROM emp e,
dept d
WHERE e.deptno = d.deptno
GROUP BY GROUPING SETS (loc,
dname, job)
ORDER BY 1, 2, 3;
Multidimensional Analysis – Grouping Sets
© 2015 EnterpriseDB Corporation. All rights reserved. 18
•  UTL_HTTP – Built in package that provides a way to use the
HTTP(S) protocol to retrieve information found at a URL.
Commonly requested functions now provided:
−  REQUEST, REQUEST_PIECES
−  GET/SET_FOLLOW_REDIRECT
−  GET/SET_RESPONSE_ERROR_CHECK
−  GET/SET_HEADER, GET_HEADER_BY_NAME, GET_HEADER_COUNT
−  READ_RAW, READ_TEXT
−  BEGIN/END_REQUEST, GET_RESPONSE
•  Ch 8.17 of EDB Enterprise Edition / Ch 7.17 of EDB Oracle
Compatibility Guide for more details on usage
Develop Applications To Retrieve Data
With UTL_HTTP Package
© 2015 EnterpriseDB Corporation. All rights reserved. 19
Preventing attacks is normally the responsibility of
the application developer. But with SQL/Protect,
DBAs can now provide another layer of protection
to prevent corruption or co-opting of the database.
Injection
Attack
Report
SQL/
Protect
Attacker
PREVENTION TECHNIQUES
Unauthorized Relations
Utility Commands (e.g. DDL)
SQL Tautology
Unbounded DML
EDBSQL/PROTECT
DBA Managed with
Centralized SQL
Injection Protection
Threat
Deleted
New in 9.4 - View edb_sql_protect_queries
contains Injection Attack Report information (Ch
4.1.1.2.3 of EDB Enterprise Edition Guide for more
information)
© 2015 EnterpriseDB Corporation. All rights reserved. 20
A More Robust Migration Toolkit
New in 9.4
•  A detailed log with well defined error codes to
allow DBAs to better understand which
capabilities of their database applications are
migrate-able to PPAS.
•  See Ch 9 of Migration Toolkit documentation
for a list of the error codes provided
•  Migration of schemas, tables,
constraints, indexes, data,
views and more
•  Online (immediate) or offline
(DDL scripts) migration
•  Customize migrations with
bulk inserts, row filters,
change datatypes inline,
subsets of schema objects
•  Parallel data movement
techniques, bypass logging
for faster data loads or use
native connectivity to source
database.
© 2015 EnterpriseDB Corporation. All rights reserved. 21
1.  Customers running mixed workloads.
2.  Application Developers who integrate with external Web servers.
3.  Customers with large tables where they often search for exact
matches or have many concurrent inserts/updates.
4.  Users who think they need a NoSQL database.
5.  Customers with reporting or data warehousing databases.
6.  DBAs who use need to bulk load data.
7.  DBA’s concerned with Security and SQL Injection Attacks.
Recap: Postgres Plus Advanced Server
(PPAS) 9.4 Use Cases
© 2015 EnterpriseDB Corporation. All rights reserved. 22
How can I learn more?
•  Download Postgres Plus Advanced Server:
•  http://www.enterprisedb.com/download-advanced-server
•  General information feature table:
•  http://www.enterprisedb.com/postgres-plus-advanced-server
•  Set up technical call with a Postgres Expert
•  sales@enterprisedb.com
© 2015 EnterpriseDB Corporation. All rights reserved. 23

Weitere ähnliche Inhalte

Was ist angesagt?

Overview of Postgres 9.5
Overview of Postgres 9.5 Overview of Postgres 9.5
Overview of Postgres 9.5 EDB
 
EDB Postgres with Containers
EDB Postgres with ContainersEDB Postgres with Containers
EDB Postgres with ContainersEDB
 
Active/Active Database Solutions with Log Based Replication in xDB 6.0
Active/Active Database Solutions with Log Based Replication in xDB 6.0Active/Active Database Solutions with Log Based Replication in xDB 6.0
Active/Active Database Solutions with Log Based Replication in xDB 6.0EDB
 
DBaaS with EDB Postgres on AWS
DBaaS with EDB Postgres on AWSDBaaS with EDB Postgres on AWS
DBaaS with EDB Postgres on AWSEDB
 
Best Practices for a Complete Postgres Enterprise Architecture Setup
Best Practices for a Complete Postgres Enterprise Architecture SetupBest Practices for a Complete Postgres Enterprise Architecture Setup
Best Practices for a Complete Postgres Enterprise Architecture SetupEDB
 
What's New in PostgreSQL 9.3
What's New in PostgreSQL 9.3What's New in PostgreSQL 9.3
What's New in PostgreSQL 9.3EDB
 
An Expert Guide to Migrating Legacy Databases to PostgreSQL
An Expert Guide to Migrating Legacy Databases to PostgreSQLAn Expert Guide to Migrating Legacy Databases to PostgreSQL
An Expert Guide to Migrating Legacy Databases to PostgreSQLEDB
 
Expanding with EDB Postgres Advanced Server 9.5
Expanding with EDB Postgres Advanced Server 9.5Expanding with EDB Postgres Advanced Server 9.5
Expanding with EDB Postgres Advanced Server 9.5EDB
 
EnterpriseDB BackUp and Recovery Tool
EnterpriseDB BackUp and Recovery ToolEnterpriseDB BackUp and Recovery Tool
EnterpriseDB BackUp and Recovery ToolEDB
 
Achieving HIPAA Compliance with Postgres Plus Cloud Database
Achieving HIPAA Compliance with Postgres Plus Cloud DatabaseAchieving HIPAA Compliance with Postgres Plus Cloud Database
Achieving HIPAA Compliance with Postgres Plus Cloud DatabaseEDB
 
EDB Postgres DBA Best Practices
EDB Postgres DBA Best PracticesEDB Postgres DBA Best Practices
EDB Postgres DBA Best PracticesEDB
 
Migrating from Oracle to Postgres
Migrating from Oracle to PostgresMigrating from Oracle to Postgres
Migrating from Oracle to PostgresEDB
 
Optimizing Your Postgres ROI Through Best Practices
Optimizing Your Postgres ROI Through Best PracticesOptimizing Your Postgres ROI Through Best Practices
Optimizing Your Postgres ROI Through Best PracticesEDB
 
Which Postgres is Right for You?
Which Postgres is Right for You? Which Postgres is Right for You?
Which Postgres is Right for You? EDB
 
The Real Scoop on Migrating from Oracle Databases
The Real Scoop on Migrating from Oracle DatabasesThe Real Scoop on Migrating from Oracle Databases
The Real Scoop on Migrating from Oracle DatabasesEDB
 
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr UnternehmenDie 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr UnternehmenEDB
 
Postgres Point-in-Time Recovery
Postgres Point-in-Time RecoveryPostgres Point-in-Time Recovery
Postgres Point-in-Time RecoveryEDB
 
Hello World with EDB Postgres
Hello World with EDB PostgresHello World with EDB Postgres
Hello World with EDB PostgresEDB
 
Meet HBase 2.0 and Phoenix-5.0
Meet HBase 2.0 and Phoenix-5.0Meet HBase 2.0 and Phoenix-5.0
Meet HBase 2.0 and Phoenix-5.0DataWorks Summit
 
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!SolarWinds
 

Was ist angesagt? (20)

Overview of Postgres 9.5
Overview of Postgres 9.5 Overview of Postgres 9.5
Overview of Postgres 9.5
 
EDB Postgres with Containers
EDB Postgres with ContainersEDB Postgres with Containers
EDB Postgres with Containers
 
Active/Active Database Solutions with Log Based Replication in xDB 6.0
Active/Active Database Solutions with Log Based Replication in xDB 6.0Active/Active Database Solutions with Log Based Replication in xDB 6.0
Active/Active Database Solutions with Log Based Replication in xDB 6.0
 
DBaaS with EDB Postgres on AWS
DBaaS with EDB Postgres on AWSDBaaS with EDB Postgres on AWS
DBaaS with EDB Postgres on AWS
 
Best Practices for a Complete Postgres Enterprise Architecture Setup
Best Practices for a Complete Postgres Enterprise Architecture SetupBest Practices for a Complete Postgres Enterprise Architecture Setup
Best Practices for a Complete Postgres Enterprise Architecture Setup
 
What's New in PostgreSQL 9.3
What's New in PostgreSQL 9.3What's New in PostgreSQL 9.3
What's New in PostgreSQL 9.3
 
An Expert Guide to Migrating Legacy Databases to PostgreSQL
An Expert Guide to Migrating Legacy Databases to PostgreSQLAn Expert Guide to Migrating Legacy Databases to PostgreSQL
An Expert Guide to Migrating Legacy Databases to PostgreSQL
 
Expanding with EDB Postgres Advanced Server 9.5
Expanding with EDB Postgres Advanced Server 9.5Expanding with EDB Postgres Advanced Server 9.5
Expanding with EDB Postgres Advanced Server 9.5
 
EnterpriseDB BackUp and Recovery Tool
EnterpriseDB BackUp and Recovery ToolEnterpriseDB BackUp and Recovery Tool
EnterpriseDB BackUp and Recovery Tool
 
Achieving HIPAA Compliance with Postgres Plus Cloud Database
Achieving HIPAA Compliance with Postgres Plus Cloud DatabaseAchieving HIPAA Compliance with Postgres Plus Cloud Database
Achieving HIPAA Compliance with Postgres Plus Cloud Database
 
EDB Postgres DBA Best Practices
EDB Postgres DBA Best PracticesEDB Postgres DBA Best Practices
EDB Postgres DBA Best Practices
 
Migrating from Oracle to Postgres
Migrating from Oracle to PostgresMigrating from Oracle to Postgres
Migrating from Oracle to Postgres
 
Optimizing Your Postgres ROI Through Best Practices
Optimizing Your Postgres ROI Through Best PracticesOptimizing Your Postgres ROI Through Best Practices
Optimizing Your Postgres ROI Through Best Practices
 
Which Postgres is Right for You?
Which Postgres is Right for You? Which Postgres is Right for You?
Which Postgres is Right for You?
 
The Real Scoop on Migrating from Oracle Databases
The Real Scoop on Migrating from Oracle DatabasesThe Real Scoop on Migrating from Oracle Databases
The Real Scoop on Migrating from Oracle Databases
 
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr UnternehmenDie 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
 
Postgres Point-in-Time Recovery
Postgres Point-in-Time RecoveryPostgres Point-in-Time Recovery
Postgres Point-in-Time Recovery
 
Hello World with EDB Postgres
Hello World with EDB PostgresHello World with EDB Postgres
Hello World with EDB Postgres
 
Meet HBase 2.0 and Phoenix-5.0
Meet HBase 2.0 and Phoenix-5.0Meet HBase 2.0 and Phoenix-5.0
Meet HBase 2.0 and Phoenix-5.0
 
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
Hi! Ho! Hi! Ho! SQL Server on Linux We Go!
 

Ähnlich wie Postgres Plus Advanced Server 9.4 New Features

The Central View of your Data with Postgres
The Central View of your Data with PostgresThe Central View of your Data with Postgres
The Central View of your Data with PostgresEDB
 
What SQL DBAs need to know about SharePoint
What SQL DBAs need to know about SharePointWhat SQL DBAs need to know about SharePoint
What SQL DBAs need to know about SharePointJ.D. Wade
 
IMS05 IMS V14 8gb osam for haldb
IMS05   IMS V14 8gb osam for haldbIMS05   IMS V14 8gb osam for haldb
IMS05 IMS V14 8gb osam for haldbRobert Hain
 
EDB Database Servers and Tools
EDB Database Servers and Tools EDB Database Servers and Tools
EDB Database Servers and Tools Ashnikbiz
 
Save money with Postgres on IBM PowerLinux
Save money with Postgres on IBM PowerLinuxSave money with Postgres on IBM PowerLinux
Save money with Postgres on IBM PowerLinuxEDB
 
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014Dave Stokes
 
Optimize with Open Source
Optimize with Open SourceOptimize with Open Source
Optimize with Open SourceEDB
 
Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Antonios Chatzipavlis
 
Sql server 2016 Discovery Day
Sql server 2016 Discovery DaySql server 2016 Discovery Day
Sql server 2016 Discovery DayThomas Sykes
 
Enterprise-class security with PostgreSQL - 2
Enterprise-class security with PostgreSQL - 2Enterprise-class security with PostgreSQL - 2
Enterprise-class security with PostgreSQL - 2Ashnikbiz
 
GLOC 2014 NEOOUG - Oracle Database 12c New Features
GLOC 2014 NEOOUG - Oracle Database 12c New FeaturesGLOC 2014 NEOOUG - Oracle Database 12c New Features
GLOC 2014 NEOOUG - Oracle Database 12c New FeaturesBiju Thomas
 
Neuerungen in EDB Postgres 11
Neuerungen in EDB Postgres 11Neuerungen in EDB Postgres 11
Neuerungen in EDB Postgres 11EDB
 
What's New in MySQL 5.7
What's New in MySQL 5.7What's New in MySQL 5.7
What's New in MySQL 5.7Olivier DASINI
 
20141011 my sql clusterv01pptx
20141011 my sql clusterv01pptx20141011 my sql clusterv01pptx
20141011 my sql clusterv01pptxIvan Ma
 
Reduce planned database down time with Oracle technology
Reduce planned database down time with Oracle technologyReduce planned database down time with Oracle technology
Reduce planned database down time with Oracle technologyKirill Loifman
 
Mysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New FeaturesMysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New FeaturesTarique Saleem
 
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
 Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL SupportMysql User Camp
 
Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Performance Tuning Corporation
 
MySQL 5.7: What's New, Nov. 2015
MySQL 5.7: What's New, Nov. 2015MySQL 5.7: What's New, Nov. 2015
MySQL 5.7: What's New, Nov. 2015Mario Beck
 

Ähnlich wie Postgres Plus Advanced Server 9.4 New Features (20)

The Central View of your Data with Postgres
The Central View of your Data with PostgresThe Central View of your Data with Postgres
The Central View of your Data with Postgres
 
What SQL DBAs need to know about SharePoint
What SQL DBAs need to know about SharePointWhat SQL DBAs need to know about SharePoint
What SQL DBAs need to know about SharePoint
 
IMS05 IMS V14 8gb osam for haldb
IMS05   IMS V14 8gb osam for haldbIMS05   IMS V14 8gb osam for haldb
IMS05 IMS V14 8gb osam for haldb
 
EDB Database Servers and Tools
EDB Database Servers and Tools EDB Database Servers and Tools
EDB Database Servers and Tools
 
Save money with Postgres on IBM PowerLinux
Save money with Postgres on IBM PowerLinuxSave money with Postgres on IBM PowerLinux
Save money with Postgres on IBM PowerLinux
 
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
MySQL 5.7 New Features to Exploit -- PHPTek/Chicago MySQL User Group May 2014
 
Optimize with Open Source
Optimize with Open SourceOptimize with Open Source
Optimize with Open Source
 
Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019
 
Sql server 2016 Discovery Day
Sql server 2016 Discovery DaySql server 2016 Discovery Day
Sql server 2016 Discovery Day
 
Enterprise-class security with PostgreSQL - 2
Enterprise-class security with PostgreSQL - 2Enterprise-class security with PostgreSQL - 2
Enterprise-class security with PostgreSQL - 2
 
GLOC 2014 NEOOUG - Oracle Database 12c New Features
GLOC 2014 NEOOUG - Oracle Database 12c New FeaturesGLOC 2014 NEOOUG - Oracle Database 12c New Features
GLOC 2014 NEOOUG - Oracle Database 12c New Features
 
Neuerungen in EDB Postgres 11
Neuerungen in EDB Postgres 11Neuerungen in EDB Postgres 11
Neuerungen in EDB Postgres 11
 
What's New in MySQL 5.7
What's New in MySQL 5.7What's New in MySQL 5.7
What's New in MySQL 5.7
 
20141011 my sql clusterv01pptx
20141011 my sql clusterv01pptx20141011 my sql clusterv01pptx
20141011 my sql clusterv01pptx
 
Reduce planned database down time with Oracle technology
Reduce planned database down time with Oracle technologyReduce planned database down time with Oracle technology
Reduce planned database down time with Oracle technology
 
Mysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New FeaturesMysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New Features
 
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
 Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
 
Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?
 
MySQL 5.7: What's New, Nov. 2015
MySQL 5.7: What's New, Nov. 2015MySQL 5.7: What's New, Nov. 2015
MySQL 5.7: What's New, Nov. 2015
 
Oracle
OracleOracle
Oracle
 

Mehr von EDB

Cloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaSCloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaSEDB
 
Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube EDB
 
EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021EDB
 
Benchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQLBenchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQLEDB
 
Las Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQLLas Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQLEDB
 
NoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQLNoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQLEDB
 
Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?EDB
 
Data Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQLData Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQLEDB
 
Practical Partitioning in Production with Postgres
Practical Partitioning in Production with PostgresPractical Partitioning in Production with Postgres
Practical Partitioning in Production with PostgresEDB
 
A Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAINA Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAINEDB
 
IOT with PostgreSQL
IOT with PostgreSQLIOT with PostgreSQL
IOT with PostgreSQLEDB
 
A Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQLA Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQLEDB
 
Psql is awesome!
Psql is awesome!Psql is awesome!
Psql is awesome!EDB
 
EDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJEDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJEDB
 
Comment sauvegarder correctement vos données
Comment sauvegarder correctement vos donnéesComment sauvegarder correctement vos données
Comment sauvegarder correctement vos donnéesEDB
 
Cloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - ItalianoCloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - ItalianoEDB
 
New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13EDB
 
Best Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLBest Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLEDB
 
Cloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJCloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJEDB
 
Best Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLBest Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLEDB
 

Mehr von EDB (20)

Cloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaSCloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaS
 
Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube
 
EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021
 
Benchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQLBenchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQL
 
Las Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQLLas Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQL
 
NoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQLNoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQL
 
Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?
 
Data Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQLData Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQL
 
Practical Partitioning in Production with Postgres
Practical Partitioning in Production with PostgresPractical Partitioning in Production with Postgres
Practical Partitioning in Production with Postgres
 
A Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAINA Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAIN
 
IOT with PostgreSQL
IOT with PostgreSQLIOT with PostgreSQL
IOT with PostgreSQL
 
A Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQLA Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQL
 
Psql is awesome!
Psql is awesome!Psql is awesome!
Psql is awesome!
 
EDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJEDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJ
 
Comment sauvegarder correctement vos données
Comment sauvegarder correctement vos donnéesComment sauvegarder correctement vos données
Comment sauvegarder correctement vos données
 
Cloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - ItalianoCloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - Italiano
 
New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13
 
Best Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLBest Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQL
 
Cloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJCloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJ
 
Best Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLBest Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQL
 

Kürzlich hochgeladen

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 

Kürzlich hochgeladen (20)

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 

Postgres Plus Advanced Server 9.4 New Features

  • 1. © 2015 EnterpriseDB Corporation. All rights reserved. 1 Introducing Postgres Plus Advanced Server 9.4 To listen to the recorded presentation please visit EnterpriseDB > Resources > Webcasts > Ondemand Webcasts
  • 2. © 2015 EnterpriseDB Corporation. All rights reserved. 2 •  EnterpriseDB and Postgres Plus Overview •  Postgres Plus Advanced Server 9.4 −  Resource Management −  Partitioning −  Enhanced SQL (Cube/Rollup/Grouping Sets, Connect_By_Root) −  UTL_HTTP −  SQL/Protect & MTK Enhancements Agenda
  • 3. © 2015 EnterpriseDB Corporation. All rights reserved. 3 POSTGRES innovation ENTERPRISE reliability 24/7 support Services & training Enterprise-class features, tools & compatibility Indemnification Product road-map Control Thousands of developers Fast development cycles Low cost No vendor lock-in Advanced features Enabling commercial adoption of Postgres
  • 4. © 2015 EnterpriseDB Corporation. All rights reserved. 4 The Database PostgreSQL / Postgres Plus Advanced Server Tools xDB Replication Server Failover Manager Management and Monitoring Back and Recovery Tool Postgres Enterprise Management (PEM) Stack Builder & Update Monitor Cloud Enablement Cloud Database for Amazon Web Services Open Stack Support* Core OR PostgreSQL Postgres Plus Advanced Server Extension Components (PostGIS, pgPool, pgBouncer, SQL/Protect, PL/Perl Python TCL, FDW) Connectors (.Net, JDBC, ODBC,OCL) Utilities (EDBLoader, EDBPlus, ECPGPlus) Migration Tool Kit * Roadmap EnterpriseDB Product Overview APIs to enable the Platform as a Service*
  • 5. © 2015 EnterpriseDB Corporation. All rights reserved. 5 EDB is a Gartner Magic Quadrant Leader
  • 6. © 2015 EnterpriseDB Corporation. All rights reserved. 6 from PostgreSQL core from EDB Development •  64 bit LOBs up to 4TB in size •  Custom background workers •  Writable Foreign Data Wrappers v9.1 EDB contributions to PostgreSQL core • No restore In-place version upgrades v9.2 v9.3 v9.0 • Materialized Views •  Deferrable unique constraints and Exclusion constraints •  Streaming replication •  Windows 64 bit Support •  Hot standby •  Synchronous replication •  Serializable Snapshot Isolation •  In-memory (unlogged) tables •  Writeable Common Table Expressions (WITH) •  Cascaded streaming replication •  JSON support, Range Types •  VARRAY support •  SQL Profiler •  Index Advisor •  Parallel Bulk Data Load •  Row Level Security •  Declarative Partitioning syntax •  Table() function support for nested tables •  INSERT APPEND hint •  xDB Multi-master replication •  Expanded Object Type support •  Partition Read Improvements over 75x •  Support for 1000s of Partitions •  Partition write improvements over 400x • MySQL Foreign Data Wrappers for SQL/MED Postgres Plus Advanced Server Key Feature Development • Index-only scans (covering indexes) • Linear read scalability to 64 cores v9.4 • pg_prewarm • ALTER SYSTEM • Concurrently updatable Materialized Views • Mongo FDW & MySQL FDW •  Logical Decoding for Scalability •  JSONB Data Type •  JSONB Indexing •  Expanded JSON functions •  Delayed Application of Replication •  3x Faster GIN indexes •  Support for Linux Huge Pages •  CPU & I/O Resource Management •  SQL Aggregation with CUBE, ROLLUP and GROUPING SETS •  Comprehensive UTL_HTTP Package •  Hash Partitioned Tables •  Connect_By_Ro ot Operator for hierarchical queries •  SQL/Protect Logging to DB Table •  EDB*Loader Improved Error handling
  • 7. © 2015 EnterpriseDB Corporation. All rights reserved. 7 CPU & I/O Resource Management Hash Partitioned Tables SQL Aggregation with CUBE, ROLLUP and GROUPING SETS Comprehensive UTL_HTTP Package Connect_By_Root Operator ICU Collation EDB*Loader Improvements SQL/Protect Logging to DB Table Migration Toolkit Enhancements Postgres Plus Advanced Server Postgres Community Feature Highlights for Postgres Plus Advanced Server (PPAS) 9.4 Many new features including: Logical Change Set Extraction JSONB Data Type Time Delayed Standby ALTER SYSTEM pg_prewarm() Materialized View Refresh Concurrently Ordered Set Aggregates and more… http://www.depesz.com/ is a good reference site https://commitfest.postgresql.org/ is the global community site for patches review
  • 8. © 2015 EnterpriseDB Corporation. All rights reserved. 8 Postgres Plus Advanced Server Resource Manager (CPU & I/O) Reporting Transactions 80% 20% Run Mixed Workloads More Efficiently with PPAS 9.4 Resource Management •  DBA assigns CPU & I/O to job groups •  Allocates and prioritizes consumption of resources •  Low priority jobs don’t hurt high priority jobs
  • 9. © 2015 EnterpriseDB Corporation. All rights reserved. 9 •  Create Resource Groups and assign the CPU Rate Limit •  Use these resource groups during a psql session Run Mixed Workloads More Efficiently with PPAS 9.4 Resource Management - Statements executed will be limited in CPU or writing to shared_buffers per resource group. - Individual limits are computed based on recent CPU / shared_buffer usage. - Processes sleep when necessary & avoid sleep when holding critical locks. - The limits are adjusted regularly based on current usage. - If multiple processes in the same group are being executed, aggregate usage will be limited CREATE RESOURCE GROUP resgrp_a; CREATE RESOURCE GROUP resgrp_b; ALTER RESOURCE GROUP resgrp_a SET cpu_rate_limit = .25; ALTER RESOURCE GROUP resgrp_a SET dirty_rate_limit = 12288; SET edb_resource_group TO res_grp_a;
  • 10. © 2015 EnterpriseDB Corporation. All rights reserved. 10 Chapter 13 of EDB Oracle Compatibility Guide for details on usage One logically large table is broken into smaller physical pieces. •  Worthwhile when a table would otherwise be very large. •  Exact point to see benefits will depend on the application. When should I Partition? •  Good rule of thumb is that the size of the table should exceed the physical memory of the database server. •  When most accessed rows are in a single partition or a small number of partitions. •  When there is a lot of concurrent inserts or updates (Hash partitioning may benefit) •  When a query or update accesses a large percentage of a single partition. •  For Bulk Loads / Unloads (ALTER TABLE faster than bulk load, avoids VACUUM overhead from DELETE). •  When actively archiving seldom-used data to less expensive storage. Support Larger Tables with Partitioning
  • 11. © 2015 EnterpriseDB Corporation. All rights reserved. 11 Use PPAS Syntax To Minimize Partitioning Errors and Complexity CREATE TABLE sales ( dept_no number, part_no varchar2, country varchar2(20), date date, amount number ) PARTITION BY RANGE(date) ( PARTITION q1_2014 VALUES LESS THAN('2014- Apr-01'), PARTITION q2_2014 VALUES LESS THAN('2014- Jul-01'), PARTITION q3_2014 VALUES LESS THAN('2014- Oct-01'), PARTITION q4_2014 VALUES LESS THAN('2015- Jan-01') ); CREATE INDEX sales_date on sales(date); Simple Declarative PARTITION BY and SUBPARTITION BY Single Index command •  More SQL syntax provide sophisticated data management techniques −  ADD / DROP to augment the partitions −  SPLIT to divide the data −  EXCHANGE to swap in a new partition −  TRUNCATE to remove all data but leave structure in tact −  MOVE to shift data to a different tablespace •  PPAS Improved performance with Fast Pruning and Constraint Exclusion support •  System Catalog Views for Partitions −  ALL_PART_TABLES −  ALL_TAB_PARTITIONS, ALL_TAB_SUBPARTITIONS −  ALL_PART_KEY_COLUMNS, ALL_SUBPART_KEY_COLUMNS
  • 12. © 2015 EnterpriseDB Corporation. All rights reserved. 12 List, Range or Hash Partition Rules •  Provide the constraints to define where data is stored •  For PPAS, also used to support Fast Partition Pruning •  Consider how data stored will be queried, include often-queried columns in partitioning rules. •  List – Single partitioning key column; based on exact value •  Range – One of more partitioning key columns; based on values between two extremes •  Hash (New 9.4) – Data divided amongst equal sized partitions based on hash value. * Internal tests have shown hash partitioning can improve performance when many hundred concurrent connections insert/update to the same table* PPAS 9.4 Supports Various Partitioning Rules
  • 13. © 2015 EnterpriseDB Corporation. All rights reserved. 13 Advanced Server’s Query Planner uses two optimization techniques to compute an efficient plan: •  Constraint exclusion (constraint_exclusion = partition or on) −  Provided by PSQL −  SELECT w/ WHERE: Query Planner must examine the CHECK constraints defined for each partition before deciding which partition to send query fragments to. •  Fast pruning (edb_partition_pruning = on) −  Occurs earlier in query planner process. Understands the relationship between partitions in an Oracle style partitioned table. −  SELECT w/ WHERE: Query Planner can reason that only a certain partition holds the values without examining the constraints defined for each partition. −  Can be used for LIST or single value RANGE Partitions (not usable on subpartitioned tables or multi-value range partitioned tables) −  Works with >, >=, =, <=, <, AND, BETWEEN operators in the WHERE Clause PPAS Improves Partitioning Performance
  • 14. © 2015 EnterpriseDB Corporation. All rights reserved. 14 •  Aggregation Functions (CUBE / ROLLUP / GROUPING SETS) −  From the edb-sample.sql, see dept, emp and jobhist tables to aggregate employees based on their locations, departments and jobs. −  Chapter 2.2.6 of EDB Database Compatibility Guide for Oracle for more details on GROUP BY ROLLUP / CUBE / GROUPING SETS and the subtotals, groupings and result sets generated. −  Your own data for analysis might be involve sales or support related information. You could report on revenues or tickets grouped by geographic regions, assigned sales or support engineer, product utilized, etc. •  Connect_By_Root −  Support additional hierarchal query needs. With our edb-sample data, we can report on various levels of manager employee hierarchies. −  Chapter 2.2.5.6 of EDB Oracle Compatibility Guide for more details on sample usage −  Your own data for reporting might look at hierarchies of products or modules Enhanced SQL for Aggregation and Connect_By_Root Syntax
  • 15. © 2015 EnterpriseDB Corporation. All rights reserved. 15 •  GROUP BY ROLLUP produces subtotals for each hierarchal group based on a left to right listing of items in the expression SELECT loc, dname, job, COUNT(*) AS "employees" FROM emp e, dept d WHERE e.deptno = d.deptno GROUP BY ROLLUP (loc, dname, job) ORDER BY 1, 2, 3; Multidimensional Analysis - Rollup
  • 16. © 2015 EnterpriseDB Corporation. All rights reserved. 16 •  GROUP BY CUBE produces groupings and subtotals for every permutation of items in the expression SELECT loc, dname, job, COUNT(*) AS "employees" FROM emp e, dept d WHERE e.deptno = d.deptno GROUP BY CUBE (loc, dname, job) ORDER BY 1, 2, 3; Multidimensional Analysis - Cube ……………
  • 17. © 2015 EnterpriseDB Corporation. All rights reserved. 17 •  GROUP BY GROUPING SETS produces one result set that is a concatenation of multiple result sets based on different groupings (i.e. UNION ALL) SELECT loc, dname, job, COUNT(*) AS "employees" FROM emp e, dept d WHERE e.deptno = d.deptno GROUP BY GROUPING SETS (loc, dname, job) ORDER BY 1, 2, 3; Multidimensional Analysis – Grouping Sets
  • 18. © 2015 EnterpriseDB Corporation. All rights reserved. 18 •  UTL_HTTP – Built in package that provides a way to use the HTTP(S) protocol to retrieve information found at a URL. Commonly requested functions now provided: −  REQUEST, REQUEST_PIECES −  GET/SET_FOLLOW_REDIRECT −  GET/SET_RESPONSE_ERROR_CHECK −  GET/SET_HEADER, GET_HEADER_BY_NAME, GET_HEADER_COUNT −  READ_RAW, READ_TEXT −  BEGIN/END_REQUEST, GET_RESPONSE •  Ch 8.17 of EDB Enterprise Edition / Ch 7.17 of EDB Oracle Compatibility Guide for more details on usage Develop Applications To Retrieve Data With UTL_HTTP Package
  • 19. © 2015 EnterpriseDB Corporation. All rights reserved. 19 Preventing attacks is normally the responsibility of the application developer. But with SQL/Protect, DBAs can now provide another layer of protection to prevent corruption or co-opting of the database. Injection Attack Report SQL/ Protect Attacker PREVENTION TECHNIQUES Unauthorized Relations Utility Commands (e.g. DDL) SQL Tautology Unbounded DML EDBSQL/PROTECT DBA Managed with Centralized SQL Injection Protection Threat Deleted New in 9.4 - View edb_sql_protect_queries contains Injection Attack Report information (Ch 4.1.1.2.3 of EDB Enterprise Edition Guide for more information)
  • 20. © 2015 EnterpriseDB Corporation. All rights reserved. 20 A More Robust Migration Toolkit New in 9.4 •  A detailed log with well defined error codes to allow DBAs to better understand which capabilities of their database applications are migrate-able to PPAS. •  See Ch 9 of Migration Toolkit documentation for a list of the error codes provided •  Migration of schemas, tables, constraints, indexes, data, views and more •  Online (immediate) or offline (DDL scripts) migration •  Customize migrations with bulk inserts, row filters, change datatypes inline, subsets of schema objects •  Parallel data movement techniques, bypass logging for faster data loads or use native connectivity to source database.
  • 21. © 2015 EnterpriseDB Corporation. All rights reserved. 21 1.  Customers running mixed workloads. 2.  Application Developers who integrate with external Web servers. 3.  Customers with large tables where they often search for exact matches or have many concurrent inserts/updates. 4.  Users who think they need a NoSQL database. 5.  Customers with reporting or data warehousing databases. 6.  DBAs who use need to bulk load data. 7.  DBA’s concerned with Security and SQL Injection Attacks. Recap: Postgres Plus Advanced Server (PPAS) 9.4 Use Cases
  • 22. © 2015 EnterpriseDB Corporation. All rights reserved. 22 How can I learn more? •  Download Postgres Plus Advanced Server: •  http://www.enterprisedb.com/download-advanced-server •  General information feature table: •  http://www.enterprisedb.com/postgres-plus-advanced-server •  Set up technical call with a Postgres Expert •  sales@enterprisedb.com
  • 23. © 2015 EnterpriseDB Corporation. All rights reserved. 23