SlideShare a Scribd company logo
1 of 11
Download to read offline
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 1/11
All About Data Warehousing and
Business Intelligence
Support Center
Top 130 SQL Interview Questions And Answers
By Kashif M on 14:17
1. Display the dept information from department table.
  Select  *  from  dept;
2. Display the details of all employees
  Select * from emp;
3. Display the name and job for all employees
   Select ename ,job from emp;
4. Display name and salary for all employees.
  Select ename  , sal  from emp;
 
5. Display employee number and total salary  for each employee.
Select empno, sal+comm from emp;
6. Display employee name and annual salary for all employees.
  Select empno,empname,12*sal+nvl(comm,0) annualsal from emp;
7. Display the names of all employees who are working in department number 10
  Select ename from emp where deptno=10;
8. Display the names of all employees working as  clerks and drawing a salary more than
3000
  Select ename from emp where job=’clerk’and sal>3000;
9. Display employee number and names for employees who earn commission
  Select empno,ename from emp where comm is not null and comm>0.
10. Display names of employees who do not earn any commission.
  Select empno ,ename  from emp where comm is  null and comm=0.
11.  Display  the  names  of  employees  who  are  working  as  clerk,salesman  or  analyst  and
drawing a salary more than 3000.
  Select ename from emp where(job=’clerk’ or job=’salesman’ or job= ‘Analyst’) and sal>3000;
 (Or)
   Select ename from emp wherejob in(‘clerk’,’slaesman’,’analyst’) and sal>3000;
Aggregator Transformation
Expression Transformation
Filter Transformation
Look­up (Connected) Transformation
Look­up (Un­connected) Transformation
Rank Transformation
Normalizer Transformation
Router Transformation
Sequence Generator Transformation
Source Qualifier Transformation
Sorter Transformation
Stored Procedure Transformation
Union Transformation
INFORMATICA TRANSFORMATION
DON'T MISS OBIEE 11G Architecture Posted 10 days ago
Oracle Business Intelligence Application Architect ☎ +91 9994883085
Search site
New optimization platform
cyberdyne.it
Fast and user-friendly software for CAE applications
SQL Server Courses
veeam.com
Learn SQL Server in 3 simple steps. Register to watch free videos!
► Questions and Answers
► Employee Payroll System
► Oracle SQL Queries
Ads by Google
► SQL Interview Questions
► Employee Salary
► PL SQL
Ads by Google
HOME DATAWAREHOUSE ORACLE DATABASE OBIEE OBIA INFORMATICA DAC CONTACT
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 2/11
12. Display the names of employees who are working in the company  for the past 5 years.
  Select ename from emp where sysdate­hiredate>5*365;
13. Display the list of employees who have joined the company before 30th  June 90 after
31st dec 90.
  Select * from emp where hiredate between ’30­Jun­1990’ and  ’31­dec­1990’;
14. Display current date.
  Select sysdate from dual;
 15. Display the list of users in your  database(using log table).
  Select * from dba_users;
16. Display the names of all tables from the current user.
Select * from tab;
17. Display the name of the Current user.
  Show user;
18.  Display  the  names  of  employees  working  in  department  number  10  or  20  or  40
employees  working  as  clerks,salesman or analyst
Select ename from emp where deptno in(10,20,40) or job in(‘clerks’,’salesman’,’Analyst’);
19. Display the names of employees whose name starts with alphabet S.
Select ename from emp where ename like ‘S%’;
20. Display the names of employees whose name ends with alphabet S.
Select ename from emp where ename like ‘%S’;
21. Display the names of employees whose name have second alphabet A in their names.
Select ename from emp where ename like ‘_S%’;
22. Display the names of employees whose name is exactly five characters in length.
Select ename from emp where length(ename)=5;
(Or)
Select ename from emp where ename like ‘_____’;
23. Display the names of employees who are not working as managers.
 Select * from emp minus(Select * from emp where empno in(Select mgr from emp));
Or
 Select * from emp e where empno not in (Select mgr from emp where mgr is not null);
Or
Select * from emp e where empno not in (Select mgr from emp where e.empno=mgr);
24. Display the names of employees who are not working as SALESMAN or CLERK or 
ANALYST.
Select ename from emp  where job not in(‘clerks’,’salesman’,’Analyst’);
25.  Display  all  rows  from  Emp  table  .The  System  should  wait  after  every  screen  full  of
information.
 Set pause on;
26.Display the total number of employees working in the company.
  Select count(*) from emp;
27. Display the total salary being paid to all employees.
  Select sum(sal)+sum(nvl(comm.,0)) form emp;
28. Display the maximum salary from emp table.
Select max(sal ) from emp;
29. Display the minimum salary from emp table.
Select min(sal) from emp;
30. Display the average salary from emp table.
Top 130 SQL Interview Questions And
Answers
1. Display the dept information from department
table.   Select   *   from   dept; 2. Display the details
of all employees  ...
Normalization In SQL
((1NF, 2NF, 3NF, BCNF,
4NF, 5NF)
Normalization: Normalization is
step-by-step process of reducing
complexity of an entity by distributing the
attributes to di吀eren...
Top 100 Informatica Interview Questions
I have attended Informatica interview last week in
wipro and couple of other companies, Question
below I faced in those companies. 1...
OBIEE 11G ARCHITECTURE
WITH EXPLANATION
Below diagram describes the
standard logical architecture of
Oracle business intelligence 11g
system The entire system
architecture is c...
Unconnected Lookup
Transformation In
Informatica
Passive Transformation Unlike
Connected Transformation that
receives input directly from the mapping pipeline, it
receives input fr...
OBIEE -Time Series In
OBIEE
Time Series in obiee Time series
functions present the capability to
evaluate and comparing business
performance by curre...
Informatica Sample Project
Informatica sample project - 1 CareFirst – Blue
Cross Blue Shield, Maryland (April 2009 – Current)
Senior ETL Developer/Lead...
Error Codes:
YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
View Display Error (Error Code: nQSError: 43113,
nQSError: 10058, nQSError: 27005,
YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P) Error
POPULAR POSTS
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 3/11
Select avg(sal) from emp;
31. Display the maximum salary being paid to CLERK.
Select max(sal ) from emp  where job=’clerk’;
32. Display the maximum salary being paid in dept no 20.
Select max(sal ) from emp  where deptno=20;
33. Display the min salary being paid to any SALESMAN
Select max(sal ) from emp  where job=’ SALESMAN’;
34. Display the average salary drawn by managers.
Select avg(sal) from emp where job=’MANAGER’;
35. Display the total salary drawn by analyst working in dept no 40.
Select sum(sal)+sum(nvl(comm,0)) from emp where deptno=40;
36.  Display  the  names  of  employees  in  order  of  salary  i.e.  the  name  of  the  employee
earning  lowest salary should appear first.
Select ename from emp order by sal;
37.  Display the names of employees in descending order of salary
Select ename from emp order by sal desc;
38. Display the details from emp table in order of emp name.
Select ename from emp order by ename;
39. Display empno,ename,deptno and sal .Sort the output first based on name and within
name by deptno  and within deptno by sal;
 Select * from emp order byename,deptno,sal;
40. Display the name of the employee along with their annual salary (sal*12).The name of
the employee earning highest annual salary should appear first.
  Select ename,12*(sal+nvl(comm,0)) Annual from emp order by  12*(sal+nvl(comm,0)) desc;
41.  Display  name  ,Sal,hra,pf,da,total  sal  for  each  employee.The  Output  should  be  in  the
order of total sal, hra 15% of sal , da 10% of sal , pf 5% of sal total salary will be (sal*hra*da)­
pf.
Select  ename,sal,sal*15/100  HRA,  SAL*5/100  pf,SAL*10/100  da,sal+sal*15/100­sal*5/100
Total_SALARY from emp
42. Display dept numbers and total number of employees within each group.
Select deptno,count(*) from emp group by deptno;
43. Display the various jobs and total number of employees with  each job group.
Select  job,count(*) from emp group by job;
44. Display department numbers and total salary for each department.
Select deptno, sum(sal)  from emp group by deptno;
45. Display department numbers and maximum salary for each department.
Select deptno, max(sal)  from emp group by deptno;
46. Display the various jobs and total salary for each job.
Select  job, sum(sal)  from emp group by job;
47. Display each jobs along  with minimum sal being paid in each job group.
Select  job,min(sal)  from emp group by job;
48.Display the department numbers with more than three employees  in each dept.
Select deptno,count(*) from emp group by deptno having count(*)>3;
49.  Display  the  various  jobs  along  with  total  sal  for  each  of  the  jobs  where  total  sal  is
greater than 40000
Select  job, sum(sal)  from emp group by job having sum(sal)>40000;
Powered by Blogger.
Get this widget »
YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P) Error
getting drill...
Download Informatica 9.5 Software
I seen many peoples searching to download
informatica software. Just go to
https://edelivery.oracle.com/EPD/Download/get_form?
egroup_aru...
OBIEE - Pivot Table View In
OBIEE
Pivot table Pivot table view to take
row, column, section headings
and swap them around to obtain
di吀erent perspectives. You can ...
HMAILSERVER INSTALLATION AND
CONFIGURATION
By Kashif Kashif M ­ 1 comment
Parent child Hierarchy Vs Ragged
Hierarchy in OBIEE 11g
By Kashif Kashif M ­ 0 comment
Ragged and skipped level Hierarchy in
OBIEE 11g
By Kashif Kashif M ­ 0 comment
key performance indicators in obiee
11g
By Kashif Kashif M ­ 0 comment
Action Links and Actions in OBIEE 11g
By Kashif Kashif M ­ 0 comment
Steps to configure Write back in OBIEE
11g
By Kashif Kashif M ­ 0 comment
Agents in obiee 11g
By Kashif Kashif M ­ 0 comment
Top 50 BI Publisher Interview
Questions
By Kashif Kashif M ­ 0 comment
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 4/11
50. Display the various jobs along with total number of employee in each job. The output
should contain only those jobs with more than three employees.
  Select job,count(*) from emp group by job having count(*)>3.
51. Display the name of emp who earns highest sal.
  Select ename from emp where sal=(select max(sal) from emp);
52.  Display  the  employee  number  and  name  of  employee  working  as  CLERK  and  earning
highest salary among CLERKS.
    Select  empno,ename  from  emp  where  job=’CLERK’  and  sal=(select  max(sal)  from  emp  where
job=’CLERK’);
53. Display the name of the salesman who earns a salary more than the highest salary of
any clerk.
  Select  ename  from  emp  where  job=’salesman’  and  sal>(select  max(sal)  from  emp  where
job=’clerk’);
54.  Display  the  names  of  clerks  who  earn  salary  more  than  that  of  James  of  that  of  sal
lesser than that of Scott.
Select ename from emp where job=’clerk’ and sal<(select sal from emp where ename =’scott’) and
sal>(select sal from emp where ename=’james’);
55.  Display  the  names  of  employees  who  earn  a  Sal  more  than  that  of  James  or  that  of
salary greater than that of Scott.
  Select ename from emp where sal<(select sal from emp where ename=’Scott’)And sal>(select sal
from emp where ename=’James’);
56.    Display  the  names  of  employees  who  earn  highest  salary  in  their  respective
departments.
  Select * from emp e where sal =(select max(sal) form emp where deptno=e.deptno)
57.  Display the names of employees who earn highest salary in their respective job groups.
  Select * from emp e where sal  in(select max(sal) form emp  group by having  e.job=job).
58. Display the employee names who are working in accountings dept.
   Select ename from emp  where deptno=(select deptn0 from dept where dname=’ACCOUNTING’);
(OR)
Select ename from emp  where deptno IN(select deptn0 from dept where dname=’ACCOUNTING’);
59. Display the employee names who are working in CHICAGO.
   Select ename from emp  where deptno=(select deptno from dept where loc=’CHICAGO’);
60.  Display  the  job  groups  having  total  salary  greater  than  the  maximum  salary  for
managers.
Select  job,sum(sal)  form  emp  group  by  job  having  sum(sal)>(select  max(sal)  from  emp  where
job=’MANAGERS’;
61. Display the names of employee from department number 10 with salary greater than that
of all employee working in other departments.
  Select ename ,sal ,deptno from emp  e  where deptno=10 and sal>any(select sal from emp where
e.deptno!=deptno);
62. Display the name of employees in Uppercase
Select upper(ename) from emp;
63. Display the name of employees in Lower case
Select lower(ename) from emp;
63. Display the name of employees in  Proper case
Select initicap(ename) from emp;
64. Find out the length of your name using appropriate function.
 Select length(‘India’)  from dual;
65. Display the length of all employees names.
 Select sum( length(ename))  from emp;
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 5/11
66. Display the name of the employee concatenate with empno
   Select  ename|| empno from emp;
(or)
Select concat(ename,empno) from emp;
67.  Use  appropriate  function  and  extract  3  characters  staring  from  2  characters  from  the
following string ‘Oracle’ i.e the output should be ‘rac’.
  Select substr(‘oracle’,’2’3) from dual;
68.Find the first occurrence of character a from the following string ‘computer maintenance
corporation’.
  Select instr(‘computer maintenance corporation’,’a’,1,1) from dual;
69.  Replace  every  occurrence  of  alphabet  A  with  B  in  the  string  Allen’s(user  translate
function).
Select replace(‘Allens’,’A’,’b’) from dual;
70. Display the information from emp table. Wherever job ‘manager’ is found it should be
displayed as boss(replace function).
  Select empno,ename  replace(job,’MANAGER’,’Boss’) JOB from emp;
71. Display empno,ename,deptno from emp table .Instead of display department numbers
display the related department name (use decode function).
  Select e.empno ,e.ename ,d.dname from emp e ,dept d where e.deptno=d.deptno;
72. Display your age in days.
  Select round(sysdate­to_date(’15­aug­1947’))from dual;
73. Display your age in months.
Select floor (months_between(sysdate,’15­auf­1947’)) “age in months” from dual;
74. Display current date as 15th august Friday nineteen forty seven.
Select to_char(sysdate,’date month day year’) from dual;
75.    Display  the  following  output  for  each  row  from  emp  table  as  ‘scott  has  joined  the
company on Wednesday 13th august nineteen ninety’.
 Select ename || ‘has joined the company on ‘ || to_char (hiredate,’day ddth month ear’) from emp;
76. Find the date of nearest Saturday after Current day.
  Select  next_day (sysdate,’SATURDAY’ ) from dual;
77. Display current time.
 Select to_char(Sysydate,’SATURDAY’) from dual;
78. Display the date three months before the current date.
  Select add_months(sysdate,­3) from dual;
79. Display the common jobs from department number 10 and 20.
Select job from emp where deptno=10 and  job in(select job from emp where deptno=20);
(or)
Select job from emp where deptno=10 intersect select job from emp where deptno=10);
80. Display the jobs found in department number 10 and 20 eliminate duplicate jobs.
  Select distinct(job) from emp where deptno=10 and job in(select job from emp where deptno =20
(or)
Select job from emp where deptno=10 intersect select job from emp where deptno=10);
81. Display the jobs which are unique to dept no 10.
 Select job from emp where deptno=10 minus select job from emp where deptno!=10;
(or)
Select job from emp where deptno=10 and job not in (select job from emp  where deptno<>10);
82. List ename,job, annual sal,deptno,dname and grade who earn 30000 per year and who
are not clerks,
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 6/11
select  e.ename,e.job,  (e.sal+nvl(e.comm,0))*12,  e.deptno,d.dname,s.grade  from  emp  e,  salgrade
s,  dept  d  where  e.sal  betweem  s.lsal    and  d.deptno  and  (e.sal+nvl(cmomm,0))*12>  30000  and
e.job<> 'clerk';
83. Find out the jon that was failed in the first half of 1983 and the same job that was failed
during the same periond in 1984
Answer me.
84. Find out the all employees who joined the company before thiere manager
select * from emp e where hiredate<(select hiredate from emp where empno=e.mgr);
85. List out the all employees by  name and number along with their manager's name and
number also display 'No Manager' who has no manager.
select e.empno,e.ename,m.empno manager,m.ename managername from emp e, emp m where
e.mgr=m.empno from emp e, emp m where e,mgr=m.empno union select empno,ename,mgr,'No
Manager' from emp where mgr is null;
86 Find out the employees who earned the highest Sal in each job typed sort in descending
sal order.
select * from emp e where sal=(select max(sal) from emp where job=e.job);
87.  Find out the employees who earned the min sal for there job in ascending order
select * from emp e where sal=(select min(sal) from emp where job=e.job) order by sal;
88.Find out the most recently hired employees in each dept order by hire date.
select * from emp e where hiredate=(select max(hiredate) from emp where deptno=e.deptno) order
by hiredate;
89. Display ename,sal and deptno for each employee who earn a sal greater than the avg of
their department order by deptno
select  ename,sal,deptno  from  emp  e  where  sal  >(select  avg(sal)  from  emp  where
deptno=e.deptno) order by deptno;;
90. Display the department where there are no employees;
select deptno,dname from dept where deptno not in(select distinct(deptno) from emp);
91. Display the dept no with highest annual remuneration bill as compensation.
select deptno,sum(sal) from emp group by deptno having sum(sal) = (select mac(sum(sal)) from
emp group by deptno);
92.  In  which  year  did  most  people  join  the  company.  Display  the  year  and  number  of
employees(hey try out)
Select  max(aa)  from  (select  count(*)  aa,  to  _char(hiredate,'yyyy')  dd  from  emp  group  by
to_char(hiredate,'yyyy'))
93. Display avg sal figure for the dept
select deptno,avg(sal) from emp group by deptno;
94. write a query of display against the row of the most recently hired employee. Display
ename hire date and column max date showing.
select empno,hiredate from emp where hiredate=(select max (hiredate) from emp);
95. Display employees who can earn more than lowest sal in dept no 30
select * from emp where sal>(select min(sal) from deptno=30);
96. Find employees who can earn more than every employees in dept no 30
select * from emp where sal>(select max(sal) from emp where deptno=30);
select * from emp where sal>all(select sal from emp where deptn0=30);
97. select dept name dept no and sum of sal break on deptno on dname;
select e.deptno,d.dname,sal fdrom emp e, dept d
where e.deptno=d.deptno
order by e.deptno;
98. Find out avg sal and ave total remaninders for each job type
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 7/11
99 . Find all dept's which have more than 3 employees.
select deptno from emp group by deptno having count(*)>3;
100. Display the half of the enames in upper case and remaining lower case.
select  concat(upper(substr(ename,0,lengh(ename)/2)),  lower
(substr(ename,lengh(ename)/2+1,lenght(ename)))) from  emp;
101. select ename if ename exists more than once.
select  distinct(ename)  from  emp  e  where  ename  in(select  ename  from  emp  where
e.empno<>empno);
102. Display all enames in reverse order
select ename from emp order by ename desc;
103. Display those employee whose joining of month and grade is equal.
select  empno,ename  from  emp  e,salgrade  s  where  e.sal  between  s.losal  and  s.hisal  and
to_char(hiredate,'mm')=grade;
104. Display those employee whose joining date is available in dept no
select * from emp where to_char(hiredate,'dd')=deptno;
105. Display those employee name as follows A allen, B black
select substr(ename,1,1)||' ' || ename from emp;
106. List out the employees ename,sal pf from emp
select ename,sal,sal*15/100 pf from emp
107. Display RSPS from emp without using updating,inserting
Create table emp with only one column empno
create table emp(empno number(5));
108. Add this column to emp table ename varchar(20)
alter table emp add ename varchar2(20) not null;
109. opps I forgot to give the primary Key constrains. Add it now.
Alter table emp add constrains emp_empno primary key(empno);
110.  now increase the length of ename column to 30 characters,
alter table emp modify ename varchar2(30);
111. Add salary column to emp table.
alter table emp add sal number(7,2);
112. I want to give a validation saying that sal cannot be greater 10,000(note give a name to
this comumn)
Alter table emp add constraints emp_sal_check check(sal<10000);
113. For the time begin I have decided that i will not impose this validation. My boss has
agreed to pay more than 10,0000
Alter table emp disable constrainsts emp_sal_check;
114.  My  boss  has  changed  his  mind.  now  he  doesn't  want  to  pay  more  than  10,000.  so
revoke that salary constraints
Alter table emp enable constraints emp_sal_check;
115. Add column called a s mgr to your emp table.
Alter table emp add mgr number(5);
116. Oh this column should be related to empno. give a command to add this constrains
Alter table emp add constraint emp_mgr foreign key(empno);
117. Add dept no column to your emp table
alter table emp add deptno number(3);
118. This dept no column should be related to deptno column to dept table
alter table emp1 add constraints emp1_deptno foreign key(deptno) referemces dept(deptno);
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 8/11
SQL Interview Questions
NEWER POST OLDER POST
119. Create table called as new emp. using single command create this table as well as to
get data into this table (use create table as)
create table newemp as select * from emp;
120. create table called as newemp. The table should contains only empno,ename,dname
Create  table  newemp  as  select  empno,ename,dname  from  emp  e,  dept  d  where
e,deptno=d.deptno;
121. Delete the rows of employees who are working in the company for more than 3 years
delete from emp where floor(sysdate­hiredaye)>2*365;
122. Provide a commission to employees who are not earning any commission.
update emo set comm=300 where comm is null;
123. If any employees has commsision his commsision should be incremented by 10% of
his salary
update emp set comm=comm*10/100 where comm is not null;
124. Display employees name and department name for each employee
select ename,dename from emp e,dept d where e.deptno=d.deptno
125. Display employee number, name and location of the department in which he is working
select empno,ename, loc from emp e, dept d where e.deptno=d.deptno
126.Display ename, dname even if the employees in a particular department(use outer join)
select ename , dname from emp e,dept d where e.deptno(+)=d.deptno;
127. Display employee name and his manager name
select e.ename,m.ename from emp e, emp m where e.mgr=m.empno;
128. Display the department name along with total salary in each department
select deptno,sum(sal) from emp group by deptno;
129.Display the department no and total number of employees in each department
select deptno,count(*) from emp group by deptno;
130.  Alter  table  emp1  add  constrains  emp1_deptno  foreign  key(deptno)  references
dept(deptno)
delete from emp where job name in clerk
Nerolac Excel Total
nerolac.com
Get Complete Weather Protection With Nerolac Excel Total
New optimization platform
cyberdyne.it
Fast and user­friendly software for CAE applications
7 COMMENTS:
check  this  also  this  website  also  having  a  lot  unique  sql  interview
questions 
sql interview questions 
@ http://skillgun.com
Reply
KRISHNA MOHAN 22 May 2014 at 21:45
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 9/11
►  2016 (6) ►  2015 (48)
Enter your comment...
Comment as:  Select profile...
Publish
  Preview
Create a Link
Blog Archive
In 12th Question is it > or <
Reply
XXX 20 February 2016 at 05:37
VERY USEFULL
Reply
Anonymous 3 April 2016 at 23:50
how to find Scott manager in employe table
Reply
UNKNOWN 18 April 2016 at 01:41
how to find Scott manager in employe table
Reply
PUNIT TIWARI 18 April 2016 at 01:42
good morning...
I want to disply those employee who had worked consecutively 3 days
more than 10 hrs.plz help me
Reply
RAJESH BARGODE 28 June 2016 at 22:13
write a sql query to find out employee name and location who is getting
1000<salary<3000  &  working  as  clerk,  salesman  or  manager  in  sales
dept.
Reply
UNKNOWN 19 July 2016 at 00:53
LINKS TO THIS POST
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 10/11
►  November (42) ►  August (13) ►  June (41)
OBIEE 11g Interview Questions from Virtusa
To create a database in SQL Server 2008
Create a database user using SQL Server Management...
MS SQL Server 2008 Installation Step by Step Scorecard in obiee 11g
KPI in OBIEE 11g Top 130 SQL Interview Questions And Answers
Cache Management in OBIEE 11g
Multi user development environment (MUDE) in OBIEE...
Catalog manager in OBIEE 11g
KPI ­ (key performance indicator) in OBIEE 11g Ste...
KPI watch list in OBIEE 11g Steps KPI Watch list OBIEE 11g
Map viewer in OBIEE 11g ­ Part ­2 Map viewer in OBIEE 11g ­ Part 1
pdf export not working in obiee 11G Top 88 ODI Interview Questions
▼  May (17)
►  March (1) ►  February (55) ►  January (19)
▼  2014 (188)
►  2013 (247) ►  2012 (1)
1Z0­482 DUMPS 1Z0­525 DUMPS BI PUBLISHER INTERVIEW QUESTIONS
DATA WAREHOUSE ADMINISTRATOR CONSOLE DATA WAREHOUSING
E­BIZ R12
E­BIZ R12 INSTALLATION ESSBASE HMAILSERVER HYPERION HYPERION ESSBASE
HYPERION ESSBASE INTERVIEW QUESTIONS HYPERION FINANCIAL MANAGEMENT INFORMATICA
INFORMATICA INSTALLATION 9.6.1 INFORMATICA INTERVIEW QUESTION
INFORMATICA ONLINE TRAINING INFORMATICA TRAINING
INFORMATICA TRAINING CHENNAI
JAVA LINUX NORMALIZATION IN ORACLE OBIA 11.1.1.7.1 OBIA 7.9.6.3 OBIA INSTALLATION
OBIEE 10G OBIEE 11G OBIEE 11G DUMPS OBIEE 11G INTERVIEW QUESTIONS OBIEE 12C
OBIEE CERTIFICATION OBIEE INTERVIEW QUESTION OBIEE PUBLISHER INTERVIEW QUESTIONS
OBIEE TRAINING CHENNAI OBIEE TRAINING ONLINE
ODI (ORACLE DATA INTEGRATOR)
ODI 11G CERTIFICATION ODI DUMPS ORACLE ADMINISTRATOR
ORACLE BUSINESS INTELLIGENCE APPLICATION ORACLE DATA INTEGRATOR
ORACLE DATA INTEGRATOR INTERVIEW QUESTIONS FOR EXPERIENCE ORACLE DATABASE
ORACLE DATABASE 12C INSTALLATION STEPS ORACLE DATABASE INSTALLATION IN LINUX 6
ORACLE E­BUSINESS R 12.3 ORACLE HYPERION PLANNING AND BUDGETING QUESTIONNAIRE
ORACLE JOINS SCORECARD IN OBIEE 11G SQL INTERVIEW QUESTIONS SQL SERVER 2008
(18) (31) 
(163)
(46) 
(33) (8) (130)
(20) 
Labels
(2) (1) (1)  (1) (1)
(1)
(1)
(1)
(2)
(1)
(1)
(2)  (1) (1) (1) (1) (1) (1) (1)
(3)
(2) (1) (6) (2) (1) (1) (1) (1) (2)
(1)
(2)  (3)  (2)  (1)  (2)  (2)
(2) (1)  (2) (1)
(1) (1) (2) (1) (1)
8/23/2016 Top 130 SQL Interview Questions And Answers
http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 11/11
Get this widget »
SQL SERVER INSTALLATION WINSCP
 
different ways to use a Informatica Transformation?
By Kashif Kashif M ­ 0 comment
What are Ports in Informatica?
By Kashif Kashif M ­ 0 comment
What is a Transformation in Informatica?
By Kashif Kashif M ­ 0 comment
ISOLATION LEVELS IN OBIEE
By Kashif Kashif M ­ 1 comment
Changing Port Number in OBIEE 11G
By Kashif Kashif M ­ 0 comment
OBJECT LEVEL SECURITY IN OBIEE ON PRESENTATION LAYER
By Kashif Kashif M ­ 0 comment
RANK FUNCTION IN OBIEE 11G
By Kashif Kashif M ­ 0 comment
INCREASE ROW LIMITS IN TABLE PROPERTIES OF OBIEE
By Kashif Kashif M ­ 0 comment
Kashif M
132 have me in circles View all
Add to circles
Google+ Followers
Followers (19)
Follow
Followers
Be the first of your friends to like this
Mkashu
375 likes
Like Page Contact Us
Like me on Facebook
Home About Support Center
Copyright © 2015 mkashu. Designed by Templateism

More Related Content

Similar to sql interview questions and answers

Five more things about Oracle SQL and PLSQL
Five more things about Oracle SQL and PLSQLFive more things about Oracle SQL and PLSQL
Five more things about Oracle SQL and PLSQLConnor McDonald
 
Optimizer overviewoow2014
Optimizer overviewoow2014Optimizer overviewoow2014
Optimizer overviewoow2014Mysql User Camp
 
LWPG1_001 Chapter 4.pptx
LWPG1_001 Chapter 4.pptxLWPG1_001 Chapter 4.pptx
LWPG1_001 Chapter 4.pptxNitinmadas
 
Performance tuning
Performance tuningPerformance tuning
Performance tuningami111
 
Les06- Subqueries.ppt
Les06- Subqueries.pptLes06- Subqueries.ppt
Les06- Subqueries.pptgznfrch1
 
Supporting Enterprise System Rollouts with Splunk
Supporting Enterprise System Rollouts with SplunkSupporting Enterprise System Rollouts with Splunk
Supporting Enterprise System Rollouts with SplunkErin Sweeney
 
OOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL featuresOOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL featuresConnor McDonald
 
MySQL Performance Schema : fossasia
MySQL Performance Schema : fossasiaMySQL Performance Schema : fossasia
MySQL Performance Schema : fossasiaMayank Prasad
 
ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介
ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介
ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介Salesforce Developers Japan
 
MySQL Troubleshooting with the Performance Schema
MySQL Troubleshooting with the Performance SchemaMySQL Troubleshooting with the Performance Schema
MySQL Troubleshooting with the Performance SchemaSveta Smirnova
 
OSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdf
OSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdfOSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdf
OSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdfAshesNag1
 
Oracle Database features every developer should know about
Oracle Database features every developer should know aboutOracle Database features every developer should know about
Oracle Database features every developer should know aboutgvenzl
 
04 laboratory exercise 1
04 laboratory exercise 104 laboratory exercise 1
04 laboratory exercise 1Anne Lee
 
Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...
Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...
Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...Extra Technology
 
Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015dezyneecole
 
MySQL Optimizer: What's New in 8.0
MySQL Optimizer: What's New in 8.0MySQL Optimizer: What's New in 8.0
MySQL Optimizer: What's New in 8.0Manyi Lu
 

Similar to sql interview questions and answers (20)

Five more things about Oracle SQL and PLSQL
Five more things about Oracle SQL and PLSQLFive more things about Oracle SQL and PLSQL
Five more things about Oracle SQL and PLSQL
 
Optimizer overviewoow2014
Optimizer overviewoow2014Optimizer overviewoow2014
Optimizer overviewoow2014
 
LWPG1_001 Chapter 4.pptx
LWPG1_001 Chapter 4.pptxLWPG1_001 Chapter 4.pptx
LWPG1_001 Chapter 4.pptx
 
audit_blog.ppt
audit_blog.pptaudit_blog.ppt
audit_blog.ppt
 
Performance tuning
Performance tuningPerformance tuning
Performance tuning
 
Les06- Subqueries.ppt
Les06- Subqueries.pptLes06- Subqueries.ppt
Les06- Subqueries.ppt
 
Supporting Enterprise System Rollouts with Splunk
Supporting Enterprise System Rollouts with SplunkSupporting Enterprise System Rollouts with Splunk
Supporting Enterprise System Rollouts with Splunk
 
OOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL featuresOOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL features
 
MySQL Performance Schema : fossasia
MySQL Performance Schema : fossasiaMySQL Performance Schema : fossasia
MySQL Performance Schema : fossasia
 
ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介
ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介
ここまでできる!Salesforce Connect 最新機能 (Winter'17) のご紹介
 
Les06 Subqueries
Les06 SubqueriesLes06 Subqueries
Les06 Subqueries
 
MySQL Troubleshooting with the Performance Schema
MySQL Troubleshooting with the Performance SchemaMySQL Troubleshooting with the Performance Schema
MySQL Troubleshooting with the Performance Schema
 
OSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdf
OSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdfOSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdf
OSP_Mfg_WIP_Advisor_Webcast_2013_0327.pdf
 
Oracle Database features every developer should know about
Oracle Database features every developer should know aboutOracle Database features every developer should know about
Oracle Database features every developer should know about
 
04 laboratory exercise 1
04 laboratory exercise 104 laboratory exercise 1
04 laboratory exercise 1
 
Les12[1]Creating Views
Les12[1]Creating ViewsLes12[1]Creating Views
Les12[1]Creating Views
 
Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...
Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...
Creating Management Summaries Using CA 7 Reports - CA Workload Automation Tec...
 
Lab guide13
Lab guide13Lab guide13
Lab guide13
 
Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015
 
MySQL Optimizer: What's New in 8.0
MySQL Optimizer: What's New in 8.0MySQL Optimizer: What's New in 8.0
MySQL Optimizer: What's New in 8.0
 

Recently uploaded

PSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxPSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxMarlene Maheu
 
The Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFThe Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFVivekanand Anglo Vedic Academy
 
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...Nguyen Thanh Tu Collection
 
Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxAdelaideRefugio
 
Book Review of Run For Your Life Powerpoint
Book Review of Run For Your Life PowerpointBook Review of Run For Your Life Powerpoint
Book Review of Run For Your Life Powerpoint23600690
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppCeline George
 
How to Manage Website in Odoo 17 Studio App.pptx
How to Manage Website in Odoo 17 Studio App.pptxHow to Manage Website in Odoo 17 Studio App.pptx
How to Manage Website in Odoo 17 Studio App.pptxCeline George
 
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...Nguyen Thanh Tu Collection
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSean M. Fox
 
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptxAnalyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptxLimon Prince
 
ANTI PARKISON DRUGS.pptx
ANTI         PARKISON          DRUGS.pptxANTI         PARKISON          DRUGS.pptx
ANTI PARKISON DRUGS.pptxPoojaSen20
 
OSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsOSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsSandeep D Chaudhary
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhleson0603
 
demyelinated disorder: multiple sclerosis.pptx
demyelinated disorder: multiple sclerosis.pptxdemyelinated disorder: multiple sclerosis.pptx
demyelinated disorder: multiple sclerosis.pptxMohamed Rizk Khodair
 
e-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopale-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi RajagopalEADTU
 
Trauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical PrinciplesTrauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical PrinciplesPooky Knightsmith
 
Scopus Indexed Journals 2024 - ISCOPUS Publications
Scopus Indexed Journals 2024 - ISCOPUS PublicationsScopus Indexed Journals 2024 - ISCOPUS Publications
Scopus Indexed Journals 2024 - ISCOPUS PublicationsISCOPE Publication
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...Nguyen Thanh Tu Collection
 

Recently uploaded (20)

Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"
 
PSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxPSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptx
 
The Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFThe Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDF
 
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
 
Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptx
 
Book Review of Run For Your Life Powerpoint
Book Review of Run For Your Life PowerpointBook Review of Run For Your Life Powerpoint
Book Review of Run For Your Life Powerpoint
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge App
 
How to Manage Website in Odoo 17 Studio App.pptx
How to Manage Website in Odoo 17 Studio App.pptxHow to Manage Website in Odoo 17 Studio App.pptx
How to Manage Website in Odoo 17 Studio App.pptx
 
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
 
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptxAnalyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
Analyzing and resolving a communication crisis in Dhaka textiles LTD.pptx
 
ANTI PARKISON DRUGS.pptx
ANTI         PARKISON          DRUGS.pptxANTI         PARKISON          DRUGS.pptx
ANTI PARKISON DRUGS.pptx
 
OSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsOSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & Systems
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
 
demyelinated disorder: multiple sclerosis.pptx
demyelinated disorder: multiple sclerosis.pptxdemyelinated disorder: multiple sclerosis.pptx
demyelinated disorder: multiple sclerosis.pptx
 
e-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopale-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopal
 
Including Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdfIncluding Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdf
 
Trauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical PrinciplesTrauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical Principles
 
Scopus Indexed Journals 2024 - ISCOPUS Publications
Scopus Indexed Journals 2024 - ISCOPUS PublicationsScopus Indexed Journals 2024 - ISCOPUS Publications
Scopus Indexed Journals 2024 - ISCOPUS Publications
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
 

sql interview questions and answers

  • 1. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 1/11 All About Data Warehousing and Business Intelligence Support Center Top 130 SQL Interview Questions And Answers By Kashif M on 14:17 1. Display the dept information from department table.   Select  *  from  dept; 2. Display the details of all employees   Select * from emp; 3. Display the name and job for all employees    Select ename ,job from emp; 4. Display name and salary for all employees.   Select ename  , sal  from emp;   5. Display employee number and total salary  for each employee. Select empno, sal+comm from emp; 6. Display employee name and annual salary for all employees.   Select empno,empname,12*sal+nvl(comm,0) annualsal from emp; 7. Display the names of all employees who are working in department number 10   Select ename from emp where deptno=10; 8. Display the names of all employees working as  clerks and drawing a salary more than 3000   Select ename from emp where job=’clerk’and sal>3000; 9. Display employee number and names for employees who earn commission   Select empno,ename from emp where comm is not null and comm>0. 10. Display names of employees who do not earn any commission.   Select empno ,ename  from emp where comm is  null and comm=0. 11.  Display  the  names  of  employees  who  are  working  as  clerk,salesman  or  analyst  and drawing a salary more than 3000.   Select ename from emp where(job=’clerk’ or job=’salesman’ or job= ‘Analyst’) and sal>3000;  (Or)    Select ename from emp wherejob in(‘clerk’,’slaesman’,’analyst’) and sal>3000; Aggregator Transformation Expression Transformation Filter Transformation Look­up (Connected) Transformation Look­up (Un­connected) Transformation Rank Transformation Normalizer Transformation Router Transformation Sequence Generator Transformation Source Qualifier Transformation Sorter Transformation Stored Procedure Transformation Union Transformation INFORMATICA TRANSFORMATION DON'T MISS OBIEE 11G Architecture Posted 10 days ago Oracle Business Intelligence Application Architect ☎ +91 9994883085 Search site New optimization platform cyberdyne.it Fast and user-friendly software for CAE applications SQL Server Courses veeam.com Learn SQL Server in 3 simple steps. Register to watch free videos! ► Questions and Answers ► Employee Payroll System ► Oracle SQL Queries Ads by Google ► SQL Interview Questions ► Employee Salary ► PL SQL Ads by Google HOME DATAWAREHOUSE ORACLE DATABASE OBIEE OBIA INFORMATICA DAC CONTACT
  • 2. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 2/11 12. Display the names of employees who are working in the company  for the past 5 years.   Select ename from emp where sysdate­hiredate>5*365; 13. Display the list of employees who have joined the company before 30th  June 90 after 31st dec 90.   Select * from emp where hiredate between ’30­Jun­1990’ and  ’31­dec­1990’; 14. Display current date.   Select sysdate from dual;  15. Display the list of users in your  database(using log table).   Select * from dba_users; 16. Display the names of all tables from the current user. Select * from tab; 17. Display the name of the Current user.   Show user; 18.  Display  the  names  of  employees  working  in  department  number  10  or  20  or  40 employees  working  as  clerks,salesman or analyst Select ename from emp where deptno in(10,20,40) or job in(‘clerks’,’salesman’,’Analyst’); 19. Display the names of employees whose name starts with alphabet S. Select ename from emp where ename like ‘S%’; 20. Display the names of employees whose name ends with alphabet S. Select ename from emp where ename like ‘%S’; 21. Display the names of employees whose name have second alphabet A in their names. Select ename from emp where ename like ‘_S%’; 22. Display the names of employees whose name is exactly five characters in length. Select ename from emp where length(ename)=5; (Or) Select ename from emp where ename like ‘_____’; 23. Display the names of employees who are not working as managers.  Select * from emp minus(Select * from emp where empno in(Select mgr from emp)); Or  Select * from emp e where empno not in (Select mgr from emp where mgr is not null); Or Select * from emp e where empno not in (Select mgr from emp where e.empno=mgr); 24. Display the names of employees who are not working as SALESMAN or CLERK or  ANALYST. Select ename from emp  where job not in(‘clerks’,’salesman’,’Analyst’); 25.  Display  all  rows  from  Emp  table  .The  System  should  wait  after  every  screen  full  of information.  Set pause on; 26.Display the total number of employees working in the company.   Select count(*) from emp; 27. Display the total salary being paid to all employees.   Select sum(sal)+sum(nvl(comm.,0)) form emp; 28. Display the maximum salary from emp table. Select max(sal ) from emp; 29. Display the minimum salary from emp table. Select min(sal) from emp; 30. Display the average salary from emp table. Top 130 SQL Interview Questions And Answers 1. Display the dept information from department table.   Select   *   from   dept; 2. Display the details of all employees  ... Normalization In SQL ((1NF, 2NF, 3NF, BCNF, 4NF, 5NF) Normalization: Normalization is step-by-step process of reducing complexity of an entity by distributing the attributes to di吀eren... Top 100 Informatica Interview Questions I have attended Informatica interview last week in wipro and couple of other companies, Question below I faced in those companies. 1... OBIEE 11G ARCHITECTURE WITH EXPLANATION Below diagram describes the standard logical architecture of Oracle business intelligence 11g system The entire system architecture is c... Unconnected Lookup Transformation In Informatica Passive Transformation Unlike Connected Transformation that receives input directly from the mapping pipeline, it receives input fr... OBIEE -Time Series In OBIEE Time Series in obiee Time series functions present the capability to evaluate and comparing business performance by curre... Informatica Sample Project Informatica sample project - 1 CareFirst – Blue Cross Blue Shield, Maryland (April 2009 – Current) Senior ETL Developer/Lead... Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P View Display Error (Error Code: nQSError: 43113, nQSError: 10058, nQSError: 27005, YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P) Error POPULAR POSTS
  • 3. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 3/11 Select avg(sal) from emp; 31. Display the maximum salary being paid to CLERK. Select max(sal ) from emp  where job=’clerk’; 32. Display the maximum salary being paid in dept no 20. Select max(sal ) from emp  where deptno=20; 33. Display the min salary being paid to any SALESMAN Select max(sal ) from emp  where job=’ SALESMAN’; 34. Display the average salary drawn by managers. Select avg(sal) from emp where job=’MANAGER’; 35. Display the total salary drawn by analyst working in dept no 40. Select sum(sal)+sum(nvl(comm,0)) from emp where deptno=40; 36.  Display  the  names  of  employees  in  order  of  salary  i.e.  the  name  of  the  employee earning  lowest salary should appear first. Select ename from emp order by sal; 37.  Display the names of employees in descending order of salary Select ename from emp order by sal desc; 38. Display the details from emp table in order of emp name. Select ename from emp order by ename; 39. Display empno,ename,deptno and sal .Sort the output first based on name and within name by deptno  and within deptno by sal;  Select * from emp order byename,deptno,sal; 40. Display the name of the employee along with their annual salary (sal*12).The name of the employee earning highest annual salary should appear first.   Select ename,12*(sal+nvl(comm,0)) Annual from emp order by  12*(sal+nvl(comm,0)) desc; 41.  Display  name  ,Sal,hra,pf,da,total  sal  for  each  employee.The  Output  should  be  in  the order of total sal, hra 15% of sal , da 10% of sal , pf 5% of sal total salary will be (sal*hra*da)­ pf. Select  ename,sal,sal*15/100  HRA,  SAL*5/100  pf,SAL*10/100  da,sal+sal*15/100­sal*5/100 Total_SALARY from emp 42. Display dept numbers and total number of employees within each group. Select deptno,count(*) from emp group by deptno; 43. Display the various jobs and total number of employees with  each job group. Select  job,count(*) from emp group by job; 44. Display department numbers and total salary for each department. Select deptno, sum(sal)  from emp group by deptno; 45. Display department numbers and maximum salary for each department. Select deptno, max(sal)  from emp group by deptno; 46. Display the various jobs and total salary for each job. Select  job, sum(sal)  from emp group by job; 47. Display each jobs along  with minimum sal being paid in each job group. Select  job,min(sal)  from emp group by job; 48.Display the department numbers with more than three employees  in each dept. Select deptno,count(*) from emp group by deptno having count(*)>3; 49.  Display  the  various  jobs  along  with  total  sal  for  each  of  the  jobs  where  total  sal  is greater than 40000 Select  job, sum(sal)  from emp group by job having sum(sal)>40000; Powered by Blogger. Get this widget » YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P) Error getting drill... Download Informatica 9.5 Software I seen many peoples searching to download informatica software. Just go to https://edelivery.oracle.com/EPD/Download/get_form? egroup_aru... OBIEE - Pivot Table View In OBIEE Pivot table Pivot table view to take row, column, section headings and swap them around to obtain di吀erent perspectives. You can ... HMAILSERVER INSTALLATION AND CONFIGURATION By Kashif Kashif M ­ 1 comment Parent child Hierarchy Vs Ragged Hierarchy in OBIEE 11g By Kashif Kashif M ­ 0 comment Ragged and skipped level Hierarchy in OBIEE 11g By Kashif Kashif M ­ 0 comment key performance indicators in obiee 11g By Kashif Kashif M ­ 0 comment Action Links and Actions in OBIEE 11g By Kashif Kashif M ­ 0 comment Steps to configure Write back in OBIEE 11g By Kashif Kashif M ­ 0 comment Agents in obiee 11g By Kashif Kashif M ­ 0 comment Top 50 BI Publisher Interview Questions By Kashif Kashif M ­ 0 comment
  • 4. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 4/11 50. Display the various jobs along with total number of employee in each job. The output should contain only those jobs with more than three employees.   Select job,count(*) from emp group by job having count(*)>3. 51. Display the name of emp who earns highest sal.   Select ename from emp where sal=(select max(sal) from emp); 52.  Display  the  employee  number  and  name  of  employee  working  as  CLERK  and  earning highest salary among CLERKS.     Select  empno,ename  from  emp  where  job=’CLERK’  and  sal=(select  max(sal)  from  emp  where job=’CLERK’); 53. Display the name of the salesman who earns a salary more than the highest salary of any clerk.   Select  ename  from  emp  where  job=’salesman’  and  sal>(select  max(sal)  from  emp  where job=’clerk’); 54.  Display  the  names  of  clerks  who  earn  salary  more  than  that  of  James  of  that  of  sal lesser than that of Scott. Select ename from emp where job=’clerk’ and sal<(select sal from emp where ename =’scott’) and sal>(select sal from emp where ename=’james’); 55.  Display  the  names  of  employees  who  earn  a  Sal  more  than  that  of  James  or  that  of salary greater than that of Scott.   Select ename from emp where sal<(select sal from emp where ename=’Scott’)And sal>(select sal from emp where ename=’James’); 56.    Display  the  names  of  employees  who  earn  highest  salary  in  their  respective departments.   Select * from emp e where sal =(select max(sal) form emp where deptno=e.deptno) 57.  Display the names of employees who earn highest salary in their respective job groups.   Select * from emp e where sal  in(select max(sal) form emp  group by having  e.job=job). 58. Display the employee names who are working in accountings dept.    Select ename from emp  where deptno=(select deptn0 from dept where dname=’ACCOUNTING’); (OR) Select ename from emp  where deptno IN(select deptn0 from dept where dname=’ACCOUNTING’); 59. Display the employee names who are working in CHICAGO.    Select ename from emp  where deptno=(select deptno from dept where loc=’CHICAGO’); 60.  Display  the  job  groups  having  total  salary  greater  than  the  maximum  salary  for managers. Select  job,sum(sal)  form  emp  group  by  job  having  sum(sal)>(select  max(sal)  from  emp  where job=’MANAGERS’; 61. Display the names of employee from department number 10 with salary greater than that of all employee working in other departments.   Select ename ,sal ,deptno from emp  e  where deptno=10 and sal>any(select sal from emp where e.deptno!=deptno); 62. Display the name of employees in Uppercase Select upper(ename) from emp; 63. Display the name of employees in Lower case Select lower(ename) from emp; 63. Display the name of employees in  Proper case Select initicap(ename) from emp; 64. Find out the length of your name using appropriate function.  Select length(‘India’)  from dual; 65. Display the length of all employees names.  Select sum( length(ename))  from emp;
  • 5. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 5/11 66. Display the name of the employee concatenate with empno    Select  ename|| empno from emp; (or) Select concat(ename,empno) from emp; 67.  Use  appropriate  function  and  extract  3  characters  staring  from  2  characters  from  the following string ‘Oracle’ i.e the output should be ‘rac’.   Select substr(‘oracle’,’2’3) from dual; 68.Find the first occurrence of character a from the following string ‘computer maintenance corporation’.   Select instr(‘computer maintenance corporation’,’a’,1,1) from dual; 69.  Replace  every  occurrence  of  alphabet  A  with  B  in  the  string  Allen’s(user  translate function). Select replace(‘Allens’,’A’,’b’) from dual; 70. Display the information from emp table. Wherever job ‘manager’ is found it should be displayed as boss(replace function).   Select empno,ename  replace(job,’MANAGER’,’Boss’) JOB from emp; 71. Display empno,ename,deptno from emp table .Instead of display department numbers display the related department name (use decode function).   Select e.empno ,e.ename ,d.dname from emp e ,dept d where e.deptno=d.deptno; 72. Display your age in days.   Select round(sysdate­to_date(’15­aug­1947’))from dual; 73. Display your age in months. Select floor (months_between(sysdate,’15­auf­1947’)) “age in months” from dual; 74. Display current date as 15th august Friday nineteen forty seven. Select to_char(sysdate,’date month day year’) from dual; 75.    Display  the  following  output  for  each  row  from  emp  table  as  ‘scott  has  joined  the company on Wednesday 13th august nineteen ninety’.  Select ename || ‘has joined the company on ‘ || to_char (hiredate,’day ddth month ear’) from emp; 76. Find the date of nearest Saturday after Current day.   Select  next_day (sysdate,’SATURDAY’ ) from dual; 77. Display current time.  Select to_char(Sysydate,’SATURDAY’) from dual; 78. Display the date three months before the current date.   Select add_months(sysdate,­3) from dual; 79. Display the common jobs from department number 10 and 20. Select job from emp where deptno=10 and  job in(select job from emp where deptno=20); (or) Select job from emp where deptno=10 intersect select job from emp where deptno=10); 80. Display the jobs found in department number 10 and 20 eliminate duplicate jobs.   Select distinct(job) from emp where deptno=10 and job in(select job from emp where deptno =20 (or) Select job from emp where deptno=10 intersect select job from emp where deptno=10); 81. Display the jobs which are unique to dept no 10.  Select job from emp where deptno=10 minus select job from emp where deptno!=10; (or) Select job from emp where deptno=10 and job not in (select job from emp  where deptno<>10); 82. List ename,job, annual sal,deptno,dname and grade who earn 30000 per year and who are not clerks,
  • 6. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 6/11 select  e.ename,e.job,  (e.sal+nvl(e.comm,0))*12,  e.deptno,d.dname,s.grade  from  emp  e,  salgrade s,  dept  d  where  e.sal  betweem  s.lsal    and  d.deptno  and  (e.sal+nvl(cmomm,0))*12>  30000  and e.job<> 'clerk'; 83. Find out the jon that was failed in the first half of 1983 and the same job that was failed during the same periond in 1984 Answer me. 84. Find out the all employees who joined the company before thiere manager select * from emp e where hiredate<(select hiredate from emp where empno=e.mgr); 85. List out the all employees by  name and number along with their manager's name and number also display 'No Manager' who has no manager. select e.empno,e.ename,m.empno manager,m.ename managername from emp e, emp m where e.mgr=m.empno from emp e, emp m where e,mgr=m.empno union select empno,ename,mgr,'No Manager' from emp where mgr is null; 86 Find out the employees who earned the highest Sal in each job typed sort in descending sal order. select * from emp e where sal=(select max(sal) from emp where job=e.job); 87.  Find out the employees who earned the min sal for there job in ascending order select * from emp e where sal=(select min(sal) from emp where job=e.job) order by sal; 88.Find out the most recently hired employees in each dept order by hire date. select * from emp e where hiredate=(select max(hiredate) from emp where deptno=e.deptno) order by hiredate; 89. Display ename,sal and deptno for each employee who earn a sal greater than the avg of their department order by deptno select  ename,sal,deptno  from  emp  e  where  sal  >(select  avg(sal)  from  emp  where deptno=e.deptno) order by deptno;; 90. Display the department where there are no employees; select deptno,dname from dept where deptno not in(select distinct(deptno) from emp); 91. Display the dept no with highest annual remuneration bill as compensation. select deptno,sum(sal) from emp group by deptno having sum(sal) = (select mac(sum(sal)) from emp group by deptno); 92.  In  which  year  did  most  people  join  the  company.  Display  the  year  and  number  of employees(hey try out) Select  max(aa)  from  (select  count(*)  aa,  to  _char(hiredate,'yyyy')  dd  from  emp  group  by to_char(hiredate,'yyyy')) 93. Display avg sal figure for the dept select deptno,avg(sal) from emp group by deptno; 94. write a query of display against the row of the most recently hired employee. Display ename hire date and column max date showing. select empno,hiredate from emp where hiredate=(select max (hiredate) from emp); 95. Display employees who can earn more than lowest sal in dept no 30 select * from emp where sal>(select min(sal) from deptno=30); 96. Find employees who can earn more than every employees in dept no 30 select * from emp where sal>(select max(sal) from emp where deptno=30); select * from emp where sal>all(select sal from emp where deptn0=30); 97. select dept name dept no and sum of sal break on deptno on dname; select e.deptno,d.dname,sal fdrom emp e, dept d where e.deptno=d.deptno order by e.deptno; 98. Find out avg sal and ave total remaninders for each job type
  • 7. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 7/11 99 . Find all dept's which have more than 3 employees. select deptno from emp group by deptno having count(*)>3; 100. Display the half of the enames in upper case and remaining lower case. select  concat(upper(substr(ename,0,lengh(ename)/2)),  lower (substr(ename,lengh(ename)/2+1,lenght(ename)))) from  emp; 101. select ename if ename exists more than once. select  distinct(ename)  from  emp  e  where  ename  in(select  ename  from  emp  where e.empno<>empno); 102. Display all enames in reverse order select ename from emp order by ename desc; 103. Display those employee whose joining of month and grade is equal. select  empno,ename  from  emp  e,salgrade  s  where  e.sal  between  s.losal  and  s.hisal  and to_char(hiredate,'mm')=grade; 104. Display those employee whose joining date is available in dept no select * from emp where to_char(hiredate,'dd')=deptno; 105. Display those employee name as follows A allen, B black select substr(ename,1,1)||' ' || ename from emp; 106. List out the employees ename,sal pf from emp select ename,sal,sal*15/100 pf from emp 107. Display RSPS from emp without using updating,inserting Create table emp with only one column empno create table emp(empno number(5)); 108. Add this column to emp table ename varchar(20) alter table emp add ename varchar2(20) not null; 109. opps I forgot to give the primary Key constrains. Add it now. Alter table emp add constrains emp_empno primary key(empno); 110.  now increase the length of ename column to 30 characters, alter table emp modify ename varchar2(30); 111. Add salary column to emp table. alter table emp add sal number(7,2); 112. I want to give a validation saying that sal cannot be greater 10,000(note give a name to this comumn) Alter table emp add constraints emp_sal_check check(sal<10000); 113. For the time begin I have decided that i will not impose this validation. My boss has agreed to pay more than 10,0000 Alter table emp disable constrainsts emp_sal_check; 114.  My  boss  has  changed  his  mind.  now  he  doesn't  want  to  pay  more  than  10,000.  so revoke that salary constraints Alter table emp enable constraints emp_sal_check; 115. Add column called a s mgr to your emp table. Alter table emp add mgr number(5); 116. Oh this column should be related to empno. give a command to add this constrains Alter table emp add constraint emp_mgr foreign key(empno); 117. Add dept no column to your emp table alter table emp add deptno number(3); 118. This dept no column should be related to deptno column to dept table alter table emp1 add constraints emp1_deptno foreign key(deptno) referemces dept(deptno);
  • 8. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 8/11 SQL Interview Questions NEWER POST OLDER POST 119. Create table called as new emp. using single command create this table as well as to get data into this table (use create table as) create table newemp as select * from emp; 120. create table called as newemp. The table should contains only empno,ename,dname Create  table  newemp  as  select  empno,ename,dname  from  emp  e,  dept  d  where e,deptno=d.deptno; 121. Delete the rows of employees who are working in the company for more than 3 years delete from emp where floor(sysdate­hiredaye)>2*365; 122. Provide a commission to employees who are not earning any commission. update emo set comm=300 where comm is null; 123. If any employees has commsision his commsision should be incremented by 10% of his salary update emp set comm=comm*10/100 where comm is not null; 124. Display employees name and department name for each employee select ename,dename from emp e,dept d where e.deptno=d.deptno 125. Display employee number, name and location of the department in which he is working select empno,ename, loc from emp e, dept d where e.deptno=d.deptno 126.Display ename, dname even if the employees in a particular department(use outer join) select ename , dname from emp e,dept d where e.deptno(+)=d.deptno; 127. Display employee name and his manager name select e.ename,m.ename from emp e, emp m where e.mgr=m.empno; 128. Display the department name along with total salary in each department select deptno,sum(sal) from emp group by deptno; 129.Display the department no and total number of employees in each department select deptno,count(*) from emp group by deptno; 130.  Alter  table  emp1  add  constrains  emp1_deptno  foreign  key(deptno)  references dept(deptno) delete from emp where job name in clerk Nerolac Excel Total nerolac.com Get Complete Weather Protection With Nerolac Excel Total New optimization platform cyberdyne.it Fast and user­friendly software for CAE applications 7 COMMENTS: check  this  also  this  website  also  having  a  lot  unique  sql  interview questions  sql interview questions  @ http://skillgun.com Reply KRISHNA MOHAN 22 May 2014 at 21:45
  • 9. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 9/11 ►  2016 (6) ►  2015 (48) Enter your comment... Comment as:  Select profile... Publish   Preview Create a Link Blog Archive In 12th Question is it > or < Reply XXX 20 February 2016 at 05:37 VERY USEFULL Reply Anonymous 3 April 2016 at 23:50 how to find Scott manager in employe table Reply UNKNOWN 18 April 2016 at 01:41 how to find Scott manager in employe table Reply PUNIT TIWARI 18 April 2016 at 01:42 good morning... I want to disply those employee who had worked consecutively 3 days more than 10 hrs.plz help me Reply RAJESH BARGODE 28 June 2016 at 22:13 write a sql query to find out employee name and location who is getting 1000<salary<3000  &  working  as  clerk,  salesman  or  manager  in  sales dept. Reply UNKNOWN 19 July 2016 at 00:53 LINKS TO THIS POST
  • 10. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 10/11 ►  November (42) ►  August (13) ►  June (41) OBIEE 11g Interview Questions from Virtusa To create a database in SQL Server 2008 Create a database user using SQL Server Management... MS SQL Server 2008 Installation Step by Step Scorecard in obiee 11g KPI in OBIEE 11g Top 130 SQL Interview Questions And Answers Cache Management in OBIEE 11g Multi user development environment (MUDE) in OBIEE... Catalog manager in OBIEE 11g KPI ­ (key performance indicator) in OBIEE 11g Ste... KPI watch list in OBIEE 11g Steps KPI Watch list OBIEE 11g Map viewer in OBIEE 11g ­ Part ­2 Map viewer in OBIEE 11g ­ Part 1 pdf export not working in obiee 11G Top 88 ODI Interview Questions ▼  May (17) ►  March (1) ►  February (55) ►  January (19) ▼  2014 (188) ►  2013 (247) ►  2012 (1) 1Z0­482 DUMPS 1Z0­525 DUMPS BI PUBLISHER INTERVIEW QUESTIONS DATA WAREHOUSE ADMINISTRATOR CONSOLE DATA WAREHOUSING E­BIZ R12 E­BIZ R12 INSTALLATION ESSBASE HMAILSERVER HYPERION HYPERION ESSBASE HYPERION ESSBASE INTERVIEW QUESTIONS HYPERION FINANCIAL MANAGEMENT INFORMATICA INFORMATICA INSTALLATION 9.6.1 INFORMATICA INTERVIEW QUESTION INFORMATICA ONLINE TRAINING INFORMATICA TRAINING INFORMATICA TRAINING CHENNAI JAVA LINUX NORMALIZATION IN ORACLE OBIA 11.1.1.7.1 OBIA 7.9.6.3 OBIA INSTALLATION OBIEE 10G OBIEE 11G OBIEE 11G DUMPS OBIEE 11G INTERVIEW QUESTIONS OBIEE 12C OBIEE CERTIFICATION OBIEE INTERVIEW QUESTION OBIEE PUBLISHER INTERVIEW QUESTIONS OBIEE TRAINING CHENNAI OBIEE TRAINING ONLINE ODI (ORACLE DATA INTEGRATOR) ODI 11G CERTIFICATION ODI DUMPS ORACLE ADMINISTRATOR ORACLE BUSINESS INTELLIGENCE APPLICATION ORACLE DATA INTEGRATOR ORACLE DATA INTEGRATOR INTERVIEW QUESTIONS FOR EXPERIENCE ORACLE DATABASE ORACLE DATABASE 12C INSTALLATION STEPS ORACLE DATABASE INSTALLATION IN LINUX 6 ORACLE E­BUSINESS R 12.3 ORACLE HYPERION PLANNING AND BUDGETING QUESTIONNAIRE ORACLE JOINS SCORECARD IN OBIEE 11G SQL INTERVIEW QUESTIONS SQL SERVER 2008 (18) (31)  (163) (46)  (33) (8) (130) (20)  Labels (2) (1) (1)  (1) (1) (1) (1) (1) (2) (1) (1) (2)  (1) (1) (1) (1) (1) (1) (1) (3) (2) (1) (6) (2) (1) (1) (1) (1) (2) (1) (2)  (3)  (2)  (1)  (2)  (2) (2) (1)  (2) (1) (1) (1) (2) (1) (1)
  • 11. 8/23/2016 Top 130 SQL Interview Questions And Answers http://mkashu.blogspot.in/2014/05/top­130­sql­interview­questions­and.html 11/11 Get this widget » SQL SERVER INSTALLATION WINSCP   different ways to use a Informatica Transformation? By Kashif Kashif M ­ 0 comment What are Ports in Informatica? By Kashif Kashif M ­ 0 comment What is a Transformation in Informatica? By Kashif Kashif M ­ 0 comment ISOLATION LEVELS IN OBIEE By Kashif Kashif M ­ 1 comment Changing Port Number in OBIEE 11G By Kashif Kashif M ­ 0 comment OBJECT LEVEL SECURITY IN OBIEE ON PRESENTATION LAYER By Kashif Kashif M ­ 0 comment RANK FUNCTION IN OBIEE 11G By Kashif Kashif M ­ 0 comment INCREASE ROW LIMITS IN TABLE PROPERTIES OF OBIEE By Kashif Kashif M ­ 0 comment Kashif M 132 have me in circles View all Add to circles Google+ Followers Followers (19) Follow Followers Be the first of your friends to like this Mkashu 375 likes Like Page Contact Us Like me on Facebook Home About Support Center Copyright © 2015 mkashu. Designed by Templateism