Обсуждение: Easy way to change table schema?

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

Easy way to change table schema?

От
"Chris Hoover"
Дата:
I have accidentally created some tables in the wrong schema.  Since my testers have begun to use them and put data in them, I was hoping for an easy way to move the existing tables. 

Is there a way to move tables between schema's w/o having to drop and recreate?

Thanks,

Chris

Re: Easy way to change table schema?

От
"Joshua D. Drake"
Дата:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Chris Hoover wrote:
> I have accidentally created some tables in the wrong schema.  Since my
> testers have begun to use them and put data in them, I was hoping for an
> easy way to move the existing tables.
>
> Is there a way to move tables between schema's w/o having to drop and
> recreate?

ALTER TABLE

http://www.postgresql.org/docs/current/interactive/sql-altertable.html



>
> Thanks,
>
> Chris
>


- --

      === The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564   24x7/Emergency: +1.800.492.2240
PostgreSQL solutions since 1997  http://www.commandprompt.com/
            UNIQUE NOT NULL
Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
PostgreSQL Replication: http://www.commandprompt.com/products/

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGvIRtATb/zqfZUUQRAs8RAJ9MVrjBRLaXsR2QphhhkMXozf1thwCgm/VD
GfHR6aakLCNxyv8WhlR2cRE=
=ZYyS
-----END PGP SIGNATURE-----

Re: Easy way to change table schema?

От
"Chris Hoover"
Дата:
On 8/10/07, Joshua D. Drake <jd@commandprompt.com> wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Chris Hoover wrote:
> I have accidentally created some tables in the wrong schema.  Since my
> testers have begun to use them and put data in them, I was hoping for an
> easy way to move the existing tables.
>
> Is there a way to move tables between schema's w/o having to drop and
> recreate?

ALTER TABLE

http://www.postgresql.org/docs/current/interactive/sql-altertable.html



>
> Thanks,
>
> Chris
>


- --

thanks, I must be blind in one eye and unable to see out of the other.  I was looking at the page before I sent out my inquiry and did not see it.

Chris