Yasser Oracle Blog Dive in Oracle with Yasser, Oracle Developer Courses
Pages
(Move to ...)
Home
SQL Fundamentals
SQL Fundamentals II
SQL PLUS
PL/SQL
Forms and Reports
HTML5
JavaScript
PHP
jQuery
Java
NLS_LANG
SQL SERVER
PL/SQL Collections and Records
DBMS_OUTPUT built-in package
Date and Time
PL/SQL Transactions
Ref Cursors
Bulk Binds
PL/SQL Analytic Functions
Problems and solves
Oracle Indexes
Oracle Courses
PHP
Work Samples
Record & Collection
LOOP
Conditional statements
Triggers
Object Oriented
Contact Me
▼
Monday, October 12, 2015
Oracle How to unwrap PL/SQL
›
Dear readers my reference in this post from Pete Finnigan book How to unwrap PL/SQL How to ...
connect_by_isleaf
›
Oracle10g connect_by_isleaf The pseudo-column, connect_by_isleaf, returns 1 if the current row is a leaf (child and it is not father)...
connect_by_iscycle
›
The purpose of the connect_by_iscycle pseudo-column is to return 1 if the current row has a child which is also its ancestor. If there is ...
Oracle Tree connect_by_root
›
connect_by_root connect_by_root is only valid in hierarchical queries. When a column is qualified with this operator, Oracle return...
Sunday, October 11, 2015
how to know the Oracle database version
›
you can use SELECT * FROM V$VERSION or SELECT version FROM V$INSTANCE or BEGIN DBMS_OUTPUT.PUT_LINE(DBMS_DB_VERSION.VERSION || ...
Hierarchical Queries
›
Hierarchical Queries If a table contains hierarchical data, then you can select rows in a hierarchical order using the hierarchical ...
Oracle Tree example
›
-- Hierarchical Tree Example -- The first action will typically be to populate the -- hierarchical tree (htree) with data. DEC...
‹
›
Home
View web version