-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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... -
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 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 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...
Oracle Basics Interview Questions
Ans