#Database

Every story tagged Database, curated for CIOs and IT leaders — ranked by source credibility, engagement, and freshness.

10 stories · open in the command center

  • Enterprise TechCIO OnlineMichael Yau4m

    Oracle simplifies migrating legacy databases off IBM mainframes with support for EBCDIC

    Oracle has introduced EBCDIC character set compatibility features in its AI Database to address a critical technical barrier in mainframe-to-cloud migrations, specifically handling character encoding conversion and binary sort ordering that legacy COBOL applications depend on. This move significantly reduces migration complexity and cost for enterprises with decades-old business logic, positioning Oracle to capture the enterprise market segment struggling with legacy modernization. However, CIOs must carefully evaluate whether this compatibility solution addresses their actual resilience and availability requirements before migrating mission-critical workloads, and should remain cautious about potential vendor lock-in.

  • Software DevelopmentHacker News3m

    The startup's Postgres survival guide

    PostgreSQL optimization is critical for startup infrastructure stability, yet many teams lack practical guidance beyond basic indexing—this survival guide addresses real-world production challenges around schema design, query planning, and write operations that directly impact application performance and scalability. For IT organizations, mastering Postgres fundamentals (proper indexing, transaction management, and connection pooling) prevents costly database outages and performance degradation that can halt business operations, while understanding when to break ORM abstractions becomes essential as systems scale. Strategic implications include reducing technical debt early through intentional schema design, establishing database performance expertise within teams, and avoiding premature optimization while building scalability guardrails that support business growth without major rewrites.

  • Software DevelopmentHacker News3m

    EF Core 11 makes your split queries faster

    EF Core 11 delivers meaningful performance improvements to split queries by eliminating unnecessary JOINs and ORDER BY clauses on reference navigations in collection queries, resulting in 9% faster execution and 10% lower memory allocation in benchmarked scenarios. This optimization directly benefits applications using AsSplitQuery() by reducing database workload and improving query efficiency without code changes, making it a valuable upgrade for data-intensive workloads. IT organizations should prioritize upgrading to .NET 11 and EF Core 11 to realize these database performance gains, particularly for systems with complex entity relationships.

  • Cloud & InfrastructureHacker News3m

    Show HN: PostgreSQL performance and cost across 23 EC2 instance types

    Comprehensive benchmarking of PostgreSQL across 23 AWS EC2 instance types reveals that ARM-based Graviton processors (m8g.large at $82/month) deliver superior cost-efficiency for read-heavy workloads, achieving 33,000+ RPS with 20% headroom while undercutting comparable x86 options by 10-15%. CIOs can leverage this data to right-size database infrastructure and realize significant cloud cost savings through informed instance selection, with performance-per-dollar metrics showing Graviton architectures consistently outperforming legacy x86-64 options across comparable configurations.

  • Software DevelopmentHacker News3m

    Lightning Memory-Mapped Database Manager (LMDB) 1.0

    LMDB 1.0 is a high-performance, memory-mapped embedded database that eliminates traditional caching layers and maintenance overhead, offering ACID compliance with zero recovery procedures needed after crashes. For IT organizations, this means significantly reduced operational complexity and infrastructure costs for applications requiring fast transactional data access, particularly in latency-sensitive environments. However, organizations must carefully evaluate operational constraints around transaction management, process handling, and stale reader cleanup to avoid database corruption and performance degradation.

  • Software DevelopmentHacker News3m

    SQLite improving performance with pre-sort

    SQLite's B-tree performance degrades significantly when inserting randomly-ordered data (100K inserts/sec), but pre-sorting batched inserts before committing improves throughput 2-3x to ~300K inserts/sec by leveraging the database engine's optimized sequential write patterns. This optimization has direct implications for IT organizations managing high-volume transactional systems with unordered primary keys (session tokens, secure identifiers), potentially reducing database infrastructure costs and latency while improving application scalability without code-level database changes.

  • Software DevelopmentHacker News3m

    Show HN: DBOSify – Drop-in Temporal replacement built on Postgres

    DBOSify offers a Postgres-based alternative to Temporal for running durable workflows, eliminating the need for a separate workflow orchestration server and reducing infrastructure complexity for Python applications. This drop-in replacement leverages existing PostgreSQL databases to handle workflow execution, activity retries, signal handling, and failure recovery, potentially reducing operational overhead and licensing costs. IT organizations can simplify their distributed systems architecture by consolidating workflow orchestration into their existing database infrastructure, though this approach is limited to Python-only applications.

  • Software DevelopmentHacker News3m

    Looking Forward to Postgres 19: It's About Time

    PostgreSQL 19 introduces native temporal table support, eliminating the need for complex custom solutions like btree_gist exclusion constraints and enabling organizations to efficiently track historical data changes and answer time-based queries natively. This capability reduces application complexity, improves data integrity, and lowers the technical barrier for implementing audit trails and temporal analytics—critical for compliance, analytics, and regulatory requirements across industries. IT leaders should evaluate their current temporal data management approaches and plan migration strategies to leverage this native functionality for improved performance, reduced maintenance overhead, and simpler application code.

  • Startups & FundingHacker News3m

    PgDog is funded and coming to a database near you

    PgDog, a newly funded ($5M seed round) PostgreSQL scaling proxy, enables horizontal scalability for Postgres to handle 100TB+ tables and 1M+ QPS, eliminating the traditional need for specialized databases like MongoDB or DynamoDB. The open-source solution (1.4M Docker pulls) is production-ready across multiple deployment environments (on-prem, cloud, edge) with no vendor lock-in or hidden costs, and backed by a team with proven PostgreSQL scaling expertise from companies like Instacart. For IT organizations, this represents a strategic opportunity to consolidate database infrastructure, reduce operational complexity, and lower total cost of ownership while maintaining control over deployment and data residency.

  • Software DevelopmentHacker News3m

    pg_durable: Microsoft open sources in-database durable execution

    Microsoft has open-sourced pg_durable, a PostgreSQL extension that enables durable, fault-tolerant workflow execution directly within the database, eliminating the need for external orchestration tools, job queues, and distributed workers. This capability allows IT organizations to consolidate their data processing architectures by moving workflow logic, retry logic, and progress tracking into PostgreSQL itself, reducing operational complexity and the number of infrastructure components to manage. For technology leaders, this represents a strategic shift toward simplifying data pipeline architectures and reducing the surface area for partial failures and consistency issues in batch and background job processing.

Browse all tags