Re: HELP speed up my Postgres - Mailing list pgsql-general

From Anatoly Okishev
Subject Re: HELP speed up my Postgres
Date
Msg-id 077301c4d2d0$1608ea10$191716ac@ws5
Whole thread Raw
In response to HELP speed up my Postgres  (JM <jerome@gmanmi.tv>)
List pgsql-general
> SQL:
> update SUBSCRIPTIONTABLE set ACTIVEFLAG='Y' where mobile_num in (select
> mobile_num from LOADED_MOBILE_NUMBERS)

You can try this:

update SUBSCRIPTIONTABLE, LOADED_MOBILE_NUMBERS  set
SUBSCRIPTIONTABLE.ACTIVEFLAG='Y'
where LOADED_MOBILE_NUMBERS.mobile_num=SUBSCRIPTIONTABLE.mobile_num

Anatoly.



pgsql-general by date:

Previous
From: "Markus Wollny"
Date:
Subject: Re: why use SCHEMA? any real-world examples?
Next
From: Bjørn T Johansen
Date:
Subject: Index work around?