Re: PHP SQL

From: Jeff Davis <jdavis-pgsql(at)empires(dot)org>
To: Shaun Clements <ShaunC(at)relyant(dot)co(dot)za>
Cc: PgSQL General List <pgsql-general(at)postgresql(dot)org>
Subject: Re: PHP SQL
Date: 2005-03-22 20:48:09
Message-ID: 1111524489.4089.734.camel@jeff
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


> pg_fetch_row
> pg_fetch_assoc
> pg_fetch_object
> pg_fetch_result
> pg_fetch_array
>
> Are there performance differences, which are noticeable?

I doubt you'll see much real difference. Your real bottleneck will be
I/O.

You might be able to save something by using COPY out and then back in.
If it's a lot of data I would definately try that, because it's got a
lot more chance of helping you. Or you could use a server side function
rather than doing the work in the client. contrib/dblink may be able to
help you a lot.

However, your question made it sound like the tables were in the same DB
already and just in different schemas? If that's the case, you can just
select one table into another and avoid all that unecessary overhead.

Regards,
Jeff Davis

In response to

  • PHP SQL at 2005-03-22 11:25:30 from Shaun Clements

Browse pgsql-general by date

  From Date Subject
Next Message Thomas F.O'Connell 2005-03-22 23:15:28 checkpoint_timeout
Previous Message Ed L. 2005-03-22 20:09:29 Re: Measuring Query Performance