Re: save data from views

From: mzmaxmail(at)libero(dot)it <mzmaxmail(at)libero(dot)it>
To: achill <achill(at)matrix(dot)gatewaynet(dot)com>
Cc: pgsql-sql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: save data from views
Date: 2002-12-23 11:48:53
Message-ID: H7KM5H$AA1E07592781964E89EB8AE2A8A88691@libero.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Mon, 23 Dec 2002, [iso-8859-1] mzmaxmail(at)libero(dot)it wrote:

>
>
>
> first of all, thanx for anyone who answered my previous question... i've understood what was wrong...
> now, i've got another question, i know it could sound stupid, but i have not such a great practice with postgres. i'm asking you: is it that a way to save values from a view?
> i'm using postgres to calculate pollutant emissions by cars, and i make some queries and create views. i would like to save the results from the views but i can't find a way to export them.
> once again thanx in advance for your help, massimo

You could write a program in your favourite language that selects and
prints the rows of your views.

Also you could
# create table tempviewdata as select * from <your view name>;

Why would you want to save the values of your views??

thanx for your answer.
i'm developing a database that outputs pollutant emissions that has to be imported by the GRASS _ GIS program.
in that way i can produce vector maps of the city i'm studying with pollutant emissions as attributes.
to do this, i had to put the COPERT emissions model in the database, and create views to display all the results. but i also need to save this results, if i want to open them in other programs!!!

massimo

Browse pgsql-sql by date

  From Date Subject
Next Message Arnaudo Massimo 2002-12-23 14:22:38 Password user postgres
Previous Message mzmaxmail 2002-12-23 10:57:55 save data from views