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
What is the implicit cursor in oracle?
Differentiate between pre-select and pre-query?
What is a named program unit?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
How to select all columns of all rows from a table in oracle?
What is the data pump import utility?
What do you mean by a deadlock?
What is oracle host variable?
What is the difference between truncate & delete command?
Why is oracle database so popular?
What is oracle and what are its different editions?
How to work with data objects interactively?
How to drop an existing view in oracle?
Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?
How to drop a tablespace?