- What is database?
- What is DBMS?
- What is the difference between DBMS and RDBMS?
RDBMS = DBMS + REFERENTIAL INTEGRITY
every person should have an Address. This is a referential integrity between Name and Address. If we break this referential integrity in DBMS and files, it will not complain, but RDBMS will not allow you to save this data if you have defined the relation integrity between person and addresses. These relations are defined by using “Foreign Keys” in any RDBMS.
if the DBMS fulfills the twelve CODD rules, it’s truly a RDBMS. Almost all DBMS (SQL SERVER, ORACLE etc.) fulfill all the twelve CODD rules and are considered truly as RDBMS.
- What is a Database system?
- What are the advantages of DBMS?
- Redundancy is controlled.
- Unauthorised access is restricted.
- Providing multiple user interfaces.
- Enforcing integrity constraints.
- Providing backup and recovery.
- What are the disadvantage in File Processing System
- Data redundancy and inconsistency.
- Difficult in accessing data.
- Data isolation.
- Data integrity.
- Concurrent access is not possible.
- Security Problems.
- Difference between a file and database
File meets the storing, managing and retrieving part of a database, but not the independent way of accessing data.
- Database provides a systematic and organized way of storing, managing and retrieving from a collection of logically related information.
- Secondly, the information has to be persistent, that means even after the application is closed the information should be persisted.
- Finally, it should provide an independent way of accessing data and should not be dependent on the application to access the information.
- What is Relational Algebra?
- What is E-R model?
- What is Data Model?
- What is system catalog or catalog relation?
- Define the "integrity rules"?
There are two Integrity rules.
Entity Integrity: States that "Primary key cannot have NULL value"
Referential Integrity: States that "Foreign Key can be either a NULL value or should be Primary Key value of other relation.
- What is indexing and what are the different kinds of indexing?
Types:
- Binary search style indexing
- B-Tree indexing
- Inverted list indexing
- Memory resident table
- Table indexing
- What is a checkpoint and When does it occur?
- What are the unary operations in Relational Algebra?
- Are the resulting relations of PRODUCT and JOIN operation the same?
PRODUCT: Concatenation of every row in one relation with every row in another.
JOIN: Concatenation of rows from one relation and related rows from another.
- What is Buffer Manager?
- What is Transaction Manager?
- What is File Manager?
It is a program module, which manages the allocation of space on disk storage and data structure used to represent information stored on a disk.
- What is DDL, DML and DCL ?
- Data Definition Language deals with database schemas and descriptions of how the data should reside in the database, therefore language statements like CREATE TABLE or ALTER TABLE belong to DDL.
- DML deals with data manipulation, and therefore includes most common SQL statements such SELECT, INSERT, etc.
- Data Control Language includes commands such as GRANT, and mostly concerns with rights, permissions and other controls of the database system.
http://www.indiabix.com/technical/dbms-basics/7
http://www.techpreparation.com/mysql-interview-questions-answers1.htm
http://www.dotnetfunda.com/interview/exclusive/showcatquestion.aspx?category=38
DBMS Interview Questions With Answers
http://ihelpstudy.com/dbms-interview-questions-with-answers-database-management-system-most-common-interview-question-788.html
DBMS Interview Questions and Answers
http://vacancyhub.com/?p=800
DBMS - Interview Questions and Answers
http://www.indiabix.com/technical/dbms/
No comments:
Post a Comment