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
query optmization techniques and quwry analyser+projects+ppts
What are the differences between primary key and unique key?
How to establish administrator authentication to the server?
How to drop a tablespace?
Explain the use of parfile option in exp command.
Briefly explain what is literal? Give an example where it can be used?
What is index in Oracle?
Explain oracle left join with an example?
How to use existing values in update statements using oracle?
How remove data files before opening a database?
Is a rollback possible to any savepoint?
How to display employee records who gets more salary than the average salary in the department?
What is the usage of save points in oracle database?
HI, Please let me know the syllabus for Oracle OCA and OCP Certification
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?