আমার পঠিত ব্লগ সমুহ

শুক্রবার, ১০ নভেম্বর, ২০১৭

Commonly asked DBMS interview questions

Commonly asked DBMS interview questions | Set 1


What are advantages of DBMS over traditional file based systems?
Ans: Database management systems were developed to handle the following difficulties of typical file-processing systems supported by conventional operating systems.
1. Data redundancy and inconsistency
2. Difficulty in accessing data
3. Data isolation – multiple files and formats
4. Integrity problems
5. Atomicity of updates
6. Concurrent access by multiple users
7. Security problems

What are super, primary, candidate and foreign keys?
Ans: superkey is a set of attributes of a relation schema upon which all attributes of the schema are functionally dependent. No two rows can have the same value of super key attributes.
Candidate key is minimal superkey, i.e., no proper subset of Candidate key attributes can be a superkey.
Primary Key is one of the candidate keys. One of the candidate keys is selected as most important and becomes the primary key. There cannot be more that one primary keys in a table.
Foreign key is a field (or collection of fields) in one table that uniquely identifies a row of another table. See this for an example.


What is the difference between primary key and unique constraints?
Ans: Primary key cannot have NULL value, the unique constraints can have NULL values. There is only one primary key in a table, but there can be multiple unique constrains.


What is database normalization?
Ans: It is a process of analyzing the given relation schemas based on their functional dependencies and primary keys to achieve the following desirable properties:
1) Minimizing Redundancy
2) Minimizing the Insertion, Deletion, And Update Anomalies
Relation schemas that do not meet the properties are decomposed into smaller relation schemas that could meet desirable properties.

What is SQL?
SQL is Structured Query Language designed for inserting and modifying in a relational database system.


What are the differences between DDL, DML and DCL in SQL?
Ans:
 Following are some details of three.
DDL stands for Data Definition Language. SQL queries like CREATE, ALTER, DROP and RENAME come under this.
DML stands for Data Manipulation Language. SQL queries like SELECT, INSERT and UPDATE come under this.
DCL stands for Data Control Language. SQL queries like GRANT and REVOKE come under this.


What is the difference between having and where clause?
Ans: HAVING is used to specify a condition for a group or an aggregate function used in select statement. The WHERE clause selects before grouping. The HAVING clause selects rows after grouping. Unlike HAVING clause, the WHERE clause cannot contain aggregate functions. (See this for examples).
See Having vs Where Clause? for more details
How to print duplicate rows in a table?

How to print duplicate rows in a table?

Let us consider below table.
NAMESECTION
abcCS1
bcdCS2
abcCS1
In the above table, we can find duplicate row using below query.
SELECT name, section FROM tbl
GROUP BY name, section
HAVING COUNT(*) > 1
Another Example: 
Given a table named PERSON task is to write an SQL query to find all duplicate name in the table.
Example :
+----+---------+
| Id | NAME    |
+----+---------+
| 1  | Geeks   |
| 2  | for     |
| 3  | Geeks   |
+----+---------+

Output :
+---------+
| NAME    |
+---------+
| Geeks   |
+---------+
The simple approach is to make a temporary table which have count of all the names in a table.
Duplicated NAME existed more than one time, so to count the times each NAME exists, we can use the following code:
select NAME, count(NAME) as num
from Person
group by NAME;
| NAME    | num |
|---------|-----|
| Geeks   | 2   |
| for     | 1   |
This is a temporary table, on which we can run the below code to get duplicate NAME.
select NAME from
(
  select NAME, count(NAME) as num
  from Person
  group by NAME
) as statistic
where num > 1;
The Best approach is to use GROUP BY and HAVING condition. It is more effective and faster then previous.
MySql :
select NAME
from Person
group by NAME
having count(NAME) > 1;
What is Join? 
Ans: An SQL Join is used to combine data from two or more tables, based on a common field between them. For example, consider the following two tables.
Student Table
ENROLLNOSTUDENTNAMEADDRESS
1000geek1geeksquiz1
1001geek2geeksquiz2
1002geek3geeksquiz3
StudentCourse Table
COURSEIDENROLLNO
11000
21000
31000
11002
21003
Following is join query that shows names of students enrolled in different courseIDs.
SELECT StudentCourse.CourseID, Student.StudentName
       FROM StudentCourse
       INNER JOIN Customers 
       ON StudentCourse.EnrollNo = Student.EnrollNo
       ORDER BY StudentCourse.CourseID;
The above query would produce following result.
COURSEIDSTUDENTNAME
1geek1
1geek2
2geek1
2geek3
3geek1


What is Identity?
Ans: Identity (or AutoNumber) is a column that automatically generates numeric values. A start and increment value can be set, but most DBA leave these at 1. A GUID column also generates numbers; the value of this cannot be controlled. Identity/GUID columns do not need to be indexed.


What is a view in SQL? How to create one
Ans: A view is a virtual table based on the result-set of an SQL statement. We can create using create view syntax.
CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_name
WHERE condition


What are the uses of view?
1. Views can represent a subset of the data contained in a table; consequently, a view can limit the degree of exposure of the underlying tables to the outer world: a given user may have permission to query the view, while denied access to the rest of the base table.
2. Views can join and simplify multiple tables into a single virtual table
3. Views can act as aggregated tables, where the database engine aggregates data (sum, average etc.) and presents the calculated results as part of the data
4. Views can hide the complexity of data; for example a view could appear as Sales2000 or Sales2001, transparently partitioning the actual underlying table
5. Views take very little space to store; the database contains only the definition of a view, not a copy of all the data which it presentsv.
6. Depending on the SQL engine used, views can provide extra security
Source: Wiki Page


What is a Trigger?
Ans: Trigger is a code that associated with insert, update or delete operations. The code is executed automatically whenever the associated query is executed on a table. Triggers can be useful to maintain integrity in database.


What is a stored procedure?
Ans: A stored procedure is like a function that contains a set of operations compiled together. It contains a set of operations that are commonly used in an application to do some common database tasks.


What is the difference between Trigger and Stored Procedure?
Ans: Unlike Stored Procedures, Triggers cannot be called directly. They can only be associated with queries.


What is a transaction? What are ACID properties?
Ans: A Database Transaction is a set of database operations that must be treated as whole, means either all operations are executed or none of them.
An example can be bank transaction from one account to another account. Either both debit and credit operations must be executed or none of them.
ACID (Atomicity, Consistency, Isolation, Durability) is a set of properties that guarantee that database transactions are processed reliably.


What are indexes? 
Ans: A database index is a data structure that improves the speed of data retrieval operations on a database table at the cost of additional writes and the use of more storage space to maintain the extra copy of data.
Data can be stored only in one order on disk. To support faster access according to different values, faster search like binary search for different values is desired, For this purpose, indexes are created on tables. These indexes need extra space on disk, but they allow faster search according to different frequently searched values.


What are clustered and non-clustered Indexes?
Ans: Clustered indexes is the index according to which data is physically stored on disk. Therefore, only one clustered index can be created on a given database table.
Non-clustered indexes don’t define physical ordering of data, but logical ordering. Typically, a tree is created whose leaf point to disk records. B-Tree or B+ tree are used for this purpose.

Commonly asked DBMS interview questions | Set 2


Q. There is a table where only one row is fully repeated. Write a Query to find the Repeated row
NameSection
abcCS1
bcdCS2
abcCS1
In the above table, we can find duplicate row using below query.
SELECT name, section FROM tbl
GROUP BY name, section
HAVING COUNT(*) > 1
Q. Query to find 2nd highest salary of an employee?
SELECT max(salary) FROM EMPLOYEES WHERE salary IN
(SELECT salary FROM EMPLOYEEs MINUS SELECT max(salary)
FROM EMPLOYEES);
OR
SELECT max(salary) FROM EMPLOYEES WHERE 
salary <> (SELECT max(salary) FROM EMPLOYEES);
Q.Consider the following Employee table. How many rows are there in the result of following query?
ID   salary   DeptName
1    10000      EC
2    40000      EC
3    30000      CS
4    40000      ME
5    50000      ME
6    60000      ME
7    70000      CS
How many rows are there in the result of following query?
SELECT E.ID
FROM  Employee E
WHERE  EXISTS  (SELECT E2.salary
FROM Employee E2
WHERE E2.DeptName = 'CS'
AND   E.salary > E2.salary)
Following 5 rows will be result of query as 3000 is the minimum salary of CS Employees and all these rows are greater than 30000.
2
4
5
6
7
Q. Write a trigger to update Emp table such that, If an updation is done in Dep table then salary of all employees of that department should be incremented by some amount (updation)
Assuming Table name are Dept and Emp, trigger can be written as –
CREATE OR REPLACE TRIGGER update_trig
AFTER UPDATE ON Dept
FOR EACH ROW
DECLARE
CURSOR emp_cur IS SELECT * FROM Emp;
BEGIN
FOR i IN emp_cur LOOP
IF i.dept_no = :NEW.dept_no THEN
DBMS_OUTPUT.PUT_LINE(i.emp_no);  --  for printing those
UPDATE Emp                      -- emp number which are
SET sal = i.sal + 100           -- updated
WHERE emp_no = i.emp_no;
END IF;
END LOOP;
END;
Q. There is a table which contains two column Student and Marks, you need to find all the students, whose marks are greater than average marks i.e. list of above average students.
SELECT student, marks 
FROM table
WHERE marks > SELECT AVG(marks) from table;
Q.Name the student who has secured third highest marks using sub queries.
SELECT Emp1.Name
FROM Employee Emp1
WHERE 2 = (SELECT COUNT(DISTINCT(Emp2.Salary))
           FROM Employee Emp2
           WHERE Emp2.Salary > Emp1.Salary
          )
*LOGIC- Number of people with salary higher than this person will be 2.
Q. Why we cannot use WHERE clause with aggregate functions like HAVING ?
The difference between the having and where clause in SQL is that the where clause canNOT be used with aggregates, but the having clause can. Please note : It is not a predefined rule but by and large you’ll see that in a good number of the SQL queries, we use WHERE prior to GROUP BY and HAVING after GROUP BY.
The Where clause acts as a pre filter where as Having as a post filter.
The where clause works on row’s data, not on aggregated data.
Let us consider below table ‘Marks’.
Student       Course      Score
a                c1             40
a                c2             50
b                c3             60
d                c1             70
e                c2             80
Consider the query
SELECT Student, sum(Score) AS total 
FROM Marks
This would select data row by row basis. The having clause works on aggregated data.
For example,  output of below query
SELECT Student, sum(score) AS total FROM Marks
Student     Total
a             90
b             60
d             70
e             80
When we apply having in above query, we get
SELECT Student, sum(score) AS total
FROM Marks having total > 70
Student     Total
a             90
e 80
Q. Difference between primary key and unique key and why one should use unique key if it allows only one null ?
Primary key:
  • Only one in a row(tuple).
  • Never allows null value(only key field).
  • Unique key identifier and can not be null and must be unique.
Unique Key:
  • Can be more than one unique key in one row.
  • Unique key can have null values(only single null is allowed).
  • It can be a candidate key.
  • Unique key can be null and may not be unique.
Q. What’s the difference between materialized and dynamic view?
Materialized views
  • Disk based and are updated periodically based upon the query definition.
  • A materialized table is created or updated infrequently and it must be synchronized with its associated base tables.
Dynamic views
  • Virtual only and run the query definition each time they are accessed.
  • A dynamic view may be created every time that a specific view is requested by the user.
Q. What is embedded and dynamic SQL? 
Static or Embedded SQL
  • SQL statements in an application that do not change at runtime and, therefore, can be hard-coded into the application.
Dynamic SQL
  • SQL statements that are constructed at runtime; for example, the application may allow users to enter their own queries.
  • Dynamic SQL is a programming technique that enables you to buildSQL statements dynamically at runtime. You can create more general purpose, flexible applications by using dynamic SQL because the full text of a SQL statement may be unknown at compilation.
S.No.Static (embedded) SQLDynamic (interactive) SQL
1.In static SQL how database will be accessed is predetermined in the embedded SQL statement.In dynamic SQL, how database will be accessed is determined at run time.
2.It is more swift and efficient.It is less swift and efficient.
3.SQL statements are compiled at compile time.SQL statements are compiled at run time.
4.Parsing, validation, optimization, and generation of application plan are done at compile time.Parsing, validation, optimization, and generation of application plan are done at run time.
5.It is generally used for situations where data is distributed uniformly.It is generally used for situations where data is distributed non-uniformly.
6.EXECUTE IMMEDIATE, EXECUTE and PREPARE statements are not used.EXECUTE IMMEDIATE, EXECUTE and PREPARE statements are used.
7.It is less flexible.It is more flexible.
http://docs.oracle.com/cd/A87860_01/doc/appdev.817/a76939/adg09dyn.htm
Q. What is the difference between CHAR and VARCHAR?
  • CHAR and VARCHAR are differ in storage and retrieval.
  • CHAR column length is fixed while VARCHAR length is variable.
  • The maximum no. of character CHAR data type can hold is 255 character while VARCHAR can hold up to 4000 character.
  • CHAR is 50% faster than VARCHAR.
  • CHAR uses static memory allocation while VARCHAR uses dynamic memory allocation.

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন