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 |
What is integrity and what is constraint??Explain with example
How to make a Data Backup in oracle ? What is the procedure for creating the dump files in oracle ( any version ) ?
What happens if the imported table already exists?
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
what is the difference between restoring and recovering?
What are the factors that affect OPTIMIZER in choosing an Optimization approach ?
Is oracle the best database?
How can one skip any number of rows while loading the DB tables with SQL Loader? Similarly how can one skip any column?
what is Single Byte Overhead...?
How to filter out duplications in the returning rows using oracle?
Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.
What is archive log in Oracle?