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
Why do we use coalesce function in oracle?
What is oracle database client?
What is truncate oracle?
What is a proxy object?
Is it possible to split the print reviewer into more than one region ?
What is data file?
What are the predefined tablespaces in a database?
Where do we use decode and case statements?
What is oracle in java?
How to connect to oracle using service name instead of sid?
How to check the oracle tns settings?
 What are the oracle DML commands possible through an update strategy?
How we can able to import our own template (users designed MS-Word templates) which has many tabular columns; need to pass some values generate by Oracle-reports9i? Actually need to import more than 400 MS-Word templates into Oracle Reports-9i to minimize layout design in Reports.
What is the recommended interval at which to run statspack snapshots, and why?
What are the different types of trigger and explain its various uses and functions?