Search Discussions
-
I wish to track some additional info about users. Can I just add columns to the pg_shadow table? Can I add a system table while I am at it? (how?) How do I back up the pg_ system tables? Thanks Jason ...
Jason Hihn
Sep 8, 2003 at 8:28 pm
Sep 9, 2003 at 8:48 pm -
Hi - I am trying to concatenate a text field in a query with a group by clause, similar to a sum() function on a numeric value - for example: SELECT groupid, sum(numeric_field), ???(text_field) FROM ...
Brian G. Huber
Sep 9, 2003 at 5:04 pm
Sep 13, 2003 at 8:38 pm -
I have a db that contains phone numbers The data that get inserted looks like this 425 555 1212 I have a script that inserts that into the DB, the problem is that sometimes the suffix might start ...
Bryan Irvine
Sep 10, 2003 at 4:59 pm
Sep 11, 2003 at 2:11 pm -
Hi, I need to store strings with non-english characters in my DB. I created my db with unicode encoding, but am not able to insert data into it from psql nor pgaccess, which seems not to suport non ...
Andreas Fromm
Sep 8, 2003 at 9:46 am
Sep 9, 2003 at 3:00 pm -
Hello, I'm new to using PostgreSQL as a backend for NetReg (www.netreg.org <http://www.netreg.org/ ). I have some questions on getting started. I have installed the database on a Linux box. 1. How do ...
Williams, Quinton L
Sep 26, 2003 at 11:12 pm
Sep 29, 2003 at 10:19 pm -
We have encountered numerous instances when we have encountered the following error message: ERROR: Query was cancelled. Specific instances include: Attempting an export with pg_dump: % pg_dump -c -C ...
David Rickard
Sep 16, 2003 at 6:37 pm
Sep 16, 2003 at 7:36 pm -
Is there an easy way to count how many records there are? --Bryan
Bryan Irvine
Sep 10, 2003 at 4:58 pm
Sep 11, 2003 at 1:44 am -
On restoring a plain-text SQL script file dumped from a version 7.1.2 database to 7.3.3 I got the following errors. ERROR: copy: line 67568, Temporary log file is full lost synchronization with ...
Stuart Woodward
Sep 4, 2003 at 2:13 am
Sep 4, 2003 at 9:13 am -
One of the extras I had hoped for with PgSQL 7.3 Schemas was a somewhat cosmetic, but useful, change in the way that MS-Query sees tables in a database. What I *actualy* want to achieve is for the ...
Harry Broomhall
Sep 17, 2003 at 1:54 pm
Oct 1, 2003 at 3:04 pm -
Hi all, Can anyone please tell me how to modify the postgresql startup script to accept TCP/IP connections? This is on a Redh Hat 9 machine running Postgresql 7.3.4 RPM installation. The RPMs were ...
Balazs Wellisch
Sep 19, 2003 at 11:11 pm
Sep 20, 2003 at 12:13 am -
Hello, I'm not sure who I should be posing this question to but I'm a System Administrator who has inherited several Debian Linux servers one of which apparently hosts a rather large Postgres ...
Jonathan Telep
Sep 24, 2003 at 6:56 pm
Sep 26, 2003 at 5:34 am -
Hi I modified my function to: CREATE FUNCTION buscablista (character varying, character varying) RETURNS SETOF cabezalista AS ' select * from cabezalista where idlista like CAST($1 AS CHAR(20)) and ...
Juan Francisco Diaz
Sep 25, 2003 at 3:57 pm
Sep 25, 2003 at 10:29 pm -
What is the best way to reference (use as foreign key) a table with multiple primary keys? Here's what I have: Table1: field1 field2 field3 ... primary key (field1, field2, field3) Then I have ...
Daniel Staal
Sep 22, 2003 at 9:34 pm
Sep 23, 2003 at 7:01 am -
4
DTS
Hi, in SQLServer there is something called DTS, we in our race to improve the load of millions of records are planning to use them on SQLServer. BUT we would like to achieve similar performance in ...Juan Francisco Diaz
Sep 16, 2003 at 3:30 pm
Sep 22, 2003 at 7:56 am -
Dear Friends, I have a crucial problem, I try to develop an application using Python and PostgreSQL. I try to make a GUI using Python and i've planned to SELECT, INSERT and UPDATE the data on the ...
Santoso berkah
Sep 15, 2003 at 5:05 am
Sep 20, 2003 at 11:15 pm -
Does PostgreSQL manage an internal log of db operations? For example, a user with uid logs into the database and updates several rows.. Does engine log it? Regards -- Marcin Gil marcin.gil @ ...
Marcin Gil
Sep 12, 2003 at 12:59 pm
Sep 16, 2003 at 1:05 pm -
I have 2 tables: MainTable, fields: id, data1 RelatedTable, fields: id, data2 RelatedTable is joined to MainTable via the 'id' field. Field 'data2' in RelatedTable holds the same sort of data as ...
Szucs
Sep 10, 2003 at 9:27 am
Sep 15, 2003 at 3:08 pm -
I'm running postgresql on a linux box and having trouble connecting to my database from another machine. When I do I get a list of 4 databases but I cannot connect to any of them remotely, as they ...
Steve Bond
Sep 12, 2003 at 2:51 pm
Sep 15, 2003 at 1:06 pm -
Hi all, I have a table which includes a field for the date and time an item was added to it. What's the most efficient way of selecting all of the items added on a specific date (this is a really ...
Simon Willison
Sep 9, 2003 at 8:30 pm
Sep 12, 2003 at 10:31 am -
Greetings - It looks to me as if there is no way to alter the datatype of a table column, as in from timestamp to varchar. Am I right? (I will cry if I'm right.) :-(. It appears that I must drop and ...
Louise Cofield
Sep 3, 2003 at 7:57 pm
Sep 4, 2003 at 6:07 am -
I wish to SELECT * FROM testTable WHERE any field contains any word in the string "my name is bill" All I can come up with is this. SELECT * FROM testTable WHERE testfeild LIKE '%my%' OR testfield2 ...
Kevin Waterson
Sep 2, 2003 at 6:45 am
Sep 2, 2003 at 2:43 pm -
Hello. I've got a problem in porting the following select statement from Oracle to Postgres, because of the characters after "b.bet_id" and "f.ask_id" in the where clause: (+) I don't know what these ...
Doris Bernloehr
Sep 28, 2003 at 1:12 pm
Sep 28, 2003 at 4:32 pm -
Hello, I am new to PostgreSQL (but not new to SQL; I am an experienced Oracle Programmer). Any help to resolve my problem will be greatly appreciated. I am trying to create a new database user and ...
Partha Sur
Sep 27, 2003 at 3:23 am
Sep 27, 2003 at 5:42 am -
Have read the docs, tried to look through go(o)gles.. came up with nothing... How can I make postgres to store transaction log on a different drive? Ie. my postgres files reside in /var/lib/pgsql ...
Marcin Gil
Sep 25, 2003 at 6:41 am
Sep 25, 2003 at 1:31 pm -
hi to all.. Can anyone suggest a good tutorial for win32 programming... Thanks in advance regds smitha ********************************************************************* Disclaimer: The ...
Smitha V. Babu
Sep 18, 2003 at 5:17 am
Sep 18, 2003 at 10:07 am -
Hi to all.. Does anybody know how to use Python with tkinter to create the GUI in linux... In our project we need to use python for GUI.... Can anybody help me .... Smitha V.Babu System Analyst ...
Smitha V. Babu
Sep 8, 2003 at 6:21 am
Sep 16, 2003 at 12:57 pm -
Hi again, I just tried the first load in my brand new pg database... And IT SUCKS! yeah! it took over an hour to load around 200 thousand records, while the sqlserver2000 took about 5-7 minutes... Im ...
Juan Francisco Diaz
Sep 4, 2003 at 8:36 pm
Sep 4, 2003 at 10:51 pm -
Attempting to install PostGreSQL 7.3.X on a sparc-sun-solaris2.9 (SunOS 5.9) machine; during configure, numerous errors like these were logged: configure:4357: gcc -o conftest conftest.c -lbsd &5 ld: ...
David Rickard
Sep 3, 2003 at 5:18 pm
Sep 4, 2003 at 10:37 pm -
Hi, im trying to use the copy command to load some data in my tables but i get the following message: 000081": can't parse "pg_atoi: error in "0 When i execute the following command: copy ...
Juan Francisco Diaz
Sep 2, 2003 at 3:24 pm
Sep 3, 2003 at 6:31 am -
Hi, I'm a novice for using Postgres and Linux - any help or suggestions would be really appreciated, thanks!!! I'm having trouble logging on as the postgres user. I wanted to create a database, so I ...
Jennifer Liu
Sep 1, 2003 at 4:11 pm
Sep 2, 2003 at 3:50 am -
Hi all, I’d like to set up a computed column that uses a function to derive its data, but can’t seem to find any information on how to do this. My issue, specifically, is this: I have a user table ...
David Benoff
Sep 29, 2003 at 2:51 pm
Sep 29, 2003 at 5:47 pm -
Hi, I have a table which contains information about MRTG graphs. Each of the graphs belongs to a device (switch, router, host) or to a service (web server, news server etc.), so I made a second table ...
Oliver Fromme
Sep 29, 2003 at 11:41 am
Sep 29, 2003 at 3:46 pm -
Greetings, I am having a little difficulty installing PostgreSQL7.3.4 with java. The box is is running SuSE9.2 linux. I have environmental variables set in bash-profile as: JAVA_HOME=wherever export ...
Sibusiso xolo
Sep 26, 2003 at 1:11 am
Sep 26, 2003 at 7:06 pm -
Hi, I have created a function(a) that within this function(a) another function(b) is called. When I execute function(a) I am getting a syntax error near ; message. When I comment out the line of code ...
Godshall Michael
Sep 25, 2003 at 3:34 pm
Sep 25, 2003 at 10:47 pm -
Hello All, I've recently made the transition to PostgreSQL from MySQL - and am trying to learn how to program functions using pl/pgsql - but todate have not found any really excellent examples in one ...
Simon
Sep 24, 2003 at 2:02 pm
Sep 25, 2003 at 11:20 am -
I am somewhat new to PostgreSQL's procedure language, and I have not been able to find a way to do ad-hoc outputs to the console from plpgsql functions -- mostly for debugging purposes. Oracle has ...
Glenn_wiens
Sep 23, 2003 at 2:07 pm
Sep 23, 2003 at 3:14 pm -
Hi, Can anyone kindly enlighten me on how to write a connection string from an ASP.NET application to PostgreSQL db without the use of Npgsql or other data providers? Roslyn
Roslyn Teo
Sep 15, 2003 at 11:17 am
Sep 17, 2003 at 1:09 pm -
DEBUG: XLogWrite: new log file created - consider increasing WAL_FILES DEBUG: XLogWrite: new log file created - consider increasing WAL_FILES ERROR: Cannot insert a duplicate key into unique index ...
Mickey
Sep 16, 2003 at 3:32 am
Sep 16, 2003 at 3:29 pm -
Hi all, I have a question: I deleted half of the records in my table and to free up the space I do a VACUUM VERBOSE. Is it normal that my VACUUM VERBOSE runs in a loop? If not, what can I do to free ...
Wim
Sep 15, 2003 at 5:26 pm
Sep 15, 2003 at 6:25 pm -
I'm trying to initialize and start postgresql under Red Hat 8 using the command: /etc/rc.d/init.d/postgresql start The script fails, and from looking at the log, it would appear that the error ...
White, Benjamin
Sep 12, 2003 at 9:02 pm
Sep 13, 2003 at 5:55 am -
Hi, I posted this question before on this list but got no replies and still didn't find the answer myself, so here's another attempt: How can I find the currently connected users? I.e. what query ...
M. Bastin
Sep 12, 2003 at 10:11 am
Sep 12, 2003 at 3:53 pm -
I am using a BDE connection from a windows app I'm building to connect to Postgres 7.3.2 running on Redhat on a linux box. When I attempt to Post the dataset which I have loaded with a very large ...
Derrick Betts
Sep 11, 2003 at 2:35 am
Sep 11, 2003 at 2:27 pm -
Hi, Is there a way to find out which files in $PGDATA belong to which database? I need that information for accounting purposes (users are billed per Gbyte of data). In mysql it is very easy, because ...
Oliver Fromme
Sep 10, 2003 at 10:13 am
Sep 10, 2003 at 4:08 pm -
I am a Postgres novice. I have not done anything in the way of configuring the DB differently from what the defaults are. Here is my problem... I am sending the source text from web pages to the DB ...
Derrick Betts
Sep 8, 2003 at 3:40 pm
Sep 8, 2003 at 4:07 pm -
Is there some easy way I can take an old PGDATA directory and load it into a new instance of Postgres? My server was rebuilt, and I didn't get a chance to dump the database to restore it in the new ...
Damon Courtney
Sep 5, 2003 at 4:46 pm
Sep 7, 2003 at 1:06 am -
I have a few databases that set for ASCII encoding right now. Is there a way to convert them to Unicode? I tried using "alter database mConceptsEd set encoding='UNICODE' and about a hundred other ...
Brad Rhine
Sep 5, 2003 at 12:40 pm
Sep 6, 2003 at 7:24 am -
After a successful install, and with postmaster running, we cannot get psql (or any of the psql-dependent scripts) to run; The error message is: ld.so.1: /usr/local/app/pgsql/bin/psql: fatal: ...
David Rickard
Sep 5, 2003 at 8:16 pm
Sep 5, 2003 at 9:35 pm -
Hello, all. I need to transfer a database from postgres 7.3.3 to another server, managed by other people, running version 7.2.3. So, I've pg_dump'ed the db with SQL output. While visually inspecting ...
Marcus Andree S. Magalhaes
Sep 4, 2003 at 4:13 pm
Sep 4, 2003 at 4:29 pm -
So lets say I got a table A(x,y,z, Q) ordered by column Q, with contents like so: x y z Q ------------------------ 21 5 x 1 21 5 x 2 43 10 t 3 1 2 a 5 43 10 t 10 21 5 x 50 what I would like is to ...
LH
Sep 4, 2003 at 2:54 am
Sep 4, 2003 at 6:13 am
Group Overview
group | pgsql-novice |
categories | postgresql |
discussions | 96 |
posts | 314 |
users | 110 |
website | postgresql.org |
irc | #postgresql |
110 users for September 2003
Archives
- August 2013 (95)
- July 2013 (81)
- June 2013 (29)
- May 2013 (56)
- April 2013 (42)
- March 2013 (42)
- February 2013 (104)
- January 2013 (41)
- December 2012 (12)
- November 2012 (61)
- October 2012 (70)
- September 2012 (61)
- August 2012 (94)
- July 2012 (112)
- June 2012 (103)
- May 2012 (127)
- April 2012 (92)
- March 2012 (155)
- February 2012 (120)
- January 2012 (104)
- December 2011 (149)
- November 2011 (125)
- October 2011 (88)
- September 2011 (77)
- August 2011 (86)
- July 2011 (92)
- June 2011 (165)
- May 2011 (125)
- April 2011 (121)
- March 2011 (160)
- February 2011 (116)
- January 2011 (147)
- December 2010 (126)
- November 2010 (195)
- October 2010 (173)
- September 2010 (197)
- August 2010 (160)
- July 2010 (159)
- June 2010 (226)
- May 2010 (158)
- April 2010 (131)
- March 2010 (161)
- February 2010 (204)
- January 2010 (107)
- December 2009 (50)
- November 2009 (193)
- October 2009 (93)
- September 2009 (127)
- August 2009 (244)
- July 2009 (160)
- June 2009 (108)
- May 2009 (135)
- April 2009 (129)
- March 2009 (71)
- February 2009 (56)
- January 2009 (136)
- December 2008 (66)
- November 2008 (104)
- October 2008 (102)
- September 2008 (90)
- August 2008 (78)
- July 2008 (83)
- June 2008 (66)
- May 2008 (82)
- April 2008 (126)
- March 2008 (94)
- February 2008 (140)
- January 2008 (158)
- December 2007 (72)
- November 2007 (128)
- October 2007 (126)
- September 2007 (121)
- August 2007 (132)
- July 2007 (113)
- June 2007 (188)
- May 2007 (157)
- April 2007 (138)
- March 2007 (122)
- February 2007 (169)
- January 2007 (110)
- December 2006 (108)
- November 2006 (152)
- October 2006 (176)
- September 2006 (225)
- August 2006 (327)
- July 2006 (239)
- June 2006 (226)
- May 2006 (260)
- April 2006 (311)
- March 2006 (218)
- February 2006 (278)
- January 2006 (321)
- December 2005 (338)
- November 2005 (245)
- October 2005 (253)
- September 2005 (218)
- August 2005 (287)
- July 2005 (204)
- June 2005 (224)
- May 2005 (322)
- April 2005 (383)
- March 2005 (356)
- February 2005 (293)
- January 2005 (388)
- December 2004 (276)
- November 2004 (279)
- October 2004 (207)
- September 2004 (222)
- August 2004 (333)
- July 2004 (203)
- June 2004 (122)
- May 2004 (148)
- April 2004 (153)
- March 2004 (230)
- February 2004 (215)
- January 2004 (309)
- December 2003 (240)
- November 2003 (214)
- October 2003 (265)
- September 2003 (314)
- August 2003 (321)
- July 2003 (267)
- June 2003 (337)
- May 2003 (344)
- April 2003 (276)
- March 2003 (262)
- February 2003 (304)
- January 2003 (357)
- December 2002 (267)
- November 2002 (265)
- October 2002 (286)
- September 2002 (211)
- August 2002 (196)
- July 2002 (264)
- June 2002 (177)
- May 2002 (362)
- April 2002 (277)
- March 2002 (221)
- February 2002 (285)
- January 2002 (197)
- December 2001 (123)
- November 2001 (233)
- October 2001 (202)
- September 2001 (130)
- August 2001 (144)
- July 2001 (131)
- June 2001 (119)
- May 2001 (156)
- April 2001 (197)
- March 2001 (264)
- February 2001 (147)
- January 2001 (328)
- December 2000 (241)
- November 2000 (207)
- October 2000 (171)
- September 2000 (112)
- August 2000 (159)
- July 2000 (161)
- June 2000 (123)
- May 2000 (47)