I will explain UTL_FILE FOPEN in PL/SQL in this post.
Read More »PL/SQL
DBMS_OUTPUT.PUT_LINE in PL/SQL
I will explain dbms_output.put_line in PL/SQL in this post.
Read More »Alter Session Set NLS_DATE_FORMAT in Oracle with Examples
I will explain Alter Session Set NLS_DATE_FORMAT in Oracle with Examples in this post.
Read More »PL/SQL Conversion/Decoding/NULL-Related Functions
Hi Folks, Conversion functions convert a value from one datatype to another. Generally, the form of the function names follows the convention datatype TO datatype. The NULL-related functions facilitate …
Read More »PL/SQL Datetime Functions
Hi Folks, Datetime functions operate on date (DATE), timestamp (TIMESTAMP, TIMESTAMP WITH TIME ZONE, and TIMESTAMP WITH LOCAL TIME ZONE), and interval (INTERVAL DAY TO SECOND, INTERVAL YEAR TO …
Read More »PL/SQL – Number Functions
Hi Folks, Functions are similar to operators in that they manipulate data items and return a result. Functions differ from operators in the format of their arguments. This format …
Read More »PL/SQL – Character/String Functions
Hi Folks, Functions are similar to operators in that they manipulate data items and return a result. Functions differ from operators in the format of their arguments. This format …
Read More »PL/SQL for real world – 8 features that you have to know
Hi folks, In this post, I’m going to discuss 8 features that you must know to work with PL/SQL. These are structures that I have been using most in …
Read More »PL/SQL For Practitioners – #8 Type object and Table of Type
Hi folks, Object-oriented programming is especially suited for building reusable components and complex applications. In PL/SQL, object-oriented programming is based on object types. They let you model real-world objects, …
Read More »PL/SQL For Practitioners – #7 Packages
Hi folks, A package is a schema object that groups logically related PL/SQL types, variables, constants, subprograms, cursors, and exceptions. A package always has a specification, which declares the public items that …
Read More »