Re: [GENERAL] LDAP referrals

2013-06-27 Thread Magnus Hagander
On Wed, Jun 26, 2013 at 3:47 AM, James Sewell james.sew...@lisasoft.comwrote: Hello All, Is there a way to disable chasing LDAP referrals in PostgreSQL? There is not, at this point. It would probably be fairly trivial to add a pg_hba parameter to turn it off (since it's, AFAIK, just a call

[GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread sachin kotwal
While migrating my application from DB2 to PostgreSQL. I want to migrate TIMESTAMP() function of DB2 into PostgreSQL. Example in DB2: #SELECT TIMESTAMP('2013-01-01','12:13:14') FROM SYSIBM.SYSDUMMY1 1 -- 2013-01-01-12.13.14.00 1 record(s)

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread sachin kotwal
I have done some more try as follows: #select timestamp(current_date); ERROR: syntax error at or near current_date at character 18 STATEMENT: select timestamp(current_date); ERROR: syntax error at or near current_date LINE 1: select timestamp(current_date);

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread Raymond O'Donnell
On 27/06/2013 12:51, sachin kotwal wrote: I have done some more try as follows: #select timestamp(current_date); ERROR: syntax error at or near current_date at character 18 STATEMENT: select timestamp(current_date); ERROR: syntax error at or near current_date LINE 1: select

[GENERAL] Triggers NOT running as table owner

2013-06-27 Thread Sandro Santilli
According to release notes of 8.3.18 (yeah, old docs) a trigger runs with the the table owner permission. This is the only document I found about this matter: http://www.postgresql.org/docs/8.3/static/release-8-3-18.html Require execute permission on the trigger function for CREATE TRIGGER

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread Daniel Cristian Cruz
I've done something weird: CREATE OR REPLACE FUNCTION timestamp(_date date, _time time) RETURNS timestamp AS $$ SELECT _date + _time; $$ LANGUAGE sql; SELECT timestamp('2013-01-01'::date, '12:00:00'::time); It worked, but you will need explict cast and quote the timestamp function name... Many

[GENERAL] auto_explain FDW

2013-06-27 Thread David Greco
In my development environment, I am using the auto_explain module to help debug queries the developers complain about being slow. I am also using the oracle_fdw to perform queries against some oracle servers. These queries are generally very slow and the application allows them to be. The

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread Suzuki Hironobu
On 2013-06-27 20:43, sachin kotwal wrote: While migrating my application from DB2 to PostgreSQL. I want to migrate TIMESTAMP() function of DB2 into PostgreSQL. Example in DB2: #SELECT TIMESTAMP('2013-01-01','12:13:14') FROM SYSIBM.SYSDUMMY1 1 --

Re: [GENERAL] installer woes, 9.1 on windows 2008 R2

2013-06-27 Thread Igor Neyman
-Original Message- From: pgsql-general-ow...@postgresql.org [mailto:pgsql-general- ow...@postgresql.org] On Behalf Of John R Pierce Sent: Wednesday, June 26, 2013 4:13 PM To: pgsql-general@postgresql.org Subject: Re: [GENERAL] installer woes, 9.1 on windows 2008 R2 On 6/26/2013

Re: [GENERAL] convert from json to text[]

2013-06-27 Thread Andreas Kretschmer
Merlin Moncure mmonc...@gmail.com wrote: json deserialization was heavily enhanced in the upcoming 9.3 release which would make dealing with this triival. for now, you have to fire up pl/v8 or another pl with heavy json support or implement a crude parser in sql :/

Re: [GENERAL] Need help compiling from souce

2013-06-27 Thread Jake Silverman
I found out what was happening. When the path variables were manually set, something in build.pl was overwriting 64 bit to 32 bit (not sure why. The build was saying 64 was detected and will be used, but then many files were being compiled as 32 bit). I used a cmd prompt that came with Msft vs

Re: [GENERAL] installer woes, 9.1 on windows 2008 R2

2013-06-27 Thread John R Pierce
On 6/27/2013 6:44 AM, Igor Neyman wrote: Try to look at Windows Event Log, m.b. there will be some useful info. nada but unrelated noise M.b. you need to run installer local (not corporate active directory) account, still member of local Administrators group. hmmm. having local accounts

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread John R Pierce
On 6/27/2013 4:51 AM, sachin kotwal wrote: #select timestamp(current_date); try... current_date::timestamptz orcast current_date as timestamptz -- john r pierce 37N 122W somewhere on the middle of the left coast -- Sent via pgsql-general

Re: [GENERAL] Triggers NOT running as table owner

2013-06-27 Thread Sergey Konoplev
On Thu, Jun 27, 2013 at 4:58 AM, Sandro Santilli s...@keybit.net wrote: According to release notes of 8.3.18 (yeah, old docs) a trigger runs with the the table owner permission. This is the only document I found about this matter: http://www.postgresql.org/docs/8.3/static/release-8-3-18.html

[GENERAL] How to get fully qualified names with EXPLAIN

2013-06-27 Thread Bartosz Dmytrak
Hi All Let's assume I've got 3 tables: - OrgStructure.tblUnits, - OrgStructure.tblUnitStructure, - Dictionary.tblUnits I would like to do the EXPLAIN: EXPLAIN SELECT * FROM OrgStructure.tblUnits, OrgStructure.tblUnitStructure, Dictionary.tblUnits (Of course its cartesian product -

Re: [GENERAL] How to get fully qualified names with EXPLAIN

2013-06-27 Thread Pavel Stehule
Hello 2013/6/27 Bartosz Dmytrak bdmyt...@gmail.com: Hi All Let's assume I've got 3 tables: OrgStructure.tblUnits, OrgStructure.tblUnitStructure, Dictionary.tblUnits I would like to do the EXPLAIN: EXPLAIN SELECT * FROM OrgStructure.tblUnits, OrgStructure.tblUnitStructure,

Re: [GENERAL] How to get fully qualified names with EXPLAIN

2013-06-27 Thread Bartosz Dmytrak
Works like a charm :) thanks a lot. Regards, Bartek 2013/6/27 Pavel Stehule pavel.steh...@gmail.com Hello 2013/6/27 Bartosz Dmytrak bdmyt...@gmail.com: Hi All Let's assume I've got 3 tables: OrgStructure.tblUnits, OrgStructure.tblUnitStructure, Dictionary.tblUnits I would

[GENERAL] DELETE with LIMIT - workaround?

2013-06-27 Thread Chris Angelico
I have something that I think is a fairly common code model, but with an SQL query that feels like it's fighting the system. The 'cron' table has a number of tasks (one row = one task), and the primary loop of the program (massively simplified) fetches one row, processes it, commits. One row/task

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread sachin kotwal
Using your link http://www.postgresql.org/docs/9.2/static/functions-formatting.html In DB2 when I use following command I am getting output combined date and time i passed to function. #SELECT TIMESTAMP('2013-01-01','12:13:14') FROM SYSIBM.SYSDUMMY1 1

Re: [GENERAL] Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

2013-06-27 Thread sachin kotwal
I've done something weird: CREATE OR REPLACE FUNCTION timestamp(_date date, _time time) RETURNS timestamp AS $$ SELECT _date + _time; $$ LANGUAGE sql; SELECT timestamp('2013-01-01'::date, '12:00:00'::time); Good one. function with above definition is already present in pg_catalog. so no need