Nested CTE Query Runtime with Normalization and Caching

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Modern database management systems (DBMS) face challenges in handling and optimizing nested Common Table Expressions (CTEs), leading to increased runtime and performance issues due to materializing intermediate results, which many SQL engines do not efficiently support.

Innovation Solution

A system comprising a SQL optimization engine that includes a CTE normalization stage to unnest nested CTEs, a materialization stage to convert CTEs into Create Table as Select (CTAS) statements, and a caching stage to enhance reusability, thereby optimizing SQL queries and improving performance.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Adaptability or versatility

If nested CTEs are materialized during query execution, then query functionality is enabled, but runtime increases due to additional write operations and data duplication

Engineering Contradiction:
Improvequery functionalityVSAvoidruntime
Core Design Contradiction:
Adaptability or versatilityVSLoss of time

Solution Approach 1:

The patent segments the monolithic CTE execution process into distinct phases: parsing and dependency analysis, incremental materialization, and query execution. By breaking down nested CTEs into individual materialization steps and executing them in dependency order, the system enables query functionality while minimizing runtime overhead through targeted rather than blanket materialization.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The patent performs preliminary parsing and dependency analysis before query execution to identify which CTEs need materialization and in what order. This preliminary action allows the system to prepare materialization strategies in advance, reducing runtime penalties by avoiding unnecessary write operations and data duplication during actual query execution.

Inventive Principle:
Principle #10Preliminary action

2Reliability

If nested CTEs are materialized, then intermediate results are preserved, but data duplication across multiple files increases

Engineering Contradiction:
Improveintermediate results preservationVSAvoiddata duplication
Core Design Contradiction:
ReliabilityVSLoss of substance

Solution Approach 1:

The patent implements a nested materialization strategy where outer CTEs reference inner CTEs that are already materialized. This nested structure allows intermediate results to be preserved and reused across multiple files without duplicating the same data multiple times, as inner CTE results serve as building blocks for outer CTEs in a hierarchical fashion.

Inventive Principle:
Principle #7Nested doll (Nesting)

Solution Approach 2:

The patent creates targeted copies of CTE results only when and where needed for outer CTE dependencies, rather than universal duplication. By copying data selectively based on dependency analysis, the system preserves intermediate results for reliability while minimizing redundant data storage across files.

Inventive Principle:
Principle #26Copying

3Adaptability or versatility

If nested CTEs are supported, then SQL functionality is enhanced, but optimization becomes complex

Engineering Contradiction:
ImproveSQL functionalityVSAvoidoptimization complexity
Core Design Contradiction:
Adaptability or versatilityVSDevice complexity

Solution Approach 1:

The patent implements self-service optimization where the system automatically performs dependency analysis, determines materialization requirements, and executes CTEs in the optimal order without requiring external optimization hints or complex user configuration. This automated self-optimization enhances SQL functionality while managing optimization complexity internally through systematic analysis and execution strategies.

Inventive Principle:
Principle #25Self-service

Solution Approach 2:

The patent incorporates feedback mechanisms where the parser and dependency analyzer continuously assess CTE relationships and adjust materialization strategies accordingly. This feedback-driven approach allows the system to handle nested CTEs effectively by dynamically determining optimization paths based on actual dependency structures, reducing optimization complexity through adaptive rather than static rules.

Inventive Principle:
Principle #23Feedback

Data Source

PatentUS20250315433A1Query runtime for multi-layer composition of queries
Publication Date: 2025.10.09 AMPERITY INC
  • US20250315433A1 patent drawing
  • US20250315433A1 patent drawing
  • US20250315433A1 patent drawing

AI summary

The present disclosure describes a system and method for optimizing SQL queries, specifically addressing challenges in handling and optimization of nested Common Table Expressions (CTEs). The system comprises a SQL optimization engine configured to receive SQL scripts from a SQL editor application and output optimized SQL to a query engine for execution on a database. The optimization engine utilizes three primary stages: a CTE normalization stage, a materialization stage, and a caching stage. The CTE normalization stage unnests nested CTEs into single-level CTEs. The materialization stage implements a materialized Create Table As Select (CTAS) strategy for materializing the base query. The caching stage enables reusability of the materialized base query across multiple queries, increasing efficiency and performance. This system provides technical solutions to enhance the capabilities of SQL engines that lack native support for nested CTEs, offering improved query performance and management of large datasets.