[GENERAL] Schema manipulation from plpgsql

2010-12-10 Thread Gevik Babakhani
I was wondering if there are any schema manipulation statements which are not allowed from within a PL/PGSQL function. (Except from create/drop a database) -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpre

Re: [GENERAL] Converting each item in array to a query result row

2009-05-29 Thread Gevik Babakhani
d1 from convert_to_query('a,c,b,d,e,f') as result(field1 varchar); --- -- Regards, Gevik -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general

Re: [GENERAL] structure of query does not match error during RETURN QUERY.

2009-05-08 Thread Gevik Babakhani
---+---+--++-+-- -+---+-+---+--- (0 rows) Gevik Babakhani wrote: How do you call this function from your code? Does it work when you call it from PGAdmin? select * from

Re: [GENERAL] structure of query does not match error during RETURN QUERY.

2009-05-08 Thread Gevik Babakhani
How do you call this function from your code? Does it work when you call it from PGAdmin? select * from cerber.cerber_account_select (1); Michal Szymanski wrote: Hi, We call DB procedure that select rows with given ID it works as simple SELECT but for future changes we implement as DB procedu

Re: [GENERAL] migrating from MSSQL

2009-05-08 Thread Gevik Babakhani
I had to write a little application for migrating data. because I had to check and modify data before I inserted them into PG. Perhaps you can export the data to CSV and then import it in PG using the COPY command. I hope this helps, Regards, Gevik. Eugene . wrote: Hi all, I've been tasked

Re: [GENERAL] Can't start Postgres anymore

2008-02-27 Thread Gevik Babakhani
IIRC, you cannot state runservice runservice -N "." from commandline. just try pg_ctl -D _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George Younan Sent: Wednesday, February 27, 2008 10:08 PM To: pgsql-general@postgresql.org Subject: [GENERAL] Can't start Pos

Re: [GENERAL] win32: how to backup (dump does not work)

2008-02-26 Thread Gevik Babakhani
r to the new server. Regards, Gevik ---(end of broadcast)--- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match

Re: [GENERAL] Install problem w/8.3 on windows 2000 : application failed to initialize properly (0xc0000022)

2008-02-21 Thread Gevik Babakhani
I did not follow the past threads, but have you looked at what the event viewer has to report? _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dee Sent: Thursday, February 21, 2008 8:36 PM To: pgsql-general@postgresql.org Subject: Re: [GENERAL] Install problem w/8.3 on w

Re: [GENERAL] Storing images as BYTEA or large objects

2008-02-13 Thread Gevik Babakhani
the text column into a buffer/string Base64 decode to get your original image/binary data. The approach above worked for us. This was a PHP5 website and C# frontend. Regards, Gevik Babakhani PostgreSQL NL http://www.postgresql.nl TrueSoftware

Re: [GENERAL] Storing images as BYTEA or large objects

2008-02-12 Thread Gevik Babakhani
Hi, Which programming language are you using? Regards, Gevik Babakhani PostgreSQL NL http://www.postgresql.nl TrueSoftware BV http://www.truesoftware.nl > -Original Mess

Re: [GENERAL] [pgsql-advocacy] PostgreSQL professionals group at LinkedIn.com

2008-02-02 Thread Gevik Babakhani
> > > > Is there an existing Postgres group? > > Yes. Humm.. It never hurts to be more popular on the net. Regards, Gevik Babakhani PostgreSQL NL http://www.postgresql.nl TrueSoftware BV http://w

Re: [GENERAL] exporting postgre data

2008-01-25 Thread Gevik Babakhani
Check out the docs for pg_dump utility. http://www.postgresql.org/docs/8.3/static/app-pgdump.html _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of User Map Sent: Friday, January 25, 2008 10:18 AM To: pgsql Subject: [GENERAL] exporting postgre data is it posible to trans

[GENERAL] PostgreSQL professionals group at LinkedIn.com

2008-01-22 Thread Gevik Babakhani
Dear all, I have created a group for PostgreSQL professionals at LinkedIn.com Feel free to join if you like. http://www.linkedin.com/e/gis/51776/760A11717C03 Regards, Gevik Babakhani PostgreSQL NL http://www.postgresql.nl TrueSoftware BV

Re: [GENERAL] uninstall postgres 8.2

2007-12-03 Thread Gevik Babakhani
nager for example apt-get or yum Regards, Gevik Babakhani PostgreSQL NL http://www.postgresql.nl <http://www.postgresql.nl/> TrueSoftware BV http://www.truesoftware.nl <http://www.t

Re: [GENERAL] Strange query results with invalid multibyte

2006-09-27 Thread Gevik Babakhani
Hi Joost. (hoe gaat het ermee?) I would like to test this too. Could you please provide the data you are inserting into the database. Regards, Gevik On Wed, 2006-09-27 at 13:13 +0200, Joost Kraaijeveld wrote: > Hi, > > I have a strange problem. > > I have 2 database, bo

Re: [GENERAL] serial column

2006-09-24 Thread Gevik Babakhani
could create a function that: step1: creates a sequence (with random name) step2: update table set field=netval('random_seq_name'); step3: drop sequence... -- Regards, Gevik Babakhani ---(end of broadcast)--- TIP 9: In versions b

Re: [GENERAL] serial column

2006-09-24 Thread Gevik Babakhani
equence as a primary key, you should be aware that you will destroy the integrity of you data. -- Regards, Gevik Babakhani ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org

Re: [GENERAL] serial column

2006-09-24 Thread Gevik Babakhani
esolve. > > Bob > > - Original Message - > From: "Gevik Babakhani" <[EMAIL PROTECTED]> > To: "Bob Pawley" <[EMAIL PROTECTED]> > Cc: "Postgresql" > Sent: Sunday, September 24, 2006 2:00 PM > Subject: Re: [GENERAL] ser

Re: [GENERAL] serial column

2006-09-24 Thread Gevik Babakhani
bl ( id SERIAL primary key ); -- Regards, Gevik Babakhani ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq

[GENERAL] deleting function from pg_catalog.pg_proc

2006-03-28 Thread Gevik Babakhani
Hello Folks, I would like to know if deleting functions from pg_catalog.pg_proc with the following SQL statement is advisable? I would like a way of deleting my functions without using the DROP FUNCTION statement. -- delete from pg_

Re: [GENERAL] Commercial Use

2006-02-07 Thread Gevik Babakhani
yes you can. Read the license :) > Hi,sorry for my English. > I would like to know if i can use PostgreSql for my commercial software. > > ---(end of broadcast)--- > TIP 3: Have you checked our extensive FAQ? > >http://www.postgresql.

Re: [GENERAL] user defined function

2006-01-24 Thread Gevik
check http://archives.postgresql.org/pgsql-novice/2005-02/msg00227.php ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org

Re: [GENERAL] Unregister Windows Service pg_ctl error

2006-01-14 Thread Gevik babakhani
Thank you :) > -Original Message- > From: Magnus Hagander [mailto:[EMAIL PROTECTED] > Sent: Saturday, January 14, 2006 6:16 PM > To: Gevik > Cc: pgsql-general@postgresql.org > Subject: RE: [GENERAL] Unregister Windows Service pg_ctl error > > > > You nee

[GENERAL] Recommend IDE for PG Development

2006-01-11 Thread Gevik
Could anyone Recommend a nice IDE for debugging and developing code for PG on Linux or Windows. Thanx. ---(end of broadcast)--- TIP 6: explain analyze is your friend

Re: [GENERAL] Unregister Windows Service pg_ctl error

2006-01-09 Thread Gevik
> You need administrative privileges to unregister a service. Can't run it > as user postgres. I did the same under "Administrator" but then I get an access violation error like: Unhandled exception at 0x77c478c0 in pg_ctl.exe: 0xC005: Access violation reading location 0x. What am I

[GENERAL] Unregister Windows Service pg_ctl error

2006-01-09 Thread Gevik
When I try to unregister the windows service I get an error like: C:\Program Files\PostgreSQL\8.1\bin>pg_ctl.exe unregister -N "pgsql-8.1" pg_ctl: could not open service manager This is on Windows XP and the logged user is postgres ---(end of broadcast)---

Re: [GENERAL] Table design

2005-12-02 Thread Gevik
Perhaps this is not a postgresql solution, but you could; 1. first design a common data structure in postgresql. 2. then convert each type of the tab-delimited file to a basic xml structures. 3. map the structures to the common data structure using xslt. I hope this helps, > This might be a bit

[GENERAL] postgresql books

2005-06-03 Thread Gevik babakhani
Dear All,   Beside the documentation, which pg book would you recommend? Which one is your personal favorite pg book?   Regards Gevik.  

[GENERAL] PostgreSQL Developer Network

2005-06-02 Thread Gevik babakhani
PostgreSQL 8.0.3   Please do not hesitate to share your ideas.   Kind regards, Gevik  

Re: [GENERAL] Reusable database design

2004-12-11 Thread Gevik Babakhani
Yes actualy.. This is also going to be one of the items on our future FAQ database. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joachim Zobel Sent: Tuesday, December 07, 2004 11:34 PM To: [EMAIL PROTECTED] Subject: [GENERAL] Reusable database design

Re: [GENERAL] table inheritance and DB design

2004-12-03 Thread Gevik Babakhani
We are working on a PostgresSQL KB. Soon we are going to move the FAQ and Information as such to the KB -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alec Swan Sent: Friday, December 03, 2004 7:02 PM To: Tom Lane Cc: [EMAIL PROTECTED] Subject: Re: [G

Re: [GENERAL] tool for postgresql

2004-11-29 Thread Gevik Babakhani
Checkout http://www.pgadmin.org   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nageshwar Rao Sent: Monday, November 29, 2004 10:20 AM To: [EMAIL PROTECTED] Subject: [GENERAL] tool for postgresql   Hi, Any tool available for Postgresql for admin activities li