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


Please Help Members By Posting Answers For Below Questions

normally database take to refresh time 2 hours. but client asked iwant to refresh with in 5 min that same database. do you have any option in BO and Oracle? explain me briefly...kavi

1733


What are the logical operations?

671


How to delete an existing row from a table in oracle?

637


What is columnar storage what is the advantage?

537


When system tablespace is created?

593






What is the difference between a hot backup and a cold backup in oracle?

565


What are the different types of record groups in oracle? Explain each of them

596


What is an oracle user account?

569


How to loop through a cursor variable?

559


How does propagation differ between Advanced Replication and Snapshot Replication (read-only)?

1822


while i take backup using ibm tsm the following errors occurred: rman-03009 ora-19513 ora-27206 ora-19502 ora-27030 ora-ora19511

3860


How would you change old and new values in an insert, delete and update triggers?

537


What is the difference between a user and a schema in oracle?

554


What is a data dictionary and how can it be created?

606


How to convert characters to dates in oracle?

557