how to insert data into partitioned table partition done by
Range partition
Answer / shanmugavelu
suppose u have create partition table like,
Sql>Create table Pixel_emp_details(emp_no number,
emp_name varchar2(10))
partition by range (emp_no)
(partition pixel_p1 values less than(10));
Sql>/
Table is created
After that u have use normal insert statement like
Sql> insert into pixel_emp_details partition(pixel_p1)
values(1,'gopi')
SQL> /
1 row created.
| Is This Answer Correct ? | 10 Yes | 3 No |
What is memory advisor in Oracle?
what is difference between foreign key and reference key
What is difference between a formal and an actual parameter?
How do I limit the number of oracle database connections generated by weblogic server?
What to do if the binary spfile is wrong for the default instance?
What are ACID properties in databases?
Difference between the “verify” and “feedback” command?
In Exception handling if we are using the when others first then what happens . whether it will show the compiler error
Respected sir, Please send me technical questions related to oracle apps..
How to find 1st, 2nd, 3rd highest using select select statement not using rownum
What is a proxy object?
What is Redo Log Buffer in Oracle?