Unix Technical Forum

Re: Optimizing a huge_table/tiny_table join

This is a discussion on Re: Optimizing a huge_table/tiny_table join within the Pgsql Performance forums, part of the PostgreSQL category; --> > SELECT * FROM huge_table h, tiny_table t WHERE UPPER( h.id ) = > UPPER( t.id ) What about ...


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > Pgsql Performance

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-19-2008, 08:53 AM
PFC
 
Posts: n/a
Default Re: Optimizing a huge_table/tiny_table join


> SELECT * FROM huge_table h, tiny_table t WHERE UPPER( h.id ) =
> UPPER( t.id )


What about :

SELECT * FROM huge_table h WHERE UPPER(id) IN (SELECT upper(id) FROM
tiny_table t)

Or, try opening a cursor on your original query and using FETCH. It might
result in a different plan.
Or lower random_page_cost.

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 04:20 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com