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 meant by recursive hints ?

1 Answers  


How to run the anonymous block again?

0 Answers  


Explain drop constraint oracle?

0 Answers  


What are the sql clauses supported in the link property sheet ?

1 Answers   Oracle,


Please explain drop constraint oracle?

0 Answers  






how to get last monday of a month?

2 Answers   Multifonds,


what is the use of rank function?

1 Answers  


find out the third highest salary?

92 Answers   CIPL, Cyber Shot, HCL, Hewitt, IBM, JPMorgan Chase, Orion, Verizon,


Explain table?

0 Answers  


how can db_files > maxdatafiles since db_files is for instance and the later is for database

0 Answers   CTS,


How to export your own schema?

0 Answers  


10)In an RDBMS, the information content of a table does not depend on the order of the rows and columns. Is this statement Correct? A)Yes B)No C)Depends on the data being stored D)Only for 2-dimensional tables

6 Answers   Mind Tree,


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)