Re: [HACKERS] 8.2 features status

2006-08-11 Thread Reinoud van Leeuwen
for todos... etc. A wiki for *discussion*? I thought email was for that. A wiki is nice to work toghether on a document (in some circumstances). -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl

Re: [HACKERS] POWER vs. POW ???

2005-11-24 Thread Reinoud van Leeuwen
as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud __ ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq

Re: [HACKERS] US Patents vs Non-US software ...

2005-01-20 Thread Reinoud van Leeuwen
. (and the opposition against it seems to grow!) -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud __ ---(end

Re: Postgres development model (was Re: [HACKERS] CVS comment)

2004-08-10 Thread Reinoud van Leeuwen
. Producing an Open Source product does not mean that all tools are Open Source. Windows isn't and Postgresql is going to support windows. -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud

Re: [HACKERS] cache control?

2004-01-18 Thread Reinoud van Leeuwen
-- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud __ ---(end of broadcast)--- TIP 6: Have you searched our list archives

Re: [HACKERS] [pgsql-advocacy] Not 7.5, but 8.0 ?

2003-11-19 Thread Reinoud van Leeuwen
them a few years to make this product 100% SQL compatible with ASE. This product was ported to some Unix platforms around that time too. -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud

[HACKERS] plpgsql strangeness with select into variable

2003-07-18 Thread Reinoud van Leeuwen
is declared as integer and is not used before this code nor as a column name anywhere. Does anyone have a clue what is going wrong? I use Postgresql 7.3.3 on FreeBSD 4.5. -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED

[HACKERS] how to make a trigger deferrable

2002-12-16 Thread Reinoud van Leeuwen
-- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud __ ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

[HACKERS] Why an array in pg_group?

2002-11-26 Thread Reinoud van Leeuwen
give's me a postgresql that is different from all the others :-( -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud

[HACKERS] Why an array in pg_group?

2002-11-21 Thread Reinoud van Leeuwen
me a postgresql that is different from all the others :-( -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud

[HACKERS] status of IPv6 Support for INET/CIDR types

2002-04-02 Thread Reinoud van Leeuwen
ready for some time now. What is the status of IPv6 types at this moment? -- __ Nothing is as subjective as reality Reinoud van Leeuwen[EMAIL PROTECTED] http://www.xs4all.nl/~reinoud

Re: [HACKERS] What executes faster?

2001-10-01 Thread Reinoud van Leeuwen
[HACKERS] What executes faster? Now that I've found the solution for my duplicate key problem, I'm wondering what executes faster when I have to check for duplicates. 1. try to update if no row affected - do the insert else done 2. do a select if row not found - do the

[HACKERS] optimizer question

2001-09-26 Thread Reinoud van Leeuwen
Hi, I have a table that contains almost 8 milion rows. The primary key is a sequence, so the index should have a good distribution. Why does the optimizer refuse to use the index for getting the maximum value? (even after a vacuum analyze of the table) radius=# explain select max(radiuspk)

[HACKERS] performance question

2001-08-28 Thread Reinoud van Leeuwen
Can somebody explain to me: radius=# explain select count (radiuspk) from radius ; NOTICE: QUERY PLAN: Aggregate (cost=12839.79..12839.79 rows=1 width=8) - Seq Scan on radius (cost=0.00..11843.43 rows=398543 width=8) EXPLAIN This query answers me *instantly* after hitting return

Re: [HACKERS] performance question

2001-08-28 Thread Reinoud van Leeuwen
On Tue, 28 Aug 2001, Reinoud van Leeuwen wrote: Can somebody explain to me: radius=# explain select count (radiuspk) from radius ; NOTICE: QUERY PLAN: Aggregate (cost=12839.79..12839.79 rows=1 width=8) - Seq Scan on radius (cost=0.00..11843.43 rows=398543 width=8

Re: [HACKERS] Link to bug webpage

2001-08-21 Thread Reinoud van Leeuwen
On Tue, 21 Aug 2001, Lamar Owen wrote: [...] What who thinks of what has actually become irrelevant. The following is clear: o No tool will replace the mailing lists o The mailing lists are where discussion will be held o Many/most maintainers have no desire to update

Re: [HACKERS] plpgsql: Checking status on a 'INSERT INTO ...'

2001-07-25 Thread Reinoud van Leeuwen
I'm porting some stored procedures from a MSSQL server, and thought I'd use PL/pgSQL. The original code is checking the insert with the line: if (@@Error != 0) You might want to use something like: SELECT INTO variable_name * FROM table WHERE field = some_value; IF FOUND THEN

Re: AW: [HACKERS] functions returning records

2001-06-27 Thread Reinoud van Leeuwen
For the result from foo() you must somewhere define attributes (names). Where? In CREATE FUNCTION statement? Possible must be: select name1, name2 from foo() where name1 10; Yes, optimal would imho also be if the foo() somehow had access to the where restriction, so it could only

Re: [HACKERS] functions returning records

2001-06-26 Thread Reinoud van Leeuwen
(argument) -- __ Nothing is as subjective as reality Reinoud van Leeuwen [EMAIL PROTECTED] http://www.xs4all.nl/~reinoud __ ---(end of broadcast

Re: [HACKERS] POSTMASTER

2001-06-18 Thread Reinoud van Leeuwen
Reinoud van Leeuwen [EMAIL PROTECTED] http://www.xs4all.nl/~reinoud __ ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://www.postgresql.org/search.mpl

Re: [HACKERS] Migration from FoxPro

2001-06-12 Thread Reinoud van Leeuwen
- generate a database creation script and execute it through the ODBC connection - create a report of your database for your documentation :-) -- __ Nothing is as subjective as reality Reinoud van Leeuwen [EMAIL PROTECTED] http://www.xs4all.nl

Re: [HACKERS] Postgres Replication

2001-06-11 Thread Reinoud van Leeuwen
working on the same database :-) just my 2 EURO cts :-) -- __ Nothing is as subjective as reality Reinoud van Leeuwen [EMAIL PROTECTED] http://www.xs4all.nl/~reinoud

Re: [HACKERS] ORDER BY Problem...

2001-06-06 Thread Reinoud van Leeuwen
Hello... Why does Postgresql order the uppercase letters first? I have e.g. a table with one row an in this row there are follow values: row1 ADC aa ABC With this select-syntax select * from table order by row1 I become this output ABC ADC aa but I want this

Re: [HACKERS] capturing stored procedure return values from php??please help .

2001-06-06 Thread Reinoud van Leeuwen
hi, i am developing an application using php and postgresql. i do not know how to capture the return values of functions (stored procedures) from php. select myfunction(parameter) ; ---(end of broadcast)--- TIP 5: Have you