Databases Interview Questions
Questions Answers Views Company eMail

What is difference between process and thread? Explain lazy writer funcationality.

Microsoft,

2 7044

What is live lock and deadlock? what is Lock escalation?

Microsoft,

2 7754

How to fetch/retrieve the data from hieranchical database and put it into the relational database? for e.g I want to extract the data from IMS DB2 database which is a hierarchical db and load that data into the relational database which is a SQL server.Are there any tools available for directing extracting data from hierarchical db and loading into the relational database (SQL server)?

1472

when a grant option is encountered for a table EMP to a peer sitting beside you who has already having the table of that name (EMP), then what is the result?

2 3320

select top 3 sal from each dept?

IBM, TCS,

17 22727

I have table that has student names in it.If I query on the names my result set should return as 'VALUE NOT ENTERED' for null entries.

1 3629

What is the best way to move n number of DTS package from one SQLServer to another SQLServer?

RBS,

1 3667

mysql> select * from store; +------+-------+-------+ | id | month | sales | +------+-------+-------+ | 1 | 1 | 100 | | 1 | 2 | 100 | | 1 | 3 | 200 | | 1 | 4 | 300 | | 1 | 5 | NULL | | 1 | 6 | 200 | | 1 | 7 | 800 | | 1 | 8 | 100 | | 1 | 9 | 240 | | 1 | 10 | 140 | | 1 | 11 | 400 | | 1 | 12 | 300 | | 2 | 1 | 300 | | 2 | 2 | 300 | | 2 | 3 | 300 | | 2 | 4 | 200 | | 2 | 5 | 200 | | 2 | 6 | 200 | | 2 | 7 | 100 | | 2 | 8 | 100 | | 2 | 9 | 300 | | 2 | 10 | 100 | | 2 | 11 | 150 | | 2 | 12 | 150 | +------+-------+-------+ this is my table. i need to display output like this. +------+----------+----------+----------+----------+ | id | quarter1 | quarter2 | quarter3 | quarter4 | +------+----------+----------+----------+----------+ | 1 | 400 | 500 | 1140 | 840 | | 2 | 900 | 600 | 500 | 400 | +------+----------+----------+----------+----------+ what single query i have to write for this. i tried this query and it displays like the below mysql> select id,sum(sales) as quarter1,(select sum(sales) from store where mont h>3 and month<7 ) as quarter2,(select sum(sales) from store where month>6 and mo nth<10)as quarter3 from store where month>0 and month<4 group by id; +------+----------+----------+----------+ | id | quarter1 | quarter2 | quarter3 | +------+----------+----------+----------+ | 1 | 400 | 1100 | 1640 | | 2 | 900 | 1100 | 1640 | +------+----------+----------+----------+ 2 rows in set (0.00 sec) tel me how to rectify it.

2 3751

Single File Database: Develop a student record management program, which uses single file as its database. It is not supposed to create additional files at any part of the project and should never rewrite total content. It must be capable of storing 100000's of records. It should support variable length records to be added, deleted, modified, listed.

1801

How to update rows in table, suppose i have lacks of rows in table how to update total table with update statement. Can u please any one answer this question with update statement.

2 4061

What is Primary key and foreign key? Give an example

TCS,

4 8336

How to connect PK and FK?

2 5141

Can you export a table along with partition?

1 2832

what is datapump? Difference between exp and expdp?

Capital IQ, TCS, WNS,

2 20141

I have query like this. select dept_id, max_mark from stude_dept where min_mark= (select min(mini_mark) from stud_dept); How can i optimize this query. Can anyone help me with it

2 3643


Un-Answered Questions { Databases }

What is case function?

584


What is a view? How it is related to data independence?

474


How do you delete a document from a collection?

5


What are the benefits of stored procedures?

523


What are the types of subscriptions in SQL Server replication?

537






what is database replicaion? What are the different types of replication you can set up in sql server? : Sql server database administration

520


How do you implement session management in SQL Server mode?

540


What is blocking and how would you troubleshoot it? : sql server database administration

573


How to create a simple stored procedure in ms sql server?

511


How can I change database in mysql?

444


Stored Procedure returns data from multiple tables. How to access it in your ASP.Net code?

538


How can we store rows in PL/SQL using array?

651


Can we create table in function?

555


What do you mean by entity type extension?

522


What is difference between database and schema?

484