Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


difference between imlicit cursor and explicit cursor ?

Answers were Sorted based on User's Feedback



difference between imlicit cursor and explicit cursor ?..

Answer / vsubbaiah

Implicit : Every SQL Statement performed as implicit cursor. Ex: Select * from Emp where empno = 7839 This is query automatically open the cursor and fetch the record getting the output of that record.

Explicit : In PLSql Block in we declare on declaration section we declare with name and select statement. In executable block we call the cursor and fetch the records more the one. For Ex : Declare
cursor c1 is select * from emp
getemp c1%rowtype;
begin
open c1;
loop
fetch c1 into getemp;
dbms_output.put_line (c1.col list);
end loop;
close c1;
end; This is explicit cursor

Is This Answer Correct ?    4 Yes 0 No

difference between imlicit cursor and explicit cursor ?..

Answer / vipin kumar ( m.c.a)

1. Implicit cursor:- means predefine cursor. Its attributes
starting with the sign % like that %ROWCOUNT, %ISOPEN etc.
2. Explicit cursor:- means created by the user or
programmer. Its attributes starting with the cursor name
then % sign lick that cursorname%ROWCOUNT, cursorname%ISOPEN
etc.

Is This Answer Correct ?    0 Yes 0 No

difference between imlicit cursor and explicit cursor ?..

Answer / harsha vardhan reddy

implicit: it is generating by sql server.

explicit: it is generating by user.

Is This Answer Correct ?    0 Yes 0 No

difference between imlicit cursor and explicit cursor ?..

Answer / kiran

implicit generated by oracle server

explicit manually created by programmer to store the result
in the temporary space

Is This Answer Correct ?    0 Yes 0 No

difference between imlicit cursor and explicit cursor ?..

Answer / abhishek.421

implicit cursor is a memory space created by oracle..and
explicit cursor is named memory area

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle General Interview Questions

When system tablespace is created?

0 Answers  


How to display row numbers with the records?

0 Answers  


What are the different types of trigger and explain its various uses and functions?

0 Answers  


How to define and use table alias names in oracle?

0 Answers  


Can we connect to ORACLE db using Windows Authentication?

0 Answers   MCN Solutions,


Give the different types of rollback segments.

0 Answers  


What is a Tablespace?

5 Answers  


What is an oracle table?

0 Answers  


Hi all, Can any one give answer for this question. Suppose im having employee table with fields, eno, ename, dept, address1, address2, address3. In address field employee can fill only address1 or address2 or address3... at a time he can fill three address fields. now i want all employee names who filled only one address field.. Plz its urjent can any one give querry.. Thanks in advance.

4 Answers   JPMorgan Chase,


How do I reset a sequence in oracle?

0 Answers  


What are the oracle differences between nvl and coalesce

0 Answers  


Explain a data segment?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1809)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)