What are the restrictions on cursor variables?Thanks ramki, hyd, tcs
How can I create a new table by using other two table's values.
create table new_employees
as (select e.employee_id, e.first_name, e.last_name, d.department_name, d.department_id,
c.location_id, c.city from employees e, departments d, locations c
where e.department_id = d.department_id
and d.location_id = c.location_id
);
create table table_name as( select tab1.column1,tab1.column2,tab2.column3 from table_name tab1,table_name2 tab2 where tab1.colum1=tab2.column4);
How to disable multiple triggers of a table at at a time?
Alter table
Cursor Variable RestrictionsCursor variables are subject to the following restrictions; Oracle may remove some of these in future releases. Cursor variables cannot be declared in a package since they ...
hi friend
cursor variable can't use with dynamic sql.
cursor variable can't use with in package because it is not having persistent state.
nulls can't assinged to cursor variable.
remote procedure can't accept cursor variable