-
-
-
How to declare a variable with FLOAT (2 DECIMAL PLACES) in table creation in oracle?
How to declare a variable with FLOAT (2 DECIMAL PLACES) in table creation in oracle?
-
What are the differences between Database Trigger and Integrity constraints ?
A declarative integrity constraint is a statement about the database that is always true. A constraint applies to existing data in the table and any statement that manipulates the table. A trigger does not apply to data loaded before the definition of the trigger, therefore, it does not guarantee all data in a table conforms to the rules established...
-
What is difference between Procedures and Functions ?
A Function returns a value to the caller where as a Procedure does not.
-
-
What are the advantages of having a Package ?
Increased functionality (for example,global package variables can be declared and used by any proecdure in the package) and performance (for example all objects of the package are parsed compiled, and loaded into memory once)
-
What is a Procedure ?
A Procedure consist of a set of SQL and PL/SQL statements that are grouped together as a unit to solve a specific problem or perform a set of related tasks.
-
Ans