In Exception handling if we are using the when others first then what happens . whether it will show the compiler error
2 12700i deleted 4 records form the table.after i have applied commit .now i want to get back those records.how?
7 13171Table1- have two column filename data AFGDFD-20112011 hi how r u bsdasd-23042011 name shoud be in bold Now i want output like filename data AFGDFD hi how r u bsdasd name shoud be in bold Kindly answer this
3 5585Table1- have two column filename data AFGDFD-20112011 hi how r u bsdasd-23042011 name shoud be in bold Now i want output like filename data AFGDFD hi how r u bsdasd name shoud be in bold Kindly answer this
2 5387You have one employee table having 3 entries emp_id, Mgr_id and salary. Mgr_id is also referencing emp_id. so now find out the emp_id which are having the second highest salary, under a particular manager.
3 8879create or replace procedure show_tab_rec ( P_tab VARCHAR2 )
IS
cmd varchar2(50);
begin
cmd := 'select *
from '|| P_tab;
for int in ( execute immediate cmd )
loop
dbms_output.put_line ( int.ename||' '||int.deptno);
end loop;
end;
when i m compling this procedure i m getting this error
PLS-00103: Encountered the symbol "IMMEDIATE" when expecting
one
of the following:
. ( ) , * @ % & | = - + < / > at in is mod remainder not
range rem => ..
what is the difference between joins and set operators.i am always confusing with two,can u pls kindly help me .
5 19727Post New HCL Oracle General Interview Questions
Name some important interfaces of Hibernate framework?
What does this line do? @Hostbinding(‘[class.valid]’) is valid?
Why javascript is called lightweight language?
What is mean by working capital?
What are the Alerts & Subscriptions?
How is data send by ip layer?
Which css framework is best?
In column, the table view is sap bw sid concept moving to erp?
why do u choose MBA after B.Sc.
How do I remove win32 trojan virus?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
What is the difference between Outsourced Testing and Crowdsourced Testing
How to reaname table name without using sp_Rename in sql server..?
What is report server project?
Why hashmap is faster than hashset?