41. Explain autonomous transaction. An autonomous transaction is an independent transaction of the main or parent transaction. It is not nested if it is started by another transaction. There are …
Interview Questions and Answers For Freshers
- Interview Questions and AnswersPL/SQLTechnical Interview Questions and Answers
- Interview Questions and AnswersPL/SQLTechnical Interview Questions and Answers
PL/SQL Interview Questions and Answers Part-4
by Sby S31. How would you reference column values BEFORE and AFTER you have inserted and deleted triggers? Using the keyword “new.column name”, the triggers can reference column values by new collection. …
- Interview Questions and AnswersPL/SQLTechnical Interview Questions and Answers
PL/SQL Interview Questions and Answers Part-3
by Sby S21. Show the two PL/SQL cursor exceptions. Cursor_Already_Open Invaid_cursor 22. What operators deal with NULL? NVL converts NULL to another specified value.
- Interview Questions and AnswersPL/SQLTechnical Interview Questions and Answers
PL/SQL Interview Questions and Answers Part-2
by Sby S11. What are the rules to be applied to NULLs whilst doing comparisons? 1) NULL is never TRUE or FALSE 2) NULL cannot be equal or unequal to other values …
- Interview Questions and AnswersPL/SQLTechnical Interview Questions and Answers
PL/SQL Interview Questions and Answers Part-1
by Sby S1.What is PL/SQL? PL/SQL is a procedural language that has both interactive SQL and procedural programming language constructs such as iteration, conditional branching. 2.What is the basic structure of PL/SQL? …
- Interview Questions and AnswersTechnical Interview Questions and AnswersUNIX
Unix Process Management Interview Questions And Answers For Freshers and Experience Part-2
by Sby S11. What Happens when you execute a program? When you execute a program on your UNIX system, the system creates a special environment for that program. This environment contains everything …
- Interview Questions and AnswersTechnical Interview Questions and AnswersUNIX
Unix Process Management Interview Questions And Answers For Freshers and Experience Part-1
by Sby S1. Brief about the initial process sequence while the system boots up. While booting, special process called the ‘swapper’ or ‘scheduler’ is created with Process- ID 0. The swapper manages …
- Interview Questions and AnswersTechnical Interview Questions and AnswersUNIX
Unix Memory Management Interview Questions And Answers For Freshers and Part-4
by Sby S31. Name two paging states for a page in memory? The two paging states are: The page is aging and is not yet eligible for swapping, The page is eligible …
- Interview Questions and AnswersTechnical Interview Questions and AnswersUNIX
Unix Memory Management Interview Questions And Answers For Freshers and Experience Part-3
by Sby S21. What is “the principle of locality”? It’s the nature of the processes that they refer only to the small subset of the total data space of the process. i.e. …
- Interview Questions and AnswersTechnical Interview Questions and AnswersUNIX
Unix Memory Management Interview Questions And Answers For Freshers and Experience Part-2
by Sby S11. What is Fork swap? “fork()” is a system call to create a child process. When the parent process calls “fork()” system call, the child process is created and if …