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
Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?
What are the ansi data types supported in oracle?
What is the fastest query method to fetch data from the table?
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?
Difference between pre-select and pre-query
What are temporal data types in oracle?
Explain the use of Merge statement in oracle 11g
Give the constructs of a package, function or a procedure.
How to define an anonymous procedure with variables?
What do you understand by a database object? Can you list a few of them?
How to create a server parameter file?
What privilege is needed for a user to connect to oracle server?
What are the different types of synonyms?
How to login to the server without an instance?
What is a read write transaction in oracle?