Re: Read recover rows - Mailing list pgsql-general

From Alejandro Carrillo
Subject Re: Read recover rows
Date
Msg-id 1355440446.59906.YahooMailNeo@web172202.mail.ir2.yahoo.com
Whole thread Raw
In response to Re: Read recover rows  (Adrian Klaver <adrian.klaver@gmail.com>)
Responses Re: Read recover rows  (Adrian Klaver <adrian.klaver@gmail.com>)
List pgsql-general
Hi,

1) Isn't a script. The file is a table file get using the function pg_relation_filepath:
select pg_relation_filepath('pg_proc');
2) :( help!


De: Adrian Klaver <adrian.klaver@gmail.com>
Para: Alejandro Carrillo <fasterzip@yahoo.es>
CC: "pgsql-general@postgresql.org" <pgsql-general@postgresql.org>
Enviado: Jueves 13 de diciembre de 2012 17:59
Asunto: Re: [GENERAL] Read recover rows

On 12/13/2012 02:23 PM, Alejandro Carrillo wrote:
> Hi,
>
> 1) Anybody knows how to create a table using a table file? It isn't a
> fdw, is a file that compose the table in postgresql and get with the
> pg_relation_filepath function. Ex:
>
>  select pg_relation_filepath('pg_proc');

Not sure what you are asking. The above just returns a file path to the
on disk representation of the table.

Are you looking for

CREATE TABLE AS

http://www.postgresql.org/docs/9.2/interactive/sql-createtableas.html

OR

CREATE TABLE LIKE

http://www.postgresql.org/docs/9.2/interactive/sql-createtable.html

OR

Do want to create a table from a script?

>
> 2) Anybody knows a JDBC or a multiplatform code that let read the delete
> rows of a table without writing of a table file?

Not sure if that is possible, someone else may have a better answer.

>
> Thanks


--
Adrian Klaver
adrian.klaver@gmail.com


--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: Read recover rows
Next
From: Adrian Klaver
Date:
Subject: Re: Read recover rows