Re: [GENERAL] How to show the current schema or search path in the psql PROMP

2010-06-14 Thread Schwaighofer Clemens
On Mon, Jun 14, 2010 at 19:10, Alban Hertroys dal...@solfertje.student.utwente.nl wrote: On 14 Jun 2010, at 2:02, Clemens Schwaighofer wrote: Right now I added two simple wrappers in my .psqlrc \set shsh 'SHOW search_path;' \set setsh 'SET search_path TO' So I can at least set and check

[GENERAL] How to show the current schema or search path in the psql PROMP

2010-06-09 Thread Schwaighofer Clemens
Hi, I am trying to figure out how I can show the current search_path, or better the first search_path entry (the active schema) in the PROMPT variable for psql. Is there any way to do that? I couldn't find anything useful ... -- ★ Clemens 呉 Schwaighofer ★ IT Engineer/Web Producer/Planning ★

Re: [GENERAL] What Linux edition we should chose?

2010-05-31 Thread Schwaighofer Clemens
On Tue, Jun 1, 2010 at 11:30, Nilesh Govindarajan li...@itech7.com wrote: Nope; you're wrong. Even RPM doesn't remove the data. But its always safer to keep a backup. I am not talking about removing the data I am talking of not beeing able to access it because the database itself is still in

Re: [GENERAL] Problem with partition tables and schemas

2010-02-02 Thread Schwaighofer Clemens
I tried that too, in all of my trigger functions, it still didn't change anything. On Wed, Feb 3, 2010 at 09:42, Tom Lane t...@sss.pgh.pa.us wrote: Clemens Schwaighofer clemens_schwaigho...@e-gra.co.jp writes: I already tried that. even with prefixing the alter table statement with the schema

Re: [GENERAL] duplicating a schema

2009-11-30 Thread Schwaighofer Clemens
On Sun, Nov 29, 2009 at 21:21, Ivan Sergio Borgonovo m...@webthatworks.it wrote: I need to create a new schema with all the content in an existing one, just with a new name. The way I've found is: - make a backup - load it in a dev box - rename the schema - make a backup of the new schema

Re: [GENERAL] upgrade from 7.4 to 8.3

2009-03-11 Thread Schwaighofer Clemens
On Wed, Mar 11, 2009 at 19:01, Marc Cuypers m.cuyp...@mgvd.be wrote: Thanks Tom, Only... One database was in LATIN9.  When creating this database i got the same error. Command: CREATE DATABASE hardsoft WITH OWNER = postgres TEMPLATE = template0 ENCODING = 'LATIN9'; Error: ERROR:

Re: [GENERAL] Strange Grant behavior in postgres 8.3

2009-02-18 Thread Schwaighofer Clemens
On Wed, Feb 18, 2009 at 17:42, Scott Marlowe scott.marl...@gmail.com wrote: On Tue, Feb 17, 2009 at 9:20 PM, Clemens Schwaighofer clemens.schwaigho...@tequila.jp wrote: But yesterday I run in some issues with table ownership and thought if I just give the user all rights for the DB, he should

[GENERAL] Strange Grant behavior in postgres 8.3

2009-02-17 Thread Schwaighofer Clemens
Version: PostgreSQL 8.3.5 on i486-pc-linux-gnu, compiled by GCC gcc-4.3.real (Debian 4.3.2-1) 4.3.2 I have a DB foo created and owned by postgres. No I created another role called bar and with the user postgres in the db foo I did: # grant all on foo to bar; when I select from pg_database I

Re: [GENERAL] Strange Grant behavior in postgres 8.3

2009-02-17 Thread Schwaighofer Clemens
test; test -- foo (1 row) I am seriously confused and ask myself what I do wrong On Tue, Feb 17, 2009 at 21:06, Albe Laurenz laurenz.a...@wien.gv.at wrote: Schwaighofer Clemens wrote: Version: PostgreSQL 8.3.5 on i486-pc-linux-gnu, compiled by GCC gcc-4.3.real(Debian 4.3.2-1) 4.3.2 I

Re: [GENERAL] transfering tables into other schema

2009-02-17 Thread Schwaighofer Clemens
On Wed, Feb 18, 2009 at 07:31, Ivan Sergio Borgonovo m...@webthatworks.it wrote: alter table y set schema new_schema; test=# SELECT * from x(); ERROR: relation y does not exist CONTEXT: SQL statement select a,b from x join y on x.xid=y.xid PL/pgSQL function x line 2 at RETURN QUERY

Re: [GENERAL] Strange Grant behavior in postgres 8.3

2009-02-17 Thread Schwaighofer Clemens
On Wed, Feb 18, 2009 at 16:09, John R Pierce pie...@hogranch.com wrote: Clemens Schwaighofer wrote: The other problem is, that there is no grant all on table db.* ... but I have to do that for each table seperate, or in a grant all on table a, b, I am not sure if there is an easier

[GENERAL] Query Question

2009-02-10 Thread Schwaighofer Clemens
I have two tables Table public.mailings Column | Type| Modifiers +---+--- key| character varying | name | character varying | Table public.userdata Column | Type| Modifiers

Re: [GENERAL] Connecting to old 7.1 Database

2009-02-04 Thread Schwaighofer Clemens
On Tue, Nov 18, 2008 at 18:34, Andy Greensted ajg...@ohm.york.ac.uk wrote: So, two questions: - Is there anyway to run a newer version (8.3.5) of psql in some sort of 'backwards compatible' mode? - Do you have any tips on making 7.1.3 compile on a newer system? The last time I had to

Re: [GENERAL] running postgres

2009-02-04 Thread Schwaighofer Clemens
On Thu, Feb 5, 2009 at 15:35, Kusuma Pabba kusu...@ncoretech.com wrote: may this be a silly doubts but , i am new to postgres, please answer to these:: /usr/local/pgsql/bin/psql test test=# sudo su postgres -c psql template1 template=# what is the difference between the above two and,

Re: [GENERAL] problem converting database to UTF-8

2009-02-03 Thread Schwaighofer Clemens
On Fri, Jan 23, 2009 at 02:18, David Goodenough david.goodeno...@btconnect.com wrote: Is there a definative HOWTO that I can follow, if not does someone have a set of instructions that will work? If it matters I am running under Debian. I did it once for a very large db (large for me was

Re: [GENERAL] how to avoid that a postgres session eats up all the memory

2009-01-23 Thread Schwaighofer Clemens
But if I have my work mem small, shouldn't it then just end with out of memory and not use up all the memory ... On Fri, Jan 23, 2009 at 18:48, Grzegorz Jaśkiewicz gryz...@gmail.com wrote: try raising work_mem before the delete; on single connection : set work_mem=512000; DELETE FROM ..;

Re: [GENERAL] Postgres 8.3 is not using indexes

2008-08-14 Thread Schwaighofer Clemens
On Thu, Aug 14, 2008 at 20:27, Peter Eisentraut [EMAIL PROTECTED] wrote: Am Thursday, 14. August 2008 schrieb Clemens Schwaighofer: Why is Postgres not using the indexes in the 8.3 installation. Might have something to do with the removal of some implicit casts. You should show us your