Tag Archives: programming

Exploring PostgreSQL 17: A Developer’s Guide to New Features – Part 1 – PL/pgSQL

PostgreSQL 17 Beta, released on May 23, 2024, introduces new features for database developers and migration engineers. One notable addition is the ability to declare array types directly based on underlying database objects, enhancing code readability and maintainability. These enhancements empower developers to leverage the full potential of PostgreSQL 17 in their projects. Continue reading

Rate this:

Posted in postgresql | Tagged , , , , , , , , , , | 10 Comments

Conversion Chronicles – Mapping Oracle Number Data types using AWS SCT and Ora2pg.

Mapping Oracle Number Data types is crucial during migration, and AWS Schema Conversion Tool (SCT) and Ora2pg play vital roles. SCT offers precise mapping with custom transformations and constraint-based data type mapping. Ora2pg defaults to bigint for unassigned precision or scale and provides comprehensive configuration options, including custom script integration for automation. Continue reading

Rate this:

Posted in Oracle to PG migration, postgresql | Tagged , , , , , , , , , , , , , , , | Leave a comment

PL/pgSQL Conversion Gotchas: Cursors and Last Fetch.

Databases Cursors are one of the key components of development. We have been using them for traversing query results for processing based on business logic or functionality. In Code Conversion, Cursor code always needs to be ported either from PL\SQL … Continue reading

Rate this:

Posted in Oracle to PG migration, postgresql | Tagged , , , , , , , , , | 2 Comments

PL/pgSQL Conversion Gotchas: How to Handle Conflicting Variables.

Whether during conversions or new development, it’s essential to avoid variable names that could create ambiguity within functions or procedures.In the blog, we will walk through how to resolve variables conflicts within functions or procedures. Continue reading

Rate this:

Posted in Oracle to PG migration, postgresql | Tagged , , , , , , , , , | 4 Comments