What is a cursor for loop?
Cursor For Loop is a loop where oracle implicitly declares a loop variable, the loop index that of the same record type as the cursor’s record. Read more »
Cursor For Loop is a loop where oracle implicitly declares a loop variable, the loop index that of the same record type as the cursor’s record. Read more »
A cursor variable is associated with different statements at run time, which can hold different values at run time. Static cursors can only be associated with one... Read more »
OPEN cursor variable FOR SELECT…Statement CLOSE cursor variable In order to associate a cursor variable with a particular SELECT statement OPEN syntax is used.In... Read more »
The variables declared in the procedure and which are passed, as arguments are called actual, the parameters in the procedure declaration. Actual parameters contain... Read more »
Using ORACLE PRECOMPILERS ,SQL statements and PL/SQL blocks can be contained inside 3GL programs written in C,C++,COBOL,PASCAL, FORTRAN,PL/1 AND ADA. The Precompilers... Read more »
SQL Server can be started from command line, using the SQLSERVR.EXE. This EXE has some very important parameters with which a DBA should be familiar with. -m is... Read more »
Blocking happens when one connection from an application holds a lock and a second connection requires a conflicting lock type. This forces the second connection... Read more »
Deadlock is a situation when two processes, each having a lock on one piece of data, attempt to acquire a lock on the other’s piece. Each process would wait indefinitely... Read more »
Again this is another open ended question. Here are some things you could talk about: Preferring NT authentication, using server, databse and application roles to... Read more »
This is a very open ended question and there could be a lot of reasons behind the poor performance of a query. But some general issues that you could talk about... Read more »
RAID stands for Redundant Array of Inexpensive Disks, used to provide fault tolerance to database servers. There are six RAID levels 0 through 5 offering different... Read more »
In normal terms, if a bug or error is detected in a system, it needs to be communicated to the developer in order to get it fixed. Right from the first time any... Read more »
A test case is a noted/documented set of steps/activities that are carried out or executed on the software in order to confirm its functionality/behavior to certain... Read more »
Basically, test cases/scripts are run in order to find out any unexpected behavior of the software product under test. If any such unexpected behavior or exception... Read more »
A bug or error in software product is any exception that can hinder the functionality of either the whole software or part of it. Read more »