how to insert data into partitioned table partition done by
Range partition
Answer Posted / 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 |
Post New Answer View All Answers
Hi this srilatha. I comlpeted my Oracle-hrms. can u provide me interview questions on Core hr, payroll,sshr,OLM etc..
What is meant by an index?
What do you mean by a deadlock?
What is a subquery?
What is an oracle table?
How to convert character types to numeric types?
Explain the difference between a procedure and a function? What do you understand by those terms?
What is the difference between Delete, Truncate and Drop in Oracle?
What is a initialization parameter file in oracle?
What is an oracle?
How data locks are respected in oracle?
How to rebuild an index in oracle?
How to convert characters to dates in oracle?
Explain about functional dependency and its relation with table design?
Differentiate between post-database commit and post-form commit?