System & User Control Sql Statements

Example : How to Start/open Oracle 10g/11g first time. Example : How to create new user in Oracle 10g/11g. Example : How to change/modify the current logged in user password in Oracle 10g/11g. Example : How to give administrator power …

Loading

DCL Statements

Introduction DCL stands for Data Control Language. DCL statements are crucial for managing database security by controlling who has access to what data and what operations they can perform. Definition DCL statements are a collection of those SQL statements that …

Loading

View in SQL

Introduction of View View is a powerful feature of SQL that can significantly streamline our data management and querying processes. Definition View is a virtual table created using the CREATE VIEW statement from an existing table. Characteristics In SQL, a …

Loading

DML Statements

DML stands for Data Manipulation Language. DML is used to manipulate database data i.e. DML statements are the collection of those SQL commands which are used to store or save or insert, retrieve or search, modify or change or update, and erase …

Loading

DDL Statements

DDL stands for ‘Data definition language’. DDL is subset of SQL and is a part of DBMS. DDL statements are the collection of those SQL commands which are used to create and manipulate the structures of a database/schema i.e. they …

Loading

Classical C++ Program Examples

NB: These programs are compiled by dev C++ 5.11 compiler.       Example : A simple C++ program to display the (static) message. Example : A simple C++ program to display the message in two separate lines. Example : …

Loading

Exception Handling Examples C++

Example : A simple program or Exception Handling Examples in C++ to show Exception Handling using Class and Object. Example : A simple program or Exception Handling Examples in C++ to show Exception Handling using the throw keyword. Example : …

Loading

Polymorphism Examples in C++

Example : A C++ Polymorphism Examples in C++ to show simple Compile Time/Early Binding/Static Polymorphism. Click this link to access the example of C++ Function Overloading. Example : A C++ program to show simple Dynamic/Run Time/Late Binding Polymorphism. Example : A C++ program …

Loading

Operator Overloading Program Examples

Example : A C++ program to add two object’s variables normally (without operator overloading) and store & display them using third object’s variables . Example : A C++ program to show addition of objects as member function with return type …

Loading