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
Respected sir, Please send me technical questions related to oracle apps..
List the types of joins used in writing subqueries?
What is the use of file param in imp command?
How to retrieve data from an explicit cursor?
What is the quickest way to export a table to a flat file?
Explain the use of log option in exp command.
In oracle there is column command, how will you explain that?
How to run create database statement again?
What are the parameters that we can pass through a stored procedure?
What is the Tune Query
What are the different windows events activated at runtime ?
can anyody please send me the dump for Oracle 10g certifications for DBA path?
How would you edit your CRONTAB to schedule the running of /test/test.sh to run every other day at 2PM?
What is the difference between translate and replace in oracle?
Explain database link?