Обсуждение: insert data from an microsoft excel

Поиск
Список
Период
Сортировка

insert data from an microsoft excel

От
Nageshwar Rao
Дата:

Is there is way to load data from as Microsoft excel into database tables in postgresql7.4.x

Thx

Rao

Re: insert data from an microsoft excel

От
John DeSoi
Дата:
On Feb 16, 2005, at 6:16 AM, Nageshwar Rao wrote:

> Is there is way to load data from as Microsoft excel into database
> tables in postgresql7.4.x


Sure. Export the data into a CSV file. Then import it using psql and
the \COPY command.

http://www.postgresql.org/docs/8.0/interactive/app-psql.html
http://www.postgresql.org/docs/8.0/interactive/sql-copy.html


John DeSoi, Ph.D.
http://pgedit.com/
Power Tools for PostgreSQL


Re: insert data from an microsoft excel

От
Matt Kynaston
Дата:
John DeSoi wrote:

>
> On Feb 16, 2005, at 6:16 AM, Nageshwar Rao wrote:
>
>> Is there is way to load data from as Microsoft excel into database
>> tables in postgresql7.4.x
>
>
>
> Sure. Export the data into a CSV file. Then import it using psql and
> the \COPY command.
>

Or if it's something that needs automating, take a look at the ODBC
driver. There's a howto on using VBA to connect Access to Postgres -
Excel will be similar:
http://gborg.postgresql.org/project/psqlodbc/
http://gborg.postgresql.org/project/psqlodbc/genpage.php?howto-accessvba

Matt


Re: insert data from an microsoft excel

От
David Fetter
Дата:
On Wed, Feb 16, 2005 at 04:46:09PM +0530, Nageshwar Rao wrote:
> Is there is way to load data from as Microsoft excel into database
> tables in postgresql7.4.x

Once you've upgraded to 8.0x--a good idea anyhow--you can use DBI-Link
with the DBD::Excel driver.

http://pgfoundry.org/projects/dbi-link/

Cheers,
D
--
David Fetter david@fetter.org http://fetter.org/
phone: +1 510 893 6100   mobile: +1 415 235 3778

Remember to vote!

Re: insert data from an microsoft excel

От
"Ed L."
Дата:
On Wednesday February 16 2005 7:48, David Fetter wrote:
> On Wed, Feb 16, 2005 at 04:46:09PM +0530, Nageshwar Rao wrote:
> > Is there is way to load data from as Microsoft excel into
> > database tables in postgresql7.4.x
>
> Once you've upgraded to 8.0x--a good idea anyhow--you can use
> DBI-Link with the DBD::Excel driver.

Wouldn't ODBC work for this??  I've pulled into Excel from Pg as
far back as pg 6.5, but never tried pushing from Excel into
Pg...

Ed


Re: insert data from an microsoft excel

От
David Fetter
Дата:
On Wed, Feb 16, 2005 at 08:05:55AM -0700, Ed L. wrote:
> On Wednesday February 16 2005 7:48, David Fetter wrote:
> > On Wed, Feb 16, 2005 at 04:46:09PM +0530, Nageshwar Rao wrote:
> > > Is there is way to load data from as Microsoft excel into
> > > database tables in postgresql7.4.x
> >
> > Once you've upgraded to 8.0x--a good idea anyhow--you can use
> > DBI-Link with the DBD::Excel driver.
>
> Wouldn't ODBC work for this??

It probably would.

> I've pulled into Excel from Pg as far back as pg 6.5, but never
> tried pushing from Excel into Pg...

DBI-Link makes it pretty trivial to pull any tabular data into
PostgreSQL :)

Cheers,
D
--
David Fetter david@fetter.org http://fetter.org/
phone: +1 510 893 6100   mobile: +1 415 235 3778

Remember to vote!