SQL Server Database Interview Questions
SQL Server Database Interview Questions
1. What is a major difference between SQL Server 6.5 and 7.0 platform wise? SQL Server 6.5
runs only on Windows NT Server. SQL Server 7.0 runs on Windows NT Server, workstation and Windows
95/98.
1. Check if MS SQL Server service is running on the computer you are trying to log into
2. Check on Client Configuration utility. Client and Server have to in sync.
7. What is new philosophy for database devises for SQL Server 7.0? There are no devises anymore
in SQL Server 7.0. It is file system now.
8. When you create a database how is it stored? It is stored in two separate files: one file contains
the data, system tables, other database objects, the other file stores the transaction log.
9. Let’s assume you have data that resides on SQL Server 6.5. You have to move it SQL Server
7.0. How are you going to do it? You have to use transfer command.
10. Do you know how to configure DB2 side of the application? Set up an application ID, create
RACF group with tables attached to this group, attach the ID to this RACF group.
11. What kind of LAN types do you know? Ethernet networks and token ring networks.
12. What is the difference between them? With Ethernet, any devices on the network can send data in
a packet to any location on the network at any time. With Token Ring, data is transmitted in ‘tokens’
from computer to computer in a ring or star configuration. Token ring speed is 4/16 Mbit/sec , Ethernet
- 10/100 Mbit/sec.
13. What protocol both networks use? TCP/IP. Transmission Control Protocol, Internet Protocol.
14. How many bits IP Address consist of?An IP Address is a 32-bit number.
15. How many layers of TCP/IP protocol combined of? Five. (Application, Transport, Internet, Data
link, Physical).
16. How do you define testing of network layers? Reviewing with your developers to identify the
layers of the Network layered architecture, your Web client and Web server application interact with.
Determine the hardware and software configuration dependencies for the application under test.
17. How do you test proper TCP/IP configuration Windows machine? Windows NT: IPCONFIG/ALL,
Windows 95: WINIPCFG, Ping or ping ip.add.re.ss
Expected answer:
A Cartesian product is the result of an unrestricted join of two or more tables. The result set of a three table
Cartesian product will have x * y * z number of rows where x, y, z correspond to the number of rows in each
table involved in the join. It is causes by specifying a table in the FROM clause without joining it to another
table.
2. What is an advantage to using a stored procedure as opposed to passing an SQL query from an
application.
Expected answer:
A stored procedure is pre-loaded in memory for faster execution. It allows the DBMS control of permissions for
security purposes. It also eliminates the need to recompile components when minor changes occur to the
database.
Expected answer:
A LEFT JOIN will take ALL values from the first declared table and matching values from the second declared
table based on the column the join has been declared on. An INNER JOIN will take only matching values from
both tables
4. When a query is sent to the database and an index is not being used, what type of execution is
taking place?
Expected answer:
A table scan.
Expected answer:
A trigger is one or more statements of SQL that are being executed in event of data modification in a table to
which the trigger belongs.
6. What are the pros and cons of using stored procedures. When would you use them?
7. What are the pros and cons of using cursors? When would you use them?
Q: How would you make the following SQL statement run faster? SELECT * FROM TABLEA WHERE
COL1=’A’ AND COL2=’B';
A: Make sure that COL1 and COL2 have indexes.
Find out which condition will return less value and use that as the first conditional.
Q: What is one way to view a unix network share on a Windows computer, within explorer
A: NFS, The Unix computer can be running a NFS Server Daemon.
Q: How would you find all the processes running on your computer?
A: UNIX is ps -ef or ps -aux depending on version.
Q: What is DHCP
A: DHCP is a way to dynamically assign IP address to computers. Dynamic Host Configuration Protocol
Q: Scenario: You have 9 identical looking balls; however one ball is heavier than the others. You
have two chances to use a balance. How do you find out which ball is the heaviest?
A: Split into groups of three, randomly choose two groups and use balance on them. If one group is heavier,
then discard the other 6 balls. If the two groups are the same weight. The heavier ball must be in the group
that was not on the scale. Now randomly choose two balls and test on balance. If they are the same weight,
the heaviest ball is on one that was not tested. Else the heaviest ball is already known from the balance.
Comments
1. i don’t see why these questions are for database programming… it seems more like they are for
administration.
ppl who can answer the above questions how do u know they can write stored procedure, triggers,
database design, use cursor, grant premission, etc… ?
2. Hi Friends,
This is Sachin Rastogi. As there is no questions for SQL, PL/SQL on this site, I would like to provide you
the same. Just shake your head in solving these questions. If you can’t then don’t worry you can mail
me at rsachin@krify.com for the answers of these questions.
A. Place the alias at the beginning of the statement to describe the table.
B. Place the alias after each column, separated by white space, to describe the column.
C. Place the alias after each column, separated by a comma, to describe the column.
D. Place the alias at the end of the statement to describe the table.
PLAY_TABLE
————————————-
“Midsummer Night’s Dream”, SHAKESPEARE
“Waiting For Godot”, BECKETT
“The Glass Menagerie”, WILLIAMS
A. The emacs editor will become the SQL*Plus default text editor.
B. The emacs editor will start running immediately.
C. The emacs editor will no longer be used by SQL*Plus as the default text editor.
D. The emacs editor will be deleted from the system.
6. The user issues the following statement. What will be displayed if the EMPID selected is 60494?
A. 60494
B. LOA
C. Terminated
D. ACTIVE
A. TRUE
B. FALSE
8. The appropriate table to use when performing arithmetic calculations on values defined within the
SELECT statement (not pulled from a table column) is
A. EMP
B. The table containing the column values
C. DUAL
D. An Oracle-defined table
A. avg( )
B. sqrt( )
C. sum( )
D. max( )
11. The default character for specifying runtime variables in SELECT statements is
A. Ampersand
B. Ellipses
C. Quotation marks
D. Asterisk
12. A user is setting up a join operation between tables EMP and DEPT. There are some employees in
the EMP table that the user wants returned by the query, but the employees are not assigned to
departments yet. Which SELECT statement is most appropriate for this user?
13. Developer ANJU executes the following statement: CREATE TABLE animals AS SELECT * from
MASTER.ANIMALS; What is the effect of this statement?
A. A table named ANIMALS will be created in the MASTER schema with the same data as the ANIMALS
table owned by ANJU.
B. A table named ANJU will be created in the ANIMALS schema with the same data as the ANIMALS
table owned by MASTER.
C. A table named ANIMALS will be created in the ANJU schema with the same data as the ANIMALS
table owned by MASTER.
D. A table named MASTER will be created in the ANIMALS schema with the same data as the ANJU
table owned by ANIMALS.
14. User JANKO would like to insert a row into the EMPLOYEE table, which has three columns: EMPID,
LASTNAME, and SALARY. The user would like to enter data for EMPID 59694, LASTNAME Harris, but no
salary. Which statement would work best?
15. Which three of the following are valid database datatypes in Oracle? (Choose three.)
A. CHAR
B. VARCHAR2
C. BOOLEAN
D. NUMBER
16. Omitting the WHERE clause from a DELETE statement has which of the following effects?
A. The delete statement will fail because there are no records to delete.
B. The delete statement will prompt the user to enter criteria for the deletion
C. The delete statement will fail because of syntax error.
D. The delete statement will remove all records from the table.
17. Creating a foreign-key constraint between columns of two tables defined with two different
datatypes will produce an error.
A. TRUE
B. FALSE
18. Dropping a table has which of the following effects on a nonunique index created for the table?
A. No effect.
B. The index will be dropped.
C. The index will be rendered invalid.
D. The index will contain NULL values.
A. TRUE
B. FALSE
22. Which of the following lines in the SELECT statement below contain an error?
23. Which function below can best be categorized as similar in function to an IF-THEN-ELSE statement?
A. SQRT
B. DECODE
C. NEW_TIME
D. ROWIDTOCHAR
24. Which two of the following orders are used in ORDER BY clauses? (choose two)
A. ABS
B. ASC
C. DESC
D. DISC
SELECT name
FROM employee
WHERE name LIKE ‘_a%’;
A. Implicit cursors are used for SQL statements that are not named.
B. Developers should use implicit cursors with great care.
C. Implicit cursors are used in cursor for loops to handle data processing.
D. Implicit cursors are no longer a feature in Oracle.
28. A developer would like to use referential datatype declaration on a variable. The variable name is
EMPLOYEE_LASTNAME, and the corresponding table and column is EMPLOYEE, and LNAME, respectively.
How would the developer define this variable using referential data types?
A. Use employee.lname%type.
B. Use employee.lname%rowtype.
C. Look up datatype for EMPLOYEE column on LASTNAME table and use that.
D. Declare it to be type LONG.
29. Which three of the following are implicit cursors attributes?
A. %found
B. %too_many_rows
C. %not found
D. %row count
E. %row type
30. If left out, which of the following would cause an infinite loop to occur in a simple loop?
A. LOOP
B. END LOOP
C. IF-THEN
D. EXIT
A. open
B. fetches
C. parse
D. None, cursor for loops handle cursor opening implicitly.
33. What happens when rows are found using a FETCH statement
A. IN
B. OUT
C. RETURN
D. IN OUT
The trigger code should only execute when the column, COST_PER_TICKET, is greater than $3.75.
Which trigger information will you add?
36. What is the maximum number of handlers processed before the PL/SQL block is exited when an
exception occurs?
A. Only one
B. All that apply
C. All referenced
D. None
37. For which trigger timing can you reference the NEW and OLD qualifiers?
v_yearly_budget NUMBER;
BEGIN
SELECT yearly_budget
INTO v_yearly_budget
FROM studio
WHERE id = v_studio_id;
RETURN v_yearly_budget;
END;
Which set of statements will successfully invoke this function within SQL*Plus?
39.
CREATE OR REPLACE PROCEDURE update_theater
(v_name IN VARCHAR2, v_theater_id IN NUMBER) IS
BEGIN
UPDATE theater
SET name = v_name
WHERE id = v_theater_id;
END update_theater;
A. An user defined exception must be declared and associated with the error code and handled in the
EXCEPTION section.
B. Handle the error in EXCEPTION section by referencing the error code directly.
C. Handle the error in the EXCEPTION section by referencing the UNIQUE_ERROR predefined exception.
D. Check for success by checking the value of SQL%FOUND immediately after the UPDATE statement.
40.
CREATE OR REPLACE PROCEDURE calculate_budget IS
v_budget studio.yearly_budget%TYPE;
BEGIN
v_budget := get_budget(11);
IF v_budget
3. Hello friends. Sachin again. Many of you mailed asking to send the answers of above questions. So here
they are:
SQL
—
Ans: D
Ans: B
Ans: C
4. Output from a table called PLAYS with two columns, PLAY_NAME and AUTHOR, is shown below.
Which of the following SQL statements produced it?
PLAY_TABLE
————————————-
“Midsummer Night’s Dream”, SHAKESPEARE
“Waiting For Godot”, BECKETT
“The Glass Menagerie”, WILLIAMS
Ans: D
A. The emacs editor will become the SQL*Plus default text editor.
B. The emacs editor will start running immediately.
C. The emacs editor will no longer be used by SQL*Plus as the default text editor.
D. The emacs editor will be deleted from the system.
Ans: A
6. The user issues the following statement. What will be displayed if the EMPID selected is 60494?
A. 60494
B. LOA
C. Terminated
D. ACTIVE
Ans: B
A. TRUE
B. FALSE
Ans: B
8. The appropriate table to use when performing arithmetic calculations on values defined within the
SELECT statement (not pulled from a table column) is
A. EMP
B. The table containing the column values
C. DUAL
D. An Oracle-defined table
Ans: C
A. avg( )
B. sqrt( )
C. sum( )
D. max( )
Ans: B
Ans: D
11. The default character for specifying runtime variables in SELECT statements is
A. Ampersand
B. Ellipses
C. Quotation marks
D. Asterisk
Ans: A
12. A user is setting up a join operation between tables EMP and DEPT. There are some employees in
the EMP table that the user wants returned by the query, but the employees are not assigned to
departments yet. Which SELECT statement is most appropriate for this user?
Ans: D
13. Developer ANJU executes the following statement: CREATE TABLE animals AS SELECT * from
MASTER.ANIMALS; What is the effect of this statement?
A. A table named ANIMALS will be created in the MASTER schema with the same data as the ANIMALS
table owned by ANJU.
B. A table named ANJU will be created in the ANIMALS schema with the same data as the ANIMALS
table owned by MASTER.
C. A table named ANIMALS will be created in the ANJU schema with the same data as the ANIMALS
table owned by MASTER.
D. A table named MASTER will be created in the ANIMALS schema with the same data as the ANJU
table owned by ANIMALS.
Ans: C
14. User JANKO would like to insert a row into the EMPLOYEE table, which has three columns: EMPID,
LASTNAME, and SALARY. The user would like to enter data for EMPID 59694, LASTNAME Harris, but no
salary. Which statement would work best?
Ans: A
15. Which three of the following are valid database datatypes in Oracle? (Choose three.)
A. CHAR
B. VARCHAR2
C. BOOLEAN
D. NUMBER
Ans: A,B,D
16. Omitting the WHERE clause from a DELETE statement has which of the following effects?
A. The delete statement will fail because there are no records to delete.
B. The delete statement will prompt the user to enter criteria for the deletion
C. The delete statement will fail because of syntax error.
D. The delete statement will remove all records from the table.
Ans: D
17. Creating a foreign-key constraint between columns of two tables defined with two different
datatypes will produce an error.
A. TRUE
B. FALSE
Ans: A
18. Dropping a table has which of the following effects on a nonunique index created for the table?
A. No effect.
B. The index will be dropped.
C. The index will be rendered invalid.
D. The index will contain NULL values.
Ans: B
Ans: A
Ans: C
A. TRUE
B. FALSE
Ans: A
22. Which of the following lines in the SELECT statement below contain an error?
Ans: F
23. Which function below can best be categorized as similar in function to an IF-THEN-ELSE statement?
A. SQRT
B. DECODE
C. NEW_TIME
D. ROWIDTOCHAR
Ans: B
24. Which two of the following orders are used in ORDER BY clauses? (choose two)
A. ABS
B. ASC
C. DESC
D. DISC
Ans: B,C
SELECT name
FROM employee
WHERE name LIKE ‘_a%’;
Ans: C
PL/SQL
——
26. Which of the following statements is true about implicit cursors?
A. Implicit cursors are used for SQL statements that are not named.
B. Developers should use implicit cursors with great care.
C. Implicit cursors are used in cursor for loops to handle data processing.
D. Implicit cursors are no longer a feature in Oracle.
Ans: B
Ans: D
28. A developer would like to use referential datatype declaration on a variable. The variable name is
EMPLOYEE_LASTNAME, and the corresponding table and column is EMPLOYEE, and LNAME, respectively.
How would the developer define this variable using referential datatypes?
A. Use employee.lname%type.
B. Use employee.lname%rowtype.
C. Look up datatype for EMPLOYEE column on LASTNAME table and use that.
D. Declare it to be type LONG.
Ans: A
A. %found
B. %too_many_rows
C. %notfound
D. %rowcount
E. %rowtype
Ans: A,C,D
30. If left out, which of the following would cause an infinite loop to occur in a simple loop?
A. LOOP
B. END LOOP
C. IF-THEN
D. EXIT
Ans: D
A. cursor action_cursor is
B. select name, rate, action
C. into action_record
D. from action_table;
E. There are no errors in this statement.
Ans: C
32. The command used to open a CURSOR FOR loop is
A. open
B. fetch
C. parse
D. None, cursor for loops handle cursor opening implicitly.
Ans: D
33. What happens when rows are found using a FETCH statement
Ans: C
A. IN
B. OUT
C. RETURN
D. IN OUT
Ans: D
The trigger code should only execute when the column, COST_PER_TICKET, is greater than $3.75.
Which trigger information will you add?
Ans: B
36. What is the maximum number of handlers processed before the PL/SQL block is exited when an
exception occurs?
A. Only one
B. All that apply
C. All referenced
D. None
Ans: A
37. For which trigger timing can you reference the NEW and OLD qualifiers?
Ans: C
38.
CREATE OR REPLACE FUNCTION get_budget(v_studio_id IN NUMBER)
RETURN number IS
v_yearly_budget NUMBER;
BEGIN
SELECT yearly_budget
INTO v_yearly_budget
FROM studio
WHERE id = v_studio_id;
RETURN v_yearly_budget;
END;
Which set of statements will successfully invoke this function within SQL*Plus?
Ans: A
39.
CREATE OR REPLACE PROCEDURE update_theater
(v_name IN VARCHAR2, v_theater_id IN NUMBER) IS
BEGIN
UPDATE theater
SET name = v_name
WHERE id = v_theater_id;
END update_theater;
A. An user defined exception must be declared and associated with the error code and handled in the
EXCEPTION section.
B. Handle the error in EXCEPTION section by referencing the error code directly.
C. Handle the error in the EXCEPTION section by referencing the UNIQUE_ERROR predefined exception.
D. Check for success by checking the value of SQL%FOUND immediately after the UPDATE statement.
Ans: A
40.
CREATE OR REPLACE PROCEDURE calculate_budget IS
v_budget studio.yearly_budget%TYPE;
BEGIN
v_budget := get_budget(11);
IF v_budget
12. IS
13. BEGIN
20. END;
1. IN
2. OUT
3. RETURN
4. IN OUT
21. Read the following code:
22. CREATE OR REPLACE TRIGGER update_show_gross
24. BEGIN
26. END;
The trigger code should only execute when the column, COST_PER_TICKET, is greater than $3. Which
trigger information will you add?
RETURN number IS
v_yearly_budget NUMBER;
BEGIN
SELECT yearly_budget
INTO v_yearly_budget
FROM studio
WHERE id = v_studio_id;
RETURN v_yearly_budget;
END;
Which set of statements will successfully invoke this function within SQL*Plus?
33. BEGIN
1. An user defined exception must be declared and associated with the error code and handled in
the EXCEPTION section.
2. Handle the error in EXCEPTION section by referencing the error code directly.
3. Handle the error in the EXCEPTION section by referencing the UNIQUE_ERROR predefined
exception.
4. Check for success by checking the value of SQL%FOUND immediately after the UPDATE
statement.
39. Read the following code:
40. CREATE OR REPLACE PROCEDURE calculate_budget IS
42. BEGIN
45. THEN
46. set_budget(11,30000000);
48. END;
You are about to add an argument to CALCULATE_BUDGET. What effect will this have?
1. The GET_BUDGET function will be marked invalid and must be recompiled before the next
execution.
2. The SET_BUDGET function will be marked invalid and must be recompiled before the next
execution.
3. Only the CALCULATE_BUDGET procedure needs to be recompiled.
4. All three procedures are marked invalid and must be recompiled.
49. Which procedure can be used to create a customized error message?
1. RAISE_ERROR
2. SQLERRM
3. RAISE_APPLICATION_ERROR
4. RAISE_SERVER_ERROR
50. The CHECK_THEATER trigger of the THEATER table has been disabled. Which command can
you issue to enable this trigger?
1. ALTER TRIGGER check_theater ENABLE;
2. ENABLE TRIGGER check_theater;
3. ALTER TABLE check_theater ENABLE check_theater;
4. ENABLE check_theater;
51.Examine this database trigger
52. CREATE OR REPLACE TRIGGER prevent_gross_modification
54. BEGIN
56. THEN
This trigger must fire before each DELETE of the GROSS_RECEIPT table. It should fire only
once for the entire DELETE statement. What additional information must you add?
63. BEGIN
WHERE id = v_studio_id;
IF SQL%FOUND THEN
RETURN TRUEl;
ELSE
RETURN FALSE;
END IF;
COMMIT;
END;
73. END;
A site visitor writes: Here are some SQL Server DBA/Developer interview questions I faced myself personally
and/or heard from people. I will try to answer these questions briefly here, but be advised that these answers
may not be complete and it will be better for you to go through text books, books online and other resources
on the net.
Before you go for the interview, be prepared to explain the database design of one of your latest projects.
Don’t be surprised if the interviewer asks you to draw ER diagrams.
Well, here are some questions for you. Hope this helps you prepare for your interview. Wish you all the best in
your job hunt! Feel free to email me ‘interview questions’ that you’ve faced.
Questions are categorized under the following sections, for your convenience:
1. What is UML? UML is Unified Modeling Language. It is a graphical language for visualizing specifying
constructing and documenting the artifacts of the system. It allows you to create a blue print of all the
aspects of the system, before actually physically implementing the system.
2. What is modeling? What are the advantages of creating a model? Modeling is a proven and well-
accepted engineering technique which helps build a model. Model is a simplification of reality; it is a
blueprint of the actual system that needs to be built. Model helps to visualize the system. Model helps
to specify the structural and behavior of the system. Model helps make templates for constructing the
system. Model helps document the system.
3. What are the different views that are considered when building an object-oriented software
system? Normally there are 5 views. Use Case view - This view exposes the requirements of a system.
Design View - Capturing the vocabulary. Process View - modeling the distribution of the systems
processes and threads. Implementation view - addressing the physical implementation of the system.
Deployment view - focus on the modeling the components required for deploying the system.
4. What are diagrams? Diagrams are graphical representation of a set of elements most often shown
made of things and associations.
5. What are the major three types of modeling used? Major three types of modeling are structural,
behavioral, and architectural.
6. Mention the different kinds of modeling diagrams used? Modeling diagrams that are commonly
used are, there are 9 of them. Use case diagram, Class Diagram, Object Diagram, Sequence Diagram,
statechart Diagram, Collaboration Diagram, Activity Diagram, Component diagram, Deployment
Diagram.
7. What is Architecture? Architecture is not only taking care of the structural and behavioral aspect of a
software system but also taking into account the software usage, functionality, performance, reuse,
economic and technology constraints.
8. What is SDLC? SDLC is Software Development Life Cycle. SDLC of a system included processes that
are Use case driven, Architecture centric and Iterative and Incremental. This Life cycle is divided into
phases. Phase is a time span between two milestones. The milestones are Inception, Elaboration,
Construction, and Transition. Process Workflows that evolve through these phase are Business
Modeling, Requirement gathering, Analysis and Design, Implementation, Testing, Deployment.
Supporting Workflows are Configuration and change management, Project management.
9. What are Relationships? There are different kinds of relationships: Dependencies, Generalization,
and Association. Dependencies are relations ships between two entities that that a change in
specification of one thing may affect another thing. Most commonly it is used to show that one class
uses another class as an argument in the signature of the operation. Generalization is relationships
specified in the class subclass scenario, it is shown when one entity inherits from other. Associations are
structural relationships that are: a room has walls, Person works for a company. Aggregation is a type
of association where there is a has a relation ship, That is a room has walls, ño if there are two classes
room and walls then the relation ship is called a association and further defined as an aggregation.
10. How are the diagrams divided? The nine diagrams are divided into static diagrams and dynamic
diagrams.
11. Static Diagrams (Also called Structural Diagram): Class diagram, Object diagram, Component
Diagram, Deployment diagram.
12. Dynamic Diagrams (Also called Behavioral Diagrams): Use Case Diagram, Sequence Diagram,
Collaboration Diagram, Activity diagram, Statechart diagram.
13. What are Messages? A message is the specification of a communication, when a message is passed
that results in action that is in turn an executable statement.
14. What is an Use Case? A use case specifies the behavior of a system or a part of a system, óse cases
are used to capture the behavior that need to be developed. It involves the interaction of actors and
the system.
Q: How would you make the following SQL statement run faster? SELECT * FROM TABLEA WHERE
COL1=’A’ AND COL2=’B';
A: Make sure that COL1 and COL2 have indexes.
Find out which condition will return less values and use that as the first conditonal.
Q: What is one way to view a unix network share on a Windows computer, within explorer
A: NFS, The Unix computer can be running a NFS Server Daemon.
Q: How would you find all the processes running on your computer.
A: Unix, is ps -ef or ps -aux depending on version.
Q: What is DHCP
A: DHCP is a way to dynamically assign IP address to computers. Dyanmic Host Configuration Protocol
Q: Scenario: You have 9 identical looking balls, however one ball is heavier than the others. You
have two chances to use a balance. How do you find out which ball is the heaviest?
A: Split into groups of three, randomly choose two groups and use balance on them. If one group is heavier,
then discard the other 6 balls. If the two groups are the same weight. The heavier ball must be in the group
that was not on the scale. Now randomly choose two balls and test on balance. If they are the same weight,
the heaviest ball is on one that was not tested. Else the heaviest ball is already known from the balance.
Maintenanc If your client code talks only Just like an interface, if your
e in terms of an interface, you client code talks only in terms of
can easily change the an abstract class, you can easily
concrete implementation change the concrete
behind it, using a factory implementation behind it, using
method. a factory method.