Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Terence.
Asked: June 12, 2018 - 6:11 pm UTC
Last updated: June 14, 2018 - 3:23 am UTC
Version: 11g2
Viewed 1000+ times
create cluster tr_cluster ( region number(2),customer number(10),invoice number(10)) size ???? ; create index tr_cluster_idx on cluster tr_cluster; /* 15000000 rows ave length 410 bytes */ create table invoices(region number(2),customer number(10),invoice number(10), other_data char(400)); /* 42000000 rows ave length 102 bytes , avgerage number of lines is 3.8, median number of lines is 2 */ create table invoice_lines(region number(2),customer number(10),invoice number(10), line integer, line_data char(100));
New to good database design? Check out Chris Saxon's full fundamentals class.