Oracle CURSOR with parameter
Oracle CURSOR with parameter.Execution of a cursor puts the results of the query into a set of rows called the result set, which can be fetched sequentially or non sequentially.
Oracle CURSOR with parameter.Execution of a cursor puts the results of the query into a set of rows called the result set, which can be fetched sequentially or non sequentially.
ORA-01001: invalid cursor error occurs when you tried to reference a cursor that does not yet exist.
A few scenarios given below.
A cursor is a name for private SQL area.It is in private SQL area the parsed statement and other information for processing the statement are kept.
ORA-01000: maximum open cursors exceeded.Each user session can open multiple cursors up to the limit set by the initialization parameter OPEN_CURSORS.
A cursor is a name for private SQL area.It is in private SQL area where the parsed statement and other information for processing the statement are kept.
We can use the ‘ALTER TABLE’ statement in oracle to add columns to a table using ADD keyword.
CREATE INDEX statement is used to create Indexes using table columns.An index allows faster retrieval of records.It is mainly used as a performance-tuning method.An index creates an entry for each value that appears in the indexed columns.
CREATE TABLE AS SELECT statement can be used when we need to extract part or full data from a table and store it into another table based on certain conditions .
Usage Create table statement with foreign key constraint will create table with referential integrity.
Foreign Key holds the reference to another table column value.
‘CREATE TABLE’ : sql create table command with composite primary key.CREATE TABLE statement can be used to create table objects in database. It is possible to add constraints like primary key ,foreign key while table creation.Primary key is the unique identifier for a row of data.