Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: maximum number of columns per table
Jeremy wrote:
> In article <1090301352.683762_at_yasure>, Daniel Morgan says...
>
>>There is just about no excuse for having more than 50 columns in a table. >> >>
I'd have to know more and as I said to Galen "just about" means it is not a hard and fast rule.
But to answer your question:
CREATE TABLE parent (
obj_id NUMBER,
obj_name VARCHAR2(30));
CREATE TABLE attribute (
obj_id NUMBER,
attrnum NUMBER(2),
attrval VARCHAR2(10));
Is one way to approach the problem.
As I stated before ... think vertically ... not horizontally.
Daniel Morgan Received on Tue Jul 20 2004 - 21:37:11 CDT
![]() |
![]() |