Re: Read recover rows

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: Alejandro Carrillo <fasterzip(at)yahoo(dot)es>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Read recover rows
Date: 2012-12-13 22:59:30
Message-ID: 50CA5DD2.6000506@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

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(dot)klaver(at)gmail(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Alejandro Carrillo 2012-12-13 23:14:06 Re: Read recover rows
Previous Message Alex Burkoff 2012-12-13 22:47:12 Re: execution plan is wrong, or the query ?