Re: On the performance of views

From: Bill Moran <wmoran(at)potentialtech(dot)com>
To: Shridhar Daithankar <shridhar(at)frodo(dot)hserus(dot)net>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: On the performance of views
Date: 2004-01-27 19:39:21
Message-ID: 4016BE69.9050909@potentialtech.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance pgsql-sql

Shridhar Daithankar wrote:
> Bill Moran wrote:
>
>> I have an application that I'm porting from MSSQL to PostgreSQL. Part
>> of this
>> application consists of hundreds of stored procedures that I need to
>> convert
>> to Postgres functions ... or views?
>>
>> At first I was going to just convert all MSSQL procedures to Postgres
>> functions.
>> But now that I'm looking at it, a lot of them may be candidates for
>> views. A
>> lot of them take on the format of:
>>
>> SELECT a.cola, b.colb, c.colc
>> FROM a JOIN b JOIN c
>> WHERE a.prikey=$1
>
> Make sure that you typecase correctly. It makes a differnce of order of
> magnitude when you say 'where intpkey=<somevalue>::int' rather than
> 'where intpkey=<somevalue>'.
>
> It is called typecasting and highly recommened in postgresql for
> correctly choosing indexes.
>
> I remember another post on some list, which said pl/pgsql seems to be
> very strongly typed language compared to MSSQL counterpart. So watch for
> that as well.

Oh yeah. This particular difference is causing a lot of headaches, as I have
to track down the type of each field to create a new type for each function.
MSSQL seems to be _very_ loosely typed, in that it will return anything you
want and determine the return type at run time.

Some functions they prototyped in MSSQL even return different types, based
on certian parameters, I'm not sure how I'll do this in Postgres, but I'll
have to figure something out.

>> (this is slightly oversimplified, but as a generalization of hundreds of
>> functions, it's pretty accurate)
>>
>> Now, I know this questions is pretty generalized, and I intend to test
>> before
>> actually commiting to a particular course of action, but I'm very
>> early in the
>> conversion and I'm curious as to whether people with more experience
>> than I
>> think that views will provide better performance than functions
>> containing
>> SQL statements like the above. The client is _very_ interested in
>
> To my understanding, views are expanded at runtime and considered while
> preparing plan for the complete (and possibly bigger) query(Consider a
> view joined with something else). That is not as easy/possible if at
> all, when it is function. For postgresql query planner, the function is
> a black box(rightly so, I would say).
>
> So using views opens possibility of changing query plans if required.
> Most of the times that should be faster than using them as functions.
>
> Of course, the standard disclaimer, YMMV. Try yourself.

Thanks. I think I'm going to track the performance of many of these
functions and write up what I discover.

--
Bill Moran
Potential Technologies
http://www.potentialtech.com

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message PC Drew 2004-01-27 19:51:56 Re: (partial?) indexes, LIKE and NULL
Previous Message Marinos J. Yannikos 2004-01-27 19:26:06 (partial?) indexes, LIKE and NULL

Browse pgsql-sql by date

  From Date Subject
Next Message Josh Berkus 2004-01-27 20:07:33 Re: On the performance of views
Previous Message Tom Lane 2004-01-27 16:58:39 Re: PgSQL Down