If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > How to add 5000 columns in db2?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-03-09, 11:35
Marko_Swe Marko_Swe is offline
Registered User
 
Join Date: Feb 2009
Posts: 4
Question How to add 5000 columns in db2?

Hi,
I must handle 5000 columns in db2. But I have found out that depending on the size of columns, it only can handle about 500 columns in one table. So have should I do? There is only one primary key and the rest is vargraphic columns (as numbers) ...

* Have 10 different tables and join them together?

* Have 1 table but add another key and make join within the table?

* Combine the above options?

* Or something different you will propose...

Thanks,
Marko

Last edited by Marko_Swe; 02-05-09 at 02:38.
Reply With Quote
  #2 (permalink)  
Old 02-03-09, 11:44
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
I'd go as far as to say that you should rethink your data model.
Reply With Quote
  #3 (permalink)  
Old 02-03-09, 13:09
Marko_Swe Marko_Swe is offline
Registered User
 
Join Date: Feb 2009
Posts: 4
I can't, this is what old systems sometimes gives you....but I know...the data model is bad.
Reply With Quote
  #4 (permalink)  
Old 02-03-09, 14:40
stolze stolze is offline
Registered User
 
Join Date: Jan 2007
Location: Jena, Germany
Posts: 2,662
I am not sure if views would be a work-around. If so, you could split up the data into several tables (and use a reasonable data model), then define views on top of the base tables to provide the 5000-column view on the data that the application expects.
__________________
Knut Stolze
IBM DB2 Analytics Accelerator
IBM Germany Research & Development
Reply With Quote
  #5 (permalink)  
Old 02-03-09, 14:49
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Quote:
Originally Posted by stolze
5000-column view on the data that the application expects.
This may not work in all cases. For example, you won't be able to select all 5K columns from the view, due to the select list limitation. If a query against the view results in a temporary table being created, that table will also be subject to the limit for the number of columns, I think.
Reply With Quote
  #6 (permalink)  
Old 02-03-09, 15:46
MarkhamDBA MarkhamDBA is offline
Registered User
 
Join Date: Dec 2008
Location: Toronto, Canada
Posts: 381
Quote:
Originally Posted by Marko_Swe
Hi,
I must handle 5000 columns in db2. But I have found out that depending on the size of columns, it only can handle about 500 columns in one table. So have should I do? There is only one primary key and the rest is vargraphic columns (as numbers) ...

* Have 10 different tables and join them together?

* Have 1 table but add another key and make join within the table?

* Combine the above options?

* Or something different you will propose...

Thanks,
Marko
You can create/use a partitioned table. But again it depends on your applications requirements.

Sorry, i take it back. It will not work in this case... I agree with reconsidering existing db model
__________________
DB2 v9.5 ESE on AIX v6.1/ v9./10 on z/OS
Reply With Quote
  #7 (permalink)  
Old 02-03-09, 18:01
dav1mo dav1mo is offline
Registered User
 
Join Date: Dec 2007
Location: Richmond, VA
Posts: 782
I can't, this is what old systems sometimes gives you....but I know...the data model is bad.


If the above is true then what is the need for a new table that contains 5000 columns? I would rethink your data model as was suggested. Will all 5000 of these columns always have data? that could be your deciding factor on separating into other tables. Also, can you stack these columns vertically, instead of horizontally? Meaning you have your key and a type column to determine which of your thousands of vargrphic columns this one is.
Reply With Quote
  #8 (permalink)  
Old 02-04-09, 06:14
Marko_Swe Marko_Swe is offline
Registered User
 
Join Date: Feb 2009
Posts: 4
Post

It's to tricky to separate the data into more specific tables and so on...so the situation is still to handle 5000 columns. The columns will not always have data, exactly how much is difficult to estimate but maybe most data is between 500-3000 columns of data. I can only stack the columns horizontally cause further sql require it...

Thanks all of you for your reflections and plz post more!

Well, one more thing...Java is the backend language here...if it gives you any idea

Marko
Reply With Quote
  #9 (permalink)  
Old 02-04-09, 12:45
stolze stolze is offline
Registered User
 
Join Date: Jan 2007
Location: Jena, Germany
Posts: 2,662
Wide tables (lots of columns) are surely not rare in relational databases. However, more than 200 or 500 columns typically never used. So if you tell me that it would not be possible to use a better schema for the data that has less than 500 columns, I begin to doubt it.
__________________
Knut Stolze
IBM DB2 Analytics Accelerator
IBM Germany Research & Development
Reply With Quote
  #10 (permalink)  
Old 02-04-09, 14:35
Marko_Swe Marko_Swe is offline
Registered User
 
Join Date: Feb 2009
Posts: 4
Of course it's possible to use a better schema, but as often, there is no time or money to do it. This is the area I have to work within....
Reply With Quote
  #11 (permalink)  
Old 02-04-09, 18:33
stolze stolze is offline
Registered User
 
Join Date: Jan 2007
Location: Jena, Germany
Posts: 2,662
Ok, then you can choose between not doing it because it is possible technically or not doing it because you don't have the necessary resources.
__________________
Knut Stolze
IBM DB2 Analytics Accelerator
IBM Germany Research & Development
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On