[GENERAL] Indexed views like SQL Server - NOT Materialized Views

2015-06-09 Thread inspector morse
SQL Server has a feature called Indexed Views that are similiar to materialized views. Basically, the Indexed View supports COUNT/SUM aggregate queries. You create a unique index on the Indexed View and SQL Server automatically keeps the COUNT/SUM upto date. Example: CREATE VIEW ForumTopicCounts

[GENERAL] Any work being done on materialized view?

2016-12-03 Thread inspector morse
Is there any work being done on materialized views for version 9.7? This postgresql feature is severely lacking compared to similar features like indexed views by sql server.

[GENERAL] stored procedure variable names

2015-02-19 Thread inspector morse
In all other DBMS, the variable names have a distinctive character to differentiate between variables and column names: Example: SQL Server uses @ MySql uses ? Oracle uses : Firebirdsql uses : It makes it easier to write and manage queries especially in stored procedures. Just compare the below:

Re: [GENERAL] stored procedure variable names

2015-02-19 Thread inspector morse
15 04:57 PM, inspector morse wrote: > >> In all other DBMS, the variable names have a distinctive character to >> differentiate between variables and column names: >> >> Example: >> SQL Server uses @ >> MySql uses ? >> Oracle uses : >> Firebirdsql

[GENERAL] Application written in pure pgsql, good idea?

2015-02-28 Thread inspector morse
Is it a good idea to write a simple application (consisting of just data entry interfaces) in pure pgsql? Basically, we would have each page has a stored function in postgresql that is called by php+apache (the http get/post values would be passed into postgrel as an array). The pgpsql would rend

Re: [GENERAL] Application written in pure pgsql, good idea?

2015-03-01 Thread inspector morse
main concern is, since there will be a lot of concatenation in pgsql to generate the HTML, would it affect performance? On Sat, Feb 28, 2015 at 11:08 PM, BladeOfLight16 wrote: > On Sat, Feb 28, 2015 at 3:39 PM, inspector morse < > inspectormors...@gmail.com> wrote: > >> >&

[GENERAL] Sharing data between stored functions?

2015-03-05 Thread inspector morse
I have written a simple web application using pure pl/pgsql and so far it is working really well (I find it quite easy to maintain as well especially in terms of form validation). Basically, apache/php passes receives the incoming web request and calls a "serve_page" function in postgresql passing

Re: [GENERAL] Sharing data between stored functions?

2015-03-05 Thread inspector morse
@postgresql.org >>> [mailto:pgsql-general-ow...@postgresql.org] On Behalf Of inspector morse >>> Sent: Thursday, March 05, 2015 9:21 AM >>> To: pgsql-general@postgresql.org >>> Subject: [GENERAL] Sharing data between stored functions? >>> >>> &g

[GENERAL] How to read refcursor column's using string column name?

2015-03-12 Thread inspector morse
How do I access a cursor's column using a string column? Example: CREATE FUNCTION write_html_select(items cursor, data_value_field text, data_text_field text) AS $$ DECLARE r RECORD; html TEXT; BEGIN FOR r in items LOOP html = ""; END LOOP; RETURN html; END; $$ LA