• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Create Object/Creat Type Question

 
Ranch Hand
Posts: 145
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have a database schema created using the following SQL statements:
create or replace type rows_type as table of varchar2(200);
create or replace type line_type as object (
r_id number(10),
m_id number(10),
rating varchar2(10),
row_num number(3),
column_values rows_type
);
create table result_row of line_type (
R_ID NOT NULL,
M_ID NOT NULL,
RATING NOT NULL,
ROW_NUM NOT NULL)
nested table column_values store as result_column_values
;
I am quite new to this stuff. I need to know how I can insert values into
the result_row table.
Thanks a lot.
Mathew
[ April 28, 2002: Message edited by: Mathew Kuruvilla ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic