-
What is codd’s rules?
E.codd designed 12 rules that stated rules for database to be relational. These rules were named as codd’s rules. The rules are given below: 1. The Information Rule: For a database to be relational all information is represented as data values in tables. 2. The Rule of Guaranteed Access: The data represented in table by using table name, column name and primary key value defined for that table....
-
What is DECODE function used for?
DECODE is used to decode a CHAR or VARCHAR2 or NUMBER into any of several different character strings or numbers based on value. That is DECODE does a value-by-value substitution. For every value that is given in the DECODE function it makes an if then check and matches the value. The general format of DECODE function is given below:
DECODE(value,if1,then1,if2,then2,……,else)... -
Why is performance tuning a vital aspect in Oracle?
Tuning is one of the main function or job of a database administrator or DBA in short. This is because oracle is a relational database management system which is tunable and thus the database can be monitored and therefore appropriate measures and steps can be taken at appropriate times to increase the performance of the system. There are many reasons for performing the performance tuning in oracle....
-
What is the use of COUNT with DISTINCT option?
COUNT is a group function. That is which gives a result by summarizing multiple rows. All group value function will have the usage of DISTINCT or ALL option and so is the COUNT which uses the DISTINCT option. DISTINCT option is used to enforce uniqueness and this combined with COUNT is used to count only unique mentioned value.
To understand this let us see an example. Consider a table exforsys... -
What is a junction table and how is it used in Microsoft Access?
A junction record is one which allows many to many relationship between the two owner records. One of the scenario in which junction table plays a role in Microsoft Access is while creating or defining many to many relationship. Many to Many relationships between two entities are one in which one row or record of a table can relate to many records in other table and also vice-versa for the other table....
-
What is SQL injection?
SQL injection is one of the security abuse in which the person makes use of SQL in other words Structured Query Language in a web form in order to have access to data and thereby make changes to the data. That is on a web application the user has to be validated with username and password and only if it matches they must gain access to the database. This is the main security action that has to be followed...
-
How does the evolution of database systems happened?">
How does the evolution of database systems happened?
The evolution of database systems is as follows
File Management System
Hierarchical database System
Network Database System
Relational Database System
File Management System:
The file management system also called as FMS in short is one in which all data is stored on a single large file. The main disadvantage in this system... -
What is meant by Group Functions in SQL?">
What is meant by Group Functions in SQL?
There are functions which return a value for each single row selected. Example of such functions are Arithmetic functions like ABS(column name) in SQL. But in contrast group functions are one in which summary or result of the group of rows is got. For example in an entity DEPARTMENT there may be instance in which the programmer may like to get the average salary of a particular department say d1. This...
-
What is Partitioning concept and to how to achieve this using MYSQL? ">
What is Partitioning concept and to how to achieve this using MYSQL?
One of the important concepts in database management is Partitioning. Partitioning is the concept by which storage of tables are pre-organized to attain efficiency. That is in other words the rows present in a table are stored across different disks or fields to achieve optimization and performance improvement.
How to achieve this concept in MYSQL
Database statements... -
What is the difference between Rollback, Commit and Savepoint is SQL?">
What is the difference between Rollback, Commit and Savepoint is SQL?
All these statements fall in the category of Transaction Control Statements.
Rollback:
This is used for undoing the work done in the current transaction. This command also releases the locks if any hold by the current transaction. The command used in SQL for this is simply:
ROLLBACK;
Savepoint:
This is used for identifying a point in the transaction... -
What are the components of a client/server computing? ">
What are the components of a client/server computing?
The Client/Server computing has three components in it namely:
Client
Server
Network
Let us see the functions of each.
Server:
This is one that manages data or information in database. It also takes the role of coordination or assigning process when multiple clients functions which is very common in client/server computing... -
-
-
-
-
-
-
-
-
Oracle Basics Interview Questions
Ans