Oracle Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesOracle Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 14th, 2011, 04:17 AM
amstel_za amstel_za is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 378 amstel_za User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 Days 14 h 38 sec
Reputation Power: 10
Append columns from one table to another

Hey all,

Perhaps this is a common request : I have 2 tables:

Table A
-------
ID Value
1 a
2 b
3 c

Table B
-------
ID AnotherValue
1 x
2 y

I am hoping to append a column from Table B to Table A based on a simple sql join (e.g:

Table A

ID Value AnotherValue
1 a x
2 b y
3 c (null)

)

I would rather stay away from the standard update statement since it takes far to long and I'd prefer not to use create table as I don't want to duplicate any data...is this possible to do ? (e.g: just insert the columns into this table ?) - or if it's possible the performance overhead just wouldn't make it worth it ?

Regards
Ben

Reply With Quote
  #2  
Old November 14th, 2011, 04:27 AM
shammat shammat is offline
Contributing User
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Oct 2003
Location: Germany
Posts: 2,685 shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Month 3 Weeks 3 Days 19 h 57 m 3 sec
Reputation Power: 284
Quote:
Originally Posted by amstel_za
I am hoping to append a column from Table B to Table A based on a simple sql join (e.g:

Table A

ID Value AnotherValue
1 a x
2 b y
3 c (null)

)
So you want to add a new column to table A?

Quote:
I would rather stay away from the standard update statement
So you want to update data without using the UPDATE statement? Sounds like an impossible task.

If you do want to add a new column to TableA, you will have to do an alter table add column followed by an UPDATE statement to put the correct values into the new (empty) column.

The only other option you have, is to create a view that returns the joined data.

Reply With Quote
  #3  
Old November 14th, 2011, 04:53 AM
amstel_za amstel_za is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 378 amstel_za User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 Days 14 h 38 sec
Reputation Power: 10
Damn...guess it's the create table as solution - faster than the update but unnecessary duplication of some of the data...

kinda hoped there would be a permanent join option for/to an existing table.

Cheers for the quick response Shammat. Much appreciated

Reply With Quote
  #4  
Old November 14th, 2011, 05:36 AM
shammat shammat is offline
Contributing User
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Oct 2003
Location: Germany
Posts: 2,685 shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Month 3 Weeks 3 Days 19 h 57 m 3 sec
Reputation Power: 284
Quote:
Originally Posted by amstel_za
kinda hoped there would be a permanent join option for/to an existing table.
A view?
A materialized view?

Reply With Quote
  #5  
Old November 15th, 2011, 09:48 AM
amstel_za amstel_za is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 378 amstel_za User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 Days 14 h 38 sec
Reputation Power: 10
Yep, looked at both, but because of the size of the table I'll probably look to try and create a series of smaller materialized views rather than a view. The data will need to be accessible very quickly so I need to stay away from running the query whenever a request comes in...so mview is going to offer the best approach I think (even if it comes with a storage cost).

Thanx Shammat...appreciate the advice

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesOracle Development > Append columns from one table to another

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap