The following bug has been logged online:
Bug reference: 5264
Logged by: venkat nemani
Email address: nemani.venka...@gmail.com
PostgreSQL version: 8.4
Operating system: ubuntu 9.10
Description:could not create shared memory segment: Invalid argument
Details:
* Rest
On 5/01/2010 3:06 PM, venkat nemani wrote:
2010-01-05 12:30:00 IST HINT: This error usually means that PostgreSQL's
request for a shared memory segment exceeded your kernel's SHMMAX parameter.
You can either reduce the request size or reconfigure the kernel with
larger SHMMAX. To reduce the
The following bug has been logged online:
Bug reference: 5265
Logged by: AI Rumman
Email address: irum...@gmail.com
PostgreSQL version: 8.3.8
Operating system: Linux
Description:incomplete startup packet
Details:
Jan 5 18:19:35 dev04 postgres[14342]: [1419-1] DEBUG
AI Rumman escribió:
>
> The following bug has been logged online:
>
> Bug reference: 5265
> Logged by: AI Rumman
> Email address: irum...@gmail.com
> PostgreSQL version: 8.3.8
> Operating system: Linux
> Description:incomplete startup packet
> Details:
Not a bug. P
The following bug has been logged online:
Bug reference: 5266
Logged by: robson
Email address: robsonott0...@gmail.com
PostgreSQL version: 8
Operating system: windows xp
Description:erros no servidor web
Details:
Warning: pg_connect() [function.pg-connect]: Unable t
"Jozsef Szalay" writes:
> Execute the following query:
> SELECT *
> FROM (SELECT id, 0 AS value
> FROM test
> WHERE description = 'abc'
> ) t1
> FULL OUTER JOIN
> (SELECT id, 1 AS value
> FROM test
> WHERE description = 'def'
> ) t2 USING (id, value);
Well, this is a real-world case for us :-). The actual sql is a lot more
complicated (and it is machine-generated), but the bottom line is that we need
to project constants as columns, and we need to be able to "combine" the
results coming out of the sub-queries.
Years ago (8.1.x), we found tha
Jozsef Szalay writes:
> Well, this is a real-world case for us :-). The actual sql is a lot more
> complicated (and it is machine-generated), but the bottom line is that we
> need to project constants as columns, and we need to be able to "combine" the
> results coming out of the sub-queries.
>