0:15 - What is a Cursor 1:36 - As Expected Scalar Variable is not able to, or not Capable of Holding more than 1 value 1:46 - But our Expectation is 2:47 - As you can see the code 3:12 - Details about Cursor 4:30 - Cursor is nothing but a memory location a pointer to a m/m location 4:39 - From an Interview Point of View, Cursor is nothing but a Pointer to a m/m location 5:11 - Any Cursor Statement is executed through Oracle Only 5:58 - There are few types of Named Cursor 8:06 - Explicit Cursors
@jayasreetummala51234 жыл бұрын
Most underrated video ❤️great job
@SivaAcademy4 жыл бұрын
Glad you think so!
@sampathkumar83923 жыл бұрын
You are GOD of Oracle
@satvinderbhangu3614 жыл бұрын
Thanks you did help me . I have questions could tell me how to create procedure using cursor with using nested table array.
@sridharandavarapu21194 жыл бұрын
I have also same doubt
@dattatrayarathi1014 Жыл бұрын
Thank you for sharing the video in details.
@SivaAcademy Жыл бұрын
Welcome bro
@mkr73454 жыл бұрын
Implicit cursor is a pointer to a memory location maintained and managed by sql or plsql engine .
@kumar-bi1to2 жыл бұрын
Explained very well. Thank you
@SivaAcademy2 жыл бұрын
You are welcome!
@sujaa10005 жыл бұрын
Siva, Thank you again. Sujaa
@SivaAcademy4 жыл бұрын
Welcome 🙏🙏 thanks for all your comments 🙏🙏
@mollamainuddin64853 жыл бұрын
thank you very much, spacially for the last example;
@SivaAcademy3 жыл бұрын
You are welcome!
@pasha66443 жыл бұрын
Very clear cut information 👍👍
@SivaAcademy3 жыл бұрын
Thank you
@dn94165 жыл бұрын
Very nice explanation ,thank you
@SivaAcademy5 жыл бұрын
Thank you
@mohitkumar18542 жыл бұрын
Thanks A lot SIr ..:)
@SivaAcademy2 жыл бұрын
Welcome bro
@vikasmishra42963 жыл бұрын
Please make a detailed video on how to load billion of records in Oracle table in most efficient way and check whether my data loaded successfully or not. Please explain different method .. Also explain load data from file like Excel. Also explain billion of record dml changes..
@sudarsanr872 жыл бұрын
good and nice video
@SivaAcademy2 жыл бұрын
Thank you Sudarshan 👍💐
@SujitKumar-wg7sz4 жыл бұрын
How to capture cursor column value in exception section
@SnehaYadogi10 ай бұрын
Thanks a lot
@pulluriphani11855 жыл бұрын
Sir really excellent explanation..
@SivaAcademy5 жыл бұрын
Welcome 🙏
@jithendrareddyambati39853 жыл бұрын
Hi sir, no need of writing extend() here when storing the values in collection variable from select statement?
@Karsh.y3 жыл бұрын
Hi Siva , could you please ans this question
@akshaybhong28984 жыл бұрын
Sir please make some videos on oracle forms also...will get better understanding ...because the you way teach is very good...
@SivaAcademy4 жыл бұрын
Hi Akshay, I have not worked in forms and reports, however I am planning to post on oracle APEX, conceptually somewhat similar to forms and reports, please stay tuned.
@akshaybhong28984 жыл бұрын
@@SivaAcademy okay sir ... I mailed you to sir about topics please check mail sir..
@guhananbalagan37793 жыл бұрын
Hi Siva could you please share your idea about cursor expression
@arunrocketz5 жыл бұрын
Awesome explanation sir
@SivaAcademy5 жыл бұрын
Thank you so much :-)
@dineshkumar-vp9dm5 жыл бұрын
What difference between the for and forall clause
@kattelakarim96652 жыл бұрын
Hi Sir! Can you please explain what is the benefits of with hold option in cursors Recently I got one interview question about it. Thank you!
@mlipina53245 жыл бұрын
Sir ! very nice explanation on cursor intro . please upload some more examples of bulk collect uses with some real examples , and the cases where we are switching to bulk collect and ref and sysref cursors .
@SivaAcademy5 жыл бұрын
@Lipina, Sure, i will post as part of performance related videos.Please stay tuned.
@SatyendraSingh-ul5iq4 жыл бұрын
Thanks shiva. Can we increase cursor memory in run time of cursor
@bharathipandian452 жыл бұрын
Can you please explain unix commands as well
@SivaAcademy2 жыл бұрын
Sure, please stay tuned
@bharathipandian452 жыл бұрын
, waiting for itvshiva I am the production support engineer
@abhilashk25344 жыл бұрын
Please mention sys ref cursor.. thanks..
@ganeshkamble27375 жыл бұрын
Excellent
@SivaAcademy5 жыл бұрын
@ganesh, thanks bro 🙏
@dineshkumar-vp9dm5 жыл бұрын
What is difference between normal procedure and standard procedure pls share answer
@durgakumarsunkara975 жыл бұрын
nice explanation sir really ,more examples of bulk collect uses with some real examples upload sir...
@SivaAcademy5 жыл бұрын
@durgakumar, Thank you 🙏... Sure, will be starting PLSQL performance tuning soon, will post as part of tuning video series.
@durgakumarsunkara975 жыл бұрын
Tq sir,can you provide another video's about defferable ,non defferable and initiall y defferable .
@slyroy75624 жыл бұрын
Hi sir ... (Cursors) Can we use more that one column in select statement?
@SivaAcademy4 жыл бұрын
Yes you can use
@dattakor15485 жыл бұрын
Superb...
@SivaAcademy5 жыл бұрын
Thank you :-)
@antonybabu52052 жыл бұрын
Sir! How can i write plsql programs for flames concept
@SreenivasBORRA-kx3hb Жыл бұрын
Hi sir I have recently faced a question that we need to write a cursor to calculate sum of salary without using SUM function. Could pls help on this question??
@bmanikandan7017 сағат бұрын
set serveroutput on; declare cursor c1 is select ammount from amaz where ammount is not null; v1 amaz%rowtype; t1 c1%rowtype; r number; begin r:=0; open c1; loop fetch c1 into t1; exit when c1%notfound; r := r+t1.ammount; dbms_output.put_line(r); end loop; close c1; end;
@gobirajendiran2635 жыл бұрын
Super..
@SivaAcademy5 жыл бұрын
@GOBI, Thanks for your comments 🙏🙏
@atul.thorat5 жыл бұрын
Helpful
@SivaAcademy5 жыл бұрын
Thanks
@yugandhartammineni19914 жыл бұрын
Getting PLS-00394 : wrong number of values INTO list of fetch statement error
@atul.thorat5 жыл бұрын
please clear cluster index and non cluster index use in plsql?
@SivaAcademy5 жыл бұрын
Sure, Please stay tuned.
@shumailasami22775 жыл бұрын
Please explain cluster index and non cluster index
@SivaAcademy5 жыл бұрын
Sure, will post on cluster and non cluster index.
@Sri_Gayatri_13 жыл бұрын
Sir meru full course ki money entha
@tanushreechatterjee37665 жыл бұрын
Sir, what is the difference between a cursor and select * statement?
@SivaAcademy5 жыл бұрын
Technical both are same,one will get executed as implict cursor and another one is explicit cursor