Oracle PL SQL interview question What is exception and how to handle exception in PLSQL

  Рет қаралды 66,370

Siva Academy

Siva Academy

Күн бұрын

Пікірлер
@abhijeetshinde6303
@abhijeetshinde6303 19 күн бұрын
Your teaching skill, examples are just amazing..... Your's Each and Every video is building concepts.... I always think why i haven't seen your series before 6 years😊❤....
@SivaAcademy
@SivaAcademy 19 күн бұрын
Thank you bro 🙏💐
@yasirkhan-em8ec
@yasirkhan-em8ec 6 жыл бұрын
Sir you are doing a great job ...would like to see a full series on the interview questions not just the definitions and theory but all the scenario based questions . Also how the interviewer is switching questions from our answers. Thanks
@SivaAcademy
@SivaAcademy 6 жыл бұрын
@Yasir, Thanks for your comment, For every question, I am trying to show give maximum information ( Theroy + Demo ), and will try to add more real time scenarios more in upcoming videos. Will add the "switching questions" part also wherever applicable from next video. stay tuned.
@chavannamdev1959
@chavannamdev1959 3 жыл бұрын
@@SivaAcademy thank you sir
@jebba555
@jebba555 5 жыл бұрын
Thank you Bro....
@sujaa1000
@sujaa1000 5 жыл бұрын
Thank you Siva, the tutorial was very helpful. Regards, Sujaa
@SivaAcademy
@SivaAcademy 5 жыл бұрын
Welcome :-)
@learnwithrajkumar252
@learnwithrajkumar252 5 жыл бұрын
Ur teaching is awesome
@SivaAcademy
@SivaAcademy 5 жыл бұрын
🙏 for your comment bro
@parulverma3888
@parulverma3888 5 жыл бұрын
Hi Siva, your teaching method is really good. Can you please upload videos on partitioning in Oracle.
@SivaAcademy
@SivaAcademy 5 жыл бұрын
Sure, please stay tuned for more videos
@gsraj511
@gsraj511 2 жыл бұрын
Thanks Siva...
@SivaAcademy
@SivaAcademy 2 жыл бұрын
Welcome George
@sarikabhagwat6498
@sarikabhagwat6498 3 жыл бұрын
Hi siva, All videos are very helpful for interviews purpose. Please give me the query how to sum negative numbers in one row and and positive numbers in second row. Thanks In advance
@SivaAcademy
@SivaAcademy 3 жыл бұрын
Thank you, pls find the query create table t1 (col1 number); insert into t1 values(1); insert into t1 values(2); insert into t1 values(3); insert into t1 values(-4); insert into t1 values(-5); insert into t1 values(-6); select decode(sign(col1),1,'Positive','Negative'),sum(col1) from t1 group by sign(col1);
@sarikabhagwat6498
@sarikabhagwat6498 3 жыл бұрын
Thank you so much for quick response
@sandeeplakkakula6279
@sandeeplakkakula6279 5 жыл бұрын
Thank you so much
@SivaAcademy
@SivaAcademy 5 жыл бұрын
Welcome bro 🙏
@vigneshv6603
@vigneshv6603 5 жыл бұрын
Sir your videos are very use full for me. Can u upload video for automatic email using trigger concept.? If u uploaded It's very help full for me
@SivaAcademy
@SivaAcademy 5 жыл бұрын
@Vignesh, sure I will post a video soon covering mailing features in PLSQL.
@vigneshv6603
@vigneshv6603 5 жыл бұрын
@@SivaAcademy thanks
@csekathir1
@csekathir1 5 жыл бұрын
Great sir
@SivaAcademy
@SivaAcademy 5 жыл бұрын
🙏 Thank you
@Abhi-yp9um
@Abhi-yp9um Жыл бұрын
Please provide mcqs also
@radhachikkarangappa4132
@radhachikkarangappa4132 3 жыл бұрын
How to handle exception in procedure or function? Can we add exception block in proc/functions?
@SivaAcademy
@SivaAcademy 3 жыл бұрын
Yes, we can have exception across all plsql block
@suyogthakare828
@suyogthakare828 5 жыл бұрын
Sir can we make all the key are composite key. Or only make primary or unique as a composite key
@SivaAcademy
@SivaAcademy 5 жыл бұрын
Any columns can be added as part of composite key, it doesn't have to be unique or pk key column
@suyogthakare828
@suyogthakare828 5 жыл бұрын
Sir i mean to say which constraint we make as composite key
@sandeeplakkakula4301
@sandeeplakkakula4301 5 жыл бұрын
Shiva can you please explain how How to continue execution of statements after an exception
@SivaAcademy
@SivaAcademy 5 жыл бұрын
@sandeep, you can handle exception for each statement, so that after execution and handling of exception from each statement, it continues with next statement. will explain with an example soon, please stay tuned.
@dheerajvarthi4657
@dheerajvarthi4657 2 жыл бұрын
Can we write a function without parameters ?
@SivaAcademy
@SivaAcademy 2 жыл бұрын
Yes we can
@vaniganapathi830
@vaniganapathi830 2 жыл бұрын
What is the use of set serveroutput on
@SivaAcademy
@SivaAcademy 2 жыл бұрын
to enable the display of buffer values in output screen
@manikandanr1682
@manikandanr1682 Жыл бұрын
How to apply fresher sql developer
@lekhyadivya2626
@lekhyadivya2626 4 жыл бұрын
In case we get an error in procedure but we have to ignore the error and continue the dml how can we do that? Please let me know
@SivaAcademy
@SivaAcademy 4 жыл бұрын
Handel the error only for that dml statement, after handling the error you can continue with rest of the statements
@lekhyadivya2626
@lekhyadivya2626 4 жыл бұрын
@@SivaAcademy in procedure we have return insert statement which inserts 100 rows, after inserting 50 rows there was some data error on 51st row but still we should ignore and continue from 52nd row insertion. This was one interview question.please let me knoe
@SivaAcademy
@SivaAcademy 4 жыл бұрын
You can check of DML error logging tables, this will capture the errors,also proceed with inserting the subsequent rows
@lekhyadivya2626
@lekhyadivya2626 4 жыл бұрын
@@SivaAcademy thank you
@patrikmelichercik7709
@patrikmelichercik7709 4 жыл бұрын
Hi Siva, i have seen many times that there is keyword IS or AS in the definition of Pl/SQL blocks of a function ,store procedure etc. is there any difference? thx
@LIKHITH_MS
@LIKHITH_MS 5 жыл бұрын
Sir please make video an exception propagation
@SivaAcademy
@SivaAcademy 5 жыл бұрын
@Likthith, sure, Please stay tuned. Will post on exception propagation soon.
@prathameshkhot5717
@prathameshkhot5717 3 жыл бұрын
What will happen if I write when others first and the no data found excpetion after that. Which one will get fire if we don't have data ? When others or when no data found
@SivaAcademy
@SivaAcademy 3 жыл бұрын
When others should be the last cluase, otherwise you will get compilation error
@vivekkhurpe1005
@vivekkhurpe1005 4 жыл бұрын
Create video for error 38824
Oracle PL SQL interview question What are the types of exception
10:21
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
Oracle PLSQL - Exception Handling
28:56
Ora Trainings
Рет қаралды 3,2 М.
Oracle PL SQL interview question | SQL to Delete duplicate records
17:27
Oracle PL/SQL Tutorial Day -25 ✅ Exception handling in PLSQL✅
24:16
oracle interview question oracle index and types of index
14:41
Siva Academy
Рет қаралды 104 М.
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН