Today, exactly that happened.
Today, exactly that happened.
dbLinter can help you sort your join and filter criteria and spot issues like this.
www.salvis.com/blog/2025/07...
dbLinter can help you sort your join and filter criteria and spot issues like this.
www.salvis.com/blog/2025/07...
fn ( ... ) OVER ( <w> GROUPS ... EXCLUDE ... )
...
WINDOW <w> AS ( ... )
GROUPS => rows with the same sort key are in the same group
EXCLUDE => omit the current or adjacent rows
fn ( ... ) OVER ( <w> GROUPS ... EXCLUDE ... )
...
WINDOW <w> AS ( ... )
GROUPS => rows with the same sort key are in the same group
EXCLUDE => omit the current or adjacent rows
We even accept some more abstracts, if you would like to present technical aspects of your low-code platform.
#lowcode @doagev.bsky.social
We even accept some more abstracts, if you would like to present technical aspects of your low-code platform.
#lowcode @doagev.bsky.social
SELECT ... FROM ... MATCH_RECGONIZE (
ORDER BY ...
MEASURES ...
PATTERN ( total+ )
DEFINE total AS SUM ( ... ) <= ...
)
e.g. to group sales by date into batches with value <= X
SELECT ... FROM ... MATCH_RECGONIZE (
ORDER BY ...
MEASURES ...
PATTERN ( total+ )
DEFINE total AS SUM ( ... ) <= ...
)
e.g. to group sales by date into batches with value <= X
Load large Excel spreadsheets like a Pro using some cool features in the Oracle Database!
youtu.be/BzpCaMcGTVo
SELECT * FROM ( SELECT 't1' t1, t1.* FROM t1) t1
NATURAL FULL JOIN ( SELECT 't2' t2, t2.* FROM t2 ) t2
WHERE t1 IS NULL OR t2 IS NULL
For this to work the columns must
Have the same names in each table
Contain no NULLs
SELECT * FROM ( SELECT 't1' t1, t1.* FROM t1) t1
NATURAL FULL JOIN ( SELECT 't2' t2, t2.* FROM t2 ) t2
WHERE t1 IS NULL OR t2 IS NULL
For this to work the columns must
Have the same names in each table
Contain no NULLs
PIVOT ( fn FOR col IN ( 'v1', 'v2', ... ) )
This adds a column for each value in the IN list with the fn result
You can have many fns but must alias each:
PIVOT ( fn1 a1, fn2 a2 ... )
Any table columns not in the PIVOT clause form an implicit group by
PIVOT ( fn FOR col IN ( 'v1', 'v2', ... ) )
This adds a column for each value in the IN list with the fn result
You can have many fns but must alias each:
PIVOT ( fn1 a1, fn2 a2 ... )
Any table columns not in the PIVOT clause form an implicit group by
This means a value can be listed many times in an index - once for each row
Deduplicate entries within a block in Oracle Database with
CREATE INDEX ... COMPRESS
This means a value can be listed many times in an index - once for each row
Deduplicate entries within a block in Oracle Database with
CREATE INDEX ... COMPRESS
blog.cloudnueva.com/validation-l...
blog.cloudnueva.com/validation-l...
We'll cover Oracle Database 23ai enhancements to help you do this such as:
Better loops
Extended case expressions
JSON integration
The automatic SQL transpiler
Starts 10am UK time
go.oracle.com/LP=146704?el...
We'll cover Oracle Database 23ai enhancements to help you do this such as:
Better loops
Extended case expressions
JSON integration
The automatic SQL transpiler
Starts 10am UK time
go.oracle.com/LP=146704?el...
💡- Flashback Time Travel -
www.killiansbytes.com/post/flashba...
💡- Flashback Time Travel -
www.killiansbytes.com/post/flashba...