Databases Interview Questions
Questions Answers Views Company eMail

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

Microsoft,

2 7081

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

Microsoft,

2 7807

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)?

1490

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 3352

select top 3 sal from each dept?

IBM, TCS,

17 22975

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 3652

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

RBS,

1 3696

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 3783

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.

1820

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 4082

What is Primary key and foreign key? Give an example

TCS,

4 8382

How to connect PK and FK?

2 5172

Can you export a table along with partition?

1 2857

what is datapump? Difference between exp and expdp?

Capital IQ, TCS, WNS,

2 20194

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 3678


Un-Answered Questions { Databases }

what is the use of system.effective.date variable in oracle?

674


What is the parameter mode that can be passed to a procedure?

578


Explain nested join?

568


How do you backup a database in mysql?

581


What language does oracle use?

601






Is access better than excel?

491


Delete duplicate rows without using rowid.

1076


What is authorization and integrity manager?

575


What is temporary stored procedure?

552


Explain the use of record option in exp command.

540


What is using in sql?

570


What is difference between count (*) and count 1?

517


Is microsoft access in the cloud?

483


What is mysql connection limit?

523


What is delimiter in mysql trigger?

532