+91 88606 33966            edu_sales@siriam.in                   Job Opening : On-site Functional Trainer/Instructor | Supply Chain Management (SCM)
Author : Amita Sharma

STATIC AND NATIVE DYNAMIC SQL IN ORACLE DATABASE

In May 1994, Oracle introduced the Dynamic SQL concept in its Database version 7.1. With this it enabled developers to write the dynamic SQL through “DBMS_SQL” package. But, because of its “Not So Easy” syntaxes, the “Sluggish Performance” and “Unsupported User-Defined Types”, the DBMS_SQL library was not very successful. All these shortcomings raised the need […]

OLTP VS OLAP

OLTP (Online Transaction Processing) and OLAP (Online Analytical Processing) are two types of systems that handle different aspects of data processing within an organization. Here are the key differences between OLTP and OLAP: In summary, OLTP systems are optimized for transactional processing in operational environments, while OLAP systems are designed for analytical processing to support […]

ROLE OF DATABASE ADMINISTRATOR

What is the role of Database Administrator? Database Administrators (DBAs) play a critical role in managing and maintaining databases, ensuring the smooth operation of systems that store and retrieve data. The key responsibilities are:- Database Administrators are responsible for the design, implementation, security, and performance of databases. Their role is crucial in ensuring that data […]

PL/SQL PACKAGES

What are PL/SQL Packages? Benefits Of Using Packages Modularity A huge application can be built by simply developing modules (or subprograms) that are well-defined and simple to use. REUSABILITYA PL package is compiled and stored in the database whenever it is produced. As a result, you only have to develop the code once, and other […]

PL/SQL FUNCTIONS

What is a Function in PL/SQL? Syntax of PL/SQL function FUNCTION function_name (parameter1 [IN | OUT | IN OUT] datatype, parameter2 [IN | OUT | IN OUT] datatype, …)    RETURN return_datatype IS    — Declaration section (optional)    variable1 datatype;    variable2 datatype;    … BEGIN    — Function body    — SQL and […]

Oracle Database-PL/SQL Stored Procedures

PL/SQL Procedures Types of PL/SQL Procedures PL/SQL Procedure ranges from standalone routines to PL SQL packages and functions. The common types are:- Stored Procedures Stored Procedures are a powerful feature in database management systems that allow you to encapsulate a set of SQL and/or PL/SQL statements into a single, reusable unit. Anonymous BlocksThese are unnamed […]

Scroll to top