how to insert data into partitioned table partition done by
Range partition



how to insert data into partitioned table partition done by Range partition..

Answer / 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

More Oracle General Interview Questions

What is the difference between alert log file and trace file ?

1 Answers  


When do we use group by clause in a sql query?

0 Answers  


What is a oracle database?

0 Answers  


How to invoke the original export import utilities?

0 Answers  


What is the difference between substr and instr?

0 Answers  






How to start an oracle instance?

0 Answers  


How to convert numbers to characters in oracle?

0 Answers  


Explain an exception?

0 Answers  


what is the uses of cusor

3 Answers   Perot Systems,


How to convert characters to dates in oracle?

0 Answers  


what is the use of triggers in Java program? I mean where do we use triggers in Java programming?

0 Answers  


What are the set operators union, union all, minus & intersect meant to do?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)