The following bug has been logged online:
Bug reference: 3709
Logged by: Vishesh Jain
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8
Operating system: Linux
Description:Changing Table Owner
Details:
I need to change the owner of some tables from postgres to
The following bug has been logged online:
Bug reference: 3708
Logged by: Maksym Sobolyev
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8.0.14
Operating system: FreeBSD 6.2-RELEASE
Description:Ongoing transactin that involves the table containing
foreign key blo
Hi Vishesh,
You can run a dynamic SQL to get all your table owner changed. Try doing
this :
login to your database with postgresql user and then
select 'alter table '|| tablename ||' owner to ;' from
pg_tables where schemaname = 'public';
copy the alter table statements and run it.
Regards,
Mo
See below, clarification of bug report.
--
From: "Roger Moloney" <[EMAIL PROTECTED]>
Sent: Friday, October 26, 2007 8:25 AM
To: "Tom Lane" <[EMAIL PROTECTED]>
Subject: Re: [BUGS] BUG #3695: Pgsql does not report non existing function
Hi Tom,
Than