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 > Transfer data from one table to seperate columns of another table

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-15-10, 05:33
BabyJam BabyJam is offline
Registered User
 
Join Date: Mar 2009
Posts: 8
Transfer data from one table to seperate columns of another table

We are looking at moving data from one table to another, please see the example tables below

Code:
Table 1
Id               IncId           Location
1                001              Wales
2                001              England
3                001              Scotland
4                002              Wales
5                003              England
6                003              Scotland
7                004              Wales
8                004              Scotland
We now need to get the above data into a new table
Code:
IncId      Wales      England     Scotland
001         Yes         Yes          Yes
002         Yes
003                       Yes          Yes
004         Yes                        Yes
The only problem is that there is so much data in table one that the statement we created causes a memory issue. Is this possible with a loop statement and could someone help with this?
Reply With Quote
  #2 (permalink)  
Old 01-15-10, 06:13
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
What statement did you used?
If you used another statement, the memory issue may be not caused even for much data.
Reply With Quote
  #3 (permalink)  
Old 01-15-10, 06:32
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
Please see "PIVOT" in "SQL on Fire! Part 1".

http://www.sirdug.org/downloads/SQLonFire_1_SirDUG.pdf
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