Oracle Interview Question - Can we use OUT and INOUT parameter in function? List of all the SQL and PLSQL interview questions @ sivakacademy.b...
Пікірлер: 117
@anpsir96525 жыл бұрын
You are simply amazing. Your communication is also awesome
@SivaAcademy5 жыл бұрын
It's my pleasure,Thank you so much :-)
@ashokb15565 жыл бұрын
what a explanation Siva Academy just phenomenal....
@SivaAcademy5 жыл бұрын
🙏🙏🙏🙏
@WorldEye885 жыл бұрын
Very useful yet dense topic my friend. I like more the part where you show the collection and ref cursor use. That is clever. Thank you.
@SivaAcademy5 жыл бұрын
Welcome 🙏🙏
@vijeyatanag86855 жыл бұрын
Super job ..very detailed explanations thanks Siva keep the knowledge flow going on ...I learn something new 😀
@dhananjaynandgaonkar2 жыл бұрын
lots of love hats off to you
@SivaAcademy2 жыл бұрын
🙏🙏🙏💐Welcome bro
@pankajkharade69364 жыл бұрын
Best teaching method with live examples
@SivaAcademy4 жыл бұрын
Thanks bro 🙏
@thiru601mbt62 жыл бұрын
Great job...@ Your inputs are making us more confidents to learn more. Once again thanks
@SivaAcademy2 жыл бұрын
My pleasure bro
@sucharurani68344 жыл бұрын
The explanation is really amazing and too much usefull ..Wants to learn in depth of performance tuning ,partition , algorithm of join in explan plan ,hints , optimiser ...Wants to know how it's happening internally ..
@SivaAcademy4 жыл бұрын
Sure, please stay tuned for more in depth videos
@Tipsypie16 жыл бұрын
great work sir. Really informative.
@SivaAcademy6 жыл бұрын
Thanks Shubhra Pandey :-)
@Tipsypie16 жыл бұрын
@@SivaAcademy Can we have a concise and clear vdo like this one about Performance tuning.
@SivaAcademy6 жыл бұрын
@Shubhra Pandey, Sure, I am planning to start a new series on PLSQL and SQL performance tuning concepts. The scope of tuning concepts and methods are large., I will try my level best to make the learning easy and effective as much as possible. Stay tuned for tuning related videos... Thanks , Siva.
@venuchindam60625 жыл бұрын
Knowledge is DEVINE... 💐
@SivaAcademy5 жыл бұрын
🙏🙏🙏
@VermontCA18643 жыл бұрын
Great job Siva!👍👍Learned something new today. Thank you.
@SivaAcademy3 жыл бұрын
My pleasure bro
@sivapriyaj79552 жыл бұрын
Excellent explanation that helps lot and easy to understand
@SivaAcademy2 жыл бұрын
Welcome
@niranjandhavalikar5 жыл бұрын
Thanks Siva for e.g. of INOUT parameter in function .
@SivaAcademy5 жыл бұрын
Welcome bro 🙏
@gokulkannan940711 ай бұрын
Thank you for this session; it was very informative.
@SivaAcademy11 ай бұрын
Welcome bro
@omm1393 жыл бұрын
Really excellent explanation. Super Sir. Thanks so much
@SivaAcademy3 жыл бұрын
Welcome bro
@krishchait61064 жыл бұрын
Lv_namelist(lv_namelist.last() )= i... Can anyone explain this line? I know lv_namelist is a collection variable and lv_namelist.last means last value. But I am not able to gather the logic here... Please explain
@humayunhimu6045 Жыл бұрын
wonderful explanation
@SatyendraSingh-ul5iq3 жыл бұрын
there is a 1 single record in a table but i want to populate the data 10 times. Please answer
@cambotourtech92374 жыл бұрын
Thank for your sharing.
@SivaAcademy4 жыл бұрын
Welcome
@vinithab48288 ай бұрын
Just awesome
@manjunathreddy34844 жыл бұрын
Thanks for your class about function! What is table function or Pipeline function Most of the interviews they ask about these function
@SivaAcademy4 жыл бұрын
sure, please stay tuned, its already part of my upcoming list, will try to post soon.
@manjunathreddy34844 жыл бұрын
Thanks for your reply! I am waiting for your video.. Please explain where we can use this function in Realtime....
@poojagonla78243 жыл бұрын
thankyou for examples .. worth watching
@SivaAcademy3 жыл бұрын
Thank you
@shivpriyatate8274 жыл бұрын
Good examples.
@SivaAcademy4 жыл бұрын
Thank you
@shubhamsatyam33504 жыл бұрын
Sir i have a question related to sql please consider a scenario:- I have a table of employees working in different departments say emplyee E1 works in dept A,B,C,D,E,F E2 works in C,D,E,F E3 works in A,B,C Expected output is :- Return the details of employees only if that employee works in dept C and B For more clearity:- Since E1 works in dept C and B as one of their departments the query should give all the details of E1 including his other department details. Similarly E2 works in C dept but not in B so E2 data should not be returned. E3 works in both depts B and C so all his dept details should be returned.
@SivaAcademy4 жыл бұрын
Hi Shubhan, Whats the structure of table data? can you give me the sample data in row wise format?
@shubhamsatyam33504 жыл бұрын
Sample data:- Emp_id Emp_name Dept_no Joining_date 1 , scott,A,10-may-2018 1,scott,B,20-June-2018 1, scott,C,20-August-2019 1,scott,D,19-June-2020 2,tiger,C,12-May-2018 2,tiger,B,10-January-2017 2,tiger,D,19-September-2019 2,tiger,E,13-March-2019 2,tiger,F,10-October-2020 3,Sam,A,19-January-2016 3,Sam,C,09-October-2018 3,Sam,B,17-December-2019 3,Sam,D,01-June-2019 4, John,A,10-may-2018 4, John,E,31-March-2019 4, John,F,16-may-2016 4, John,G,12-March-2018 if the employee works in departments B and C, return all the department details related to that employee. Expected output:- 1, scott,A,10-may-2018 1,scott,B,20-June-2018 1, scott,C,20-August-2019 1,scott,D,19-June-2020 2,tiger,C,12-May-2018 2,tiger,B,10-January-2017 2,tiger,D,19-September-2019 2,tiger,E,13-March-2019 2,tiger,F,10-October-2020 3,Sam,A,19-January-2016 3,Sam,C,09-October-2018 3,Sam,B,17-December-2019 3,Sam,D,01-June-2019
@sameerahmad75924 жыл бұрын
Excellent Sir...
@SivaAcademy4 жыл бұрын
Thank you
@lakshman12163 жыл бұрын
hi can we pass a parameters to running program in plsql? is it possible.
@rohitkumar-bf9xe3 жыл бұрын
please make a video on to create a function to take a number and display its square using inout ...
@anjaliasia58534 жыл бұрын
Thanks, you are doing good job.
@SivaAcademy4 жыл бұрын
Thank you 🙏
@sankalpsaxena31954 жыл бұрын
Thanks Siva ..Nicely explained
@SivaAcademy4 жыл бұрын
Welcome bro 🙏
@SreeramReddyB5 жыл бұрын
What if I use into keyword in select statement to store value of function return and use variables to get out parameter values ? Declare Outvar number; Retvar number; Begin Select fnsqcu(2,outvar) into retvar from dual; End Will this work ?
@tcguna5 жыл бұрын
He covered this question @ 3:05.. Have a look bro.
@SAK-y6j5 жыл бұрын
Excellent!!
@amitajhariya95215 жыл бұрын
Hello sir , thanks you for making pl SQL learning videos it's really help. The please work on audio quality of video. Thank you so much.
@SivaAcademy5 жыл бұрын
@Amita, thanks for your comment, yeah in recent videos I have corrected little, please let me know if it's quality is still not good
@amitajhariya95215 жыл бұрын
@@SivaAcademy The quality is good now😊
@saiswaroop35702 жыл бұрын
Sir can we multiple records using functions using record data type, and can bulk collect used with records?
@bharathipandian453 жыл бұрын
Siva, need unix and sql plsqk production support interview questions
@shelkevikram5 жыл бұрын
You are awesome.
@SivaAcademy5 жыл бұрын
Thank you so much :-)
@anjaliasia58534 жыл бұрын
Can you please explain about explain plan in query execution.
@SivaAcademy4 жыл бұрын
Sure please stay tuned for performing tuning videos, will explain there
@bharathipandian455 жыл бұрын
Hi siva, what is type? Why we use it for?
@ManojKumar-il8vt5 жыл бұрын
Hi sir can u tell me can we call the dml & ddl statement inside the functions if yes then how & why it's not a gud practice to call dml inside function. Also share the diff between function & procedure ??
@SivaAcademy5 жыл бұрын
Hi Majon, yes you can call, already posted on the same question, Please look into below mentioned videos kzbin.info/www/bejne/r6q1fmCmZ92ZkMU kzbin.info/www/bejne/eZzOepWpnsRmmcU
@abhijitmane9949 Жыл бұрын
Great , Thanks :)
@SivaAcademy Жыл бұрын
Thank you
@debayannew50833 жыл бұрын
why we can't call any function with OUT/INOUT parameter from select statements??
@venkatasubbareddy74073 жыл бұрын
1.can we call a procedure inside a function? 2.can function have DML statements?
@SivaAcademy3 жыл бұрын
Yes, you can call procedure from function, also you can have DML statements in function also, however there are few restrictions, please look into this video kzbin.info/www/bejne/r6q1fmCmZ92ZkMU
@ramkumarj42163 жыл бұрын
Can you please provide the details of other sys objects like ODCIVARCHAR2LIST that can be used in for storing data temporarily.
@venkatasubbareddy74073 жыл бұрын
how to add primary key constraint for a column which has already duplicate values?
@SivaAcademy3 жыл бұрын
Please look into this video kzbin.info/www/bejne/iXfPnoihbq6InZo
@ankursrivastava41644 жыл бұрын
Hello Siva,Thanks for all your videos.I have one confusion if possible can you please clear that? While explaining about return statement you return collection variable via return statement ,I did not understand the use of extend and last method there ?
@SivaAcademy4 жыл бұрын
Extend method is to allocate memory, and last method to get the subscript of last element
@vilasgaikwad41416 жыл бұрын
Can you please make videos on performance tuning interview questions
@SivaAcademy6 жыл бұрын
@Vilas, Thanks for your comment, Sure, Please stay tuned for performance related videos, will be posting soon.
@TinyTuber314 жыл бұрын
Sir a video on oracle architecture please would be appreciated......mostly asked question in interviews....u explain so nicely....really helped me
@shankar-224403 жыл бұрын
Sir If we want to prepare the interview questions means your website have a 33 questions that is enough or either we want to study the 70 questions!!!!
@SivaAcademy3 жыл бұрын
Hi Shankar, all questions are important, I just updated the link, thanks for letting me know.
@manishmanveer88673 жыл бұрын
find out the 3rd highest salary from table for each years fallowed by each department
@manoharreddybusupalli4771 Жыл бұрын
Hi sir, please provide oracle installation link and installation process video
@TinyTuber314 жыл бұрын
can we have multiple out parameters in a function sir??
@SivaAcademy4 жыл бұрын
yes, you can have multiple out and INOUT parameters too
@Ganeshay-092 жыл бұрын
siva sir ... can we call function into procedure
@SivaAcademy2 жыл бұрын
Yes Ganesh
@hello24395 жыл бұрын
then why we use procedure,when both proc and func gives multiple values?
@SivaAcademy5 жыл бұрын
Though function return/OUT more than one more than one values, there are restrictions using such function sql.
@manochoco234 жыл бұрын
I understood only key learning from this video. 😅
@mahendrababu55165 жыл бұрын
Can we pass the result sets as a collection to the java/dot net application from a function? Generally we will do it using sys_refcursor, If yes what is the best way among the two and what is the difference bw two methods?
@SivaAcademy5 жыл бұрын
@Mahendra, yes, you can pass the collection to java, will post a separate video on how to pass as parameter.
@mahendrababu55165 жыл бұрын
Siva Academy If yes which is the best way sys_refcursor or collection and why
@Ganeshay-093 жыл бұрын
Plzz increase ur voice in all vdos.. Plz explain loudly..
@SivaAcademy3 жыл бұрын
Yes bro, hopefully recent videos are better
@ManojKumar-il8vt6 жыл бұрын
Nice
@SivaAcademy6 жыл бұрын
Thanks Manoj
@gautam26trivedi5 жыл бұрын
hi shiva can I get yours videos on regular expressions
@SivaAcademy5 жыл бұрын
Hi Gautam, I am yet to post on regular expression, please stay tuned
@gautam26trivedi5 жыл бұрын
@@SivaAcademy please do it fast sir because waiting from long time.
@SivaAcademy5 жыл бұрын
Sure bro 👍
@shalinis62992 жыл бұрын
Hi sir, Can you make the video for UTL_FILE Concept in Plsql.
@SivaAcademy2 жыл бұрын
Sure, please stay tuned
@KarthikRampur-ql2td5 жыл бұрын
Does with clause support 12c only??
@SivaAcademy5 жыл бұрын
@Karthik, With clause is available from previous releases of oracle itself, however the "FUNCTION" support as part of with clause is available from 12c only, you can look into this video for more information about 12c with clause feature, kzbin.info/www/bejne/qHvYg4qsbNBgsNE Thanks, Siva
@gokulkannan940711 ай бұрын
PLS-00382: expression is of wrong type
@kristipatisurya26044 жыл бұрын
WE WANT TO GENERATE SEQUENCE NUMBERS USING STORED FUNCTION AND WE CALL FUNCTION IN INSERT STATEMENT IT WILL AUTOGENERATE THE UNIQUE IDS PLZ DO A VIDEO ON THIS CONCEPT
@csekathir15 жыл бұрын
SQL query tuning step by step sir
@SivaAcademy5 жыл бұрын
@kathir, sure. Will post as part of tuning video series