Search Discussions
-
I have a table with a primary field and a few other fields. What is the fastest way to do an insert into that table assuming that sometimes I might try to insert a record with a duplicate primary key ...
Jean-Christian Imbeault
Jul 2, 2003 at 12:11 am
Jul 2, 2003 at 8:35 am -
Hello, We are currently working on a project where we need to limit number of records in a table to a certain number. As soon as the number has been reached, for each new row the oldest row should be ...
Kirill Ponazdyr
Jul 16, 2003 at 3:59 pm
Jul 18, 2003 at 1:41 pm -
Does anyone use YY-MM-DD for date input? Right now, it only works mostly for pre-2000 dates because we can detect that 97-02-03 is a year, while we can not detect that in 03-02-01. We are considering ...
Bruce Momjian
Jul 25, 2003 at 8:02 pm
Jul 30, 2003 at 1:20 am -
Hi, this is a general RDBMS question, not specific to pg. It occurred to me while I was trying to design an interface between application and SQL. Suppose that the user fills in a complex query form, ...
Antonios Christofides
Jul 13, 2003 at 10:24 am
Jul 17, 2003 at 6:52 pm -
Couple of questions on datat types and performance 1. varchar vs varchar(2) I created a database schema and based on the test data I had to work with, I couldn't really determine the max size of a ...
Jay O'Connor
Jul 4, 2003 at 3:16 pm
Jul 21, 2003 at 2:31 am -
Here is a problem a ran into: testdb=# create table test (x int); CREATE TABLE testdb=# create table test_view as select * from test; SELECT testdb=# create rule insert_test as on insert to test_view ...
Dmitry Tkach
Jul 15, 2003 at 4:14 pm
Jul 22, 2003 at 7:35 pm -
Hi @ all, i've a little problem with two tables and FOREIGN KEYs. I've read about this long time ago, but didn't remember me where. Well, I hope you can help me. I've create two TABLEs "counties" and ...
Kay-uwe.genz
Jul 28, 2003 at 4:24 pm
Jul 29, 2003 at 8:07 pm -
I cannot build the latest release on OS X Jaguar. Any ideas? Details below... Running GCC 3.3 from Apple: hunter% gcc -v Reading specs from /usr/libexec/gcc/darwin/ppc/3.3/specs Thread model: posix ...
Hunter Hillegas
Jul 28, 2003 at 3:39 am
Sep 28, 2003 at 2:00 am -
Hi all, I have received a question via the Advocacy site and I am not knowledgeable enough to answer. Can you help? The question is: can PostgreSQL handle between 10'000 and 40'000 simultaneous ...
Francois Suter
Jul 18, 2003 at 3:00 pm
Jul 20, 2003 at 3:55 am -
Anyone seen this ad lately? ;) http://ads.osdn.com/?ad_id=83&alloc_id=1055&site_id=2&request_id=1792929&1059014249841 Wonder why SAP is so unsung ... Jean-Christian Imbeault
Jean-Christian Imbeault
Jul 24, 2003 at 2:45 am
Jul 25, 2003 at 6:24 am -
Just having a small argument with an application developer ... is using 0/1 for boolean types SQL compliant? I am trying to convince him that the proper SQL compliant (and postgresql compliant) ...
Jean-Christian Imbeault
Jul 23, 2003 at 6:48 am
Jul 24, 2003 at 4:43 pm -
16
psql -e
The echo feature of psql echos the query after its executed. does it makes more sense to have the reverse. when we execute an sql batch we are more interested to know the query when psql apparently ...Rajesh Kumar Mallah
Jul 24, 2003 at 6:23 am
Jul 31, 2003 at 4:24 am -
Nigel J. Andrews
Jul 20, 2003 at 12:33 pm
Jul 21, 2003 at 5:07 pm -
Hi, yesterday I ran vaccumdb on one of our postgresql databases. As of today, whenever I try to connect to the postmaster from Windows using the latest ODBC driver the postmaster crashes and restarts ...
Luis Magaña
Jul 16, 2003 at 4:32 pm
Jul 17, 2003 at 8:59 pm -
I'm testing a database against the 7.4 CVS, so I did a pg_dumpall and a restore on another system. The database has around 130 user tables which take up a bit under 15GB of disk space. The dump file ...
Nolan
Jul 16, 2003 at 5:16 pm
Aug 17, 2003 at 3:14 am -
13
How to do?
Hi, Have question.... How to do such like this: I have: select <column list form <tables where <where statement ; how to make one column be row numbers in result? and second one: have select like ...Robert Partyka
Jul 30, 2003 at 12:17 pm
Aug 6, 2003 at 2:33 pm -
How to go about scheduled backup in Postgresql. What are the exact steps to be followed? Does anyone know this? Thanks and Regards, Kallol.
Kallol Nandi
Jul 18, 2003 at 10:28 am
Jul 18, 2003 at 2:44 pm -
Hello, I am planning to implement a system, where there is one Master database running on a Linux box with as many resources as necessary, and there are one or more client pc computers,with processor ...
Gogulus
Jul 29, 2003 at 4:59 pm
Jul 30, 2003 at 9:14 pm -
Suppose the following: create table test (a int primary key); insert into test values (1); select * from test; a = 1 In Postgresql if you do the following in a transaction (either with autocommit=off ...
Jörg Schulz
Jul 14, 2003 at 7:47 am
Jul 14, 2003 at 3:36 pm -
I still having that same error on my simple query: Tables has been rebuild, reindexed, and DB has been moved to another computer, worked for a while, and now aging same story. We run PG 7.3 I repeat ...
Maksim Likharev
Jul 8, 2003 at 2:19 am
Jul 12, 2003 at 11:59 pm -
Hi, all, I've met a wierd problem on a Solaris 8/sparc box with postgresql 7.3.3: the server would automatically shutdown after a period of time of not operating. The log show something like this: ...
Weiping He
Jul 4, 2003 at 6:54 am
Jul 8, 2003 at 9:49 am -
hi, we are running Postgres 7.3.3 successfully on our portal sites under Solaris. For a new project we have the requirement that N processes need to write update/insert within the same time and ...
Andreas Jung
Jul 29, 2003 at 10:32 am
Jul 30, 2003 at 3:08 pm -
All, What impact in performance does vacuum have on an active database? I'm being asked about this...or rather...someone is questioning the use of postgresql because of this Thanks Jay
Jay O'Connor
Jul 14, 2003 at 8:18 pm
Jul 21, 2003 at 9:01 pm -
Hello, had Somebody compared Postgresql vrs Firebird? What is the main diferent between this DBs? performance? support? flexibility?. Best Regards! -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG ...
Erick Dennis
Jul 15, 2003 at 8:26 pm
Jul 16, 2003 at 2:49 pm -
in 7.2 doing a data only dump (pg_dump -a -x db dump) would give output like: UPDATE "pg_class" SET "reltriggers" = 0 WHERE "relname" = 'status'; COPY "status" FROM stdin; 0 INFO 1 WARNING 2 CRIT \. ...
Robert Treat
Jul 31, 2003 at 2:31 pm
Aug 1, 2003 at 3:47 pm -
Please, help. versions: 7.3.3, 7.3.4 Server don't recycles or removes WAL files at all, generating 12-20 files every day. -rw------- 1 postgres postgres 16777216 Jul 29 01:54 0000000000000000 ...
Michael Govorun
Jul 30, 2003 at 5:52 pm
Jul 31, 2003 at 8:16 am -
Hi All, I have posted this before, but have not yet got any resolutions on it. I am hoping someone with experience can help me out. I am running Postgresql 7.3.2 on Solaris 5.9. I am trying to ...
Errol Neal
Jul 24, 2003 at 3:54 pm
Jul 25, 2003 at 5:29 pm -
This one is irritating. Here's some psql output: ================================================================================ dumps=# \d fal_profdel Table "fal_profdel" Attribute | Type | ...
Philip Greer
Jul 21, 2003 at 5:05 pm
Jul 21, 2003 at 7:46 pm -
Hi, everybody! I was getting these errors (see subject) from time to time on 7.2.1 when trying to analyze tables... trying to repeat the statament would usually work.... I then saw somebody else post ...
Dmitry Tkach
Jul 18, 2003 at 3:49 pm
Jul 18, 2003 at 10:45 pm -
Hello, Vacuum analyze is taking a really long time on a fairly small table and during the time the vacuum is running all "select * from <the table ;" seems to hang untill the vacuum is done. Any help ...
Joe Maldonado
Jul 15, 2003 at 8:09 pm
Jul 17, 2003 at 5:51 pm -
I define an SQL function: CREATE FUNCTION foo(timestamptz) AS ' ...' LANGUAGE 'SQL'; Does the plan for the body get built at creation or execution time? I could have sworn it was execution time, but ...
Richard Huxton
Jul 7, 2003 at 9:03 pm
Jul 8, 2003 at 7:01 pm -
Hy, I am trying to enter 19.00 in a float field... no error but the data (select) is showing 19 without the "trailing" zeros... But for format and standard presentation of money, I need to keep any ...
Mark
Jul 3, 2003 at 7:42 pm
Jul 6, 2003 at 7:33 am -
Hello, I have an attribute in a table which stores hexadecimal numbers as a two-character string, i.e. the attr definition is char(2). Now I need to display these values in decimal, but I wasn´t able ...
Claudio Lapidus
Jul 30, 2003 at 7:49 pm
Jul 31, 2003 at 5:44 am -
All: I don't remember I even seen a document saying PostgreSQL are case sensitive. I just figure out that my column name are case sensitive. Is there any way that I can turn it off or force the ...
Terence Chang
Jul 24, 2003 at 11:34 pm
Jul 25, 2003 at 2:53 pm -
Have an Access 97 database being migrated to Postgres 7.3.3. Access 97 clients will query and write to the Postgres database across a WAN via ODBC. A few questions: 1) How does one pass a record from ...
Raymond
Jul 18, 2003 at 3:50 am
Jul 18, 2003 at 10:50 pm -
Hi, I've run in to this problem with a database we are working. When I restore a database schema, I need to restore the schema 5 times to ensure that the schema is complete. Also some of the ...
Timothy Brier
Jul 9, 2003 at 2:16 am
Jul 9, 2003 at 11:31 am -
Oops forgot to CC the list.
Vincent Hikida
Jul 13, 2003 at 5:13 pm
Jul 25, 2003 at 4:29 am -
So I have to adjust a primary key by adding one to every existing record. Obviously this isn't a routine operation, my data model isn't that messed up. It's a one-time manual operation. However when ...
Greg Stark
Jul 24, 2003 at 4:26 pm
Jul 24, 2003 at 8:43 pm -
Hi all, I am trying to convert a timestamp field to a date. ('1993-08-10 17:48:41.074' to '1993-08-10'). I used date(TIMESTAMP_FIELD), but it seemed working only for date after year 2000 and return ...
Shuai
Jul 23, 2003 at 5:36 pm
Jul 24, 2003 at 12:31 am -
Hi Does anyone else find the site postgresql.org kinda unreliable? Many times it's stalled for a while. And it's not just today, but very often. It's really frustrating especially when I regularly ...
Reuben D. Budiardja
Jul 1, 2003 at 10:01 pm
Jul 2, 2003 at 3:06 am -
We're about to buy a new server for dedicated Postgres serving. It'll be serving 4 - 10 databases (average dump size 20Gb) for various web applications. What is the list's advice on optimum ...
Tom dyson
Jul 24, 2003 at 3:27 pm
Aug 5, 2003 at 10:28 pm -
In Postgresql 7.3, a datatype can be int, text, etc, and also pseudo-types like RECORD, any, etc. These pseudo types are mainly used in CREATE FUNCTIONs, but what if it's used in a CREATE TABLE, esp. ...
Ang Chin Han
Jul 31, 2003 at 10:38 am
Aug 2, 2003 at 2:35 am -
I'm searching for projects that would serve as good PostgreSQL examples. In fact it would be nice to have a place on the PostgreSQL web page that featured some good examples. (If such a place exists ...
Steve Crawford
Jul 23, 2003 at 8:55 pm
Jul 29, 2003 at 4:23 pm -
I'm interested in producing a list of all sequence names and the corresponding last value. Starting with a list of sequence names generated by SELECT c.relname FROM pg_class c WHERE (c.relkind = ...
Btober
Jul 24, 2003 at 12:41 pm
Jul 24, 2003 at 9:21 pm -
Hi, Can anyone tell me what the limitations are regarding records? Say I have a table with 50 fields of 20 characters each. If a table can be 16 TB, how many records can it hold? If you all have any ...
John Bercik
Jul 15, 2003 at 1:45 pm
Jul 21, 2003 at 9:44 pm -
Is there a way to automagically execute a function at connect/disconnect? I was thinking about the possibility to have some kind of automatic cleanup when the client disconnects. I would like to: - ...
Mattias Kregert
Jul 3, 2003 at 3:31 pm
Jul 20, 2003 at 6:31 pm -
Can two postgresql processes (running in different machines) access and work with the same database files in a shared storage scenario? Would there be any problem? Thanks :)
Jordi Sánchez López
Jul 17, 2003 at 12:59 pm
Jul 18, 2003 at 5:04 pm -
Hello, i'm evaluating Postgresql on win32 (winnt, win2k). I'm using a small java benchmark from FirstSQL (see attachments). I've ran the benchmark on three pc's 1) Pentium III 750 MHz Winnt Sp6a, 372 ...
Markus Heinz
Jul 17, 2003 at 12:04 pm
Jul 17, 2003 at 11:29 pm -
I'm trying to convince another open-source project (phpOpenTracker) to modify their current INSERT sql queries. Currently they just do an INSERT into a table without first checking if their might be ...
Jean-Christian Imbeault
Jul 2, 2003 at 5:16 am
Jul 2, 2003 at 8:08 am -
Hi, Still working on converting our schemas over to postgres from mysql, and trying to get the hang of the differences between the two products. I'm trying to figure out how to put comments in our ...
Chad N. Tindel
Jul 24, 2003 at 4:36 am
Aug 1, 2003 at 3:08 pm
Group Overview
group | pgsql-general |
categories | postgresql |
discussions | 366 |
posts | 1,557 |
users | 347 |
website | postgresql.org |
irc | #postgresql |
347 users for July 2003
Archives
- August 2013 (761)
- July 2013 (663)
- June 2013 (644)
- May 2013 (789)
- April 2013 (795)
- March 2013 (663)
- February 2013 (841)
- January 2013 (904)
- December 2012 (821)
- November 2012 (944)
- October 2012 (841)
- September 2012 (940)
- August 2012 (801)
- July 2012 (661)
- June 2012 (733)
- May 2012 (764)
- April 2012 (704)
- March 2012 (984)
- February 2012 (814)
- January 2012 (863)
- December 2011 (916)
- November 2011 (1,172)
- October 2011 (1,102)
- September 2011 (1,114)
- August 2011 (1,074)
- July 2011 (906)
- June 2011 (951)
- May 2011 (993)
- April 2011 (1,080)
- March 2011 (1,095)
- February 2011 (1,004)
- January 2011 (896)
- December 2010 (1,068)
- November 2010 (1,225)
- October 2010 (1,154)
- September 2010 (1,115)
- August 2010 (880)
- July 2010 (1,038)
- June 2010 (1,349)
- May 2010 (1,161)
- April 2010 (1,172)
- March 2010 (1,209)
- February 2010 (1,214)
- January 2010 (1,351)
- December 2009 (1,202)
- November 2009 (476)
- October 2009 (1,234)
- September 2009 (1,234)
- August 2009 (1,254)
- July 2009 (1,440)
- June 2009 (1,417)
- May 2009 (1,215)
- April 2009 (1,177)
- March 2009 (1,366)
- February 2009 (1,330)
- January 2009 (1,174)
- December 2008 (951)
- November 2008 (1,411)
- October 2008 (1,476)
- September 2008 (1,241)
- August 2008 (1,175)
- July 2008 (1,244)
- June 2008 (1,056)
- May 2008 (1,130)
- April 2008 (1,435)
- March 2008 (1,656)
- February 2008 (1,511)
- January 2008 (1,590)
- December 2007 (1,470)
- November 2007 (1,758)
- October 2007 (1,693)
- September 2007 (1,381)
- August 2007 (2,067)
- July 2007 (1,249)
- June 2007 (1,778)
- May 2007 (1,629)
- April 2007 (1,276)
- March 2007 (1,731)
- February 2007 (1,710)
- January 2007 (1,939)
- December 2006 (1,601)
- November 2006 (1,843)
- October 2006 (1,571)
- September 2006 (1,274)
- August 2006 (1,481)
- July 2006 (1,149)
- June 2006 (1,242)
- May 2006 (1,582)
- April 2006 (1,355)
- March 2006 (1,577)
- February 2006 (1,201)
- January 2006 (1,715)
- December 2005 (1,381)
- November 2005 (1,408)
- October 2005 (1,907)
- September 2005 (1,209)
- August 2005 (1,605)
- July 2005 (1,317)
- June 2005 (1,391)
- May 2005 (1,358)
- April 2005 (1,419)
- March 2005 (1,611)
- February 2005 (1,511)
- January 2005 (1,855)
- December 2004 (1,334)
- November 2004 (1,525)
- October 2004 (1,549)
- September 2004 (1,341)
- August 2004 (1,640)
- July 2004 (963)
- June 2004 (1,219)
- May 2004 (936)
- April 2004 (1,188)
- March 2004 (1,223)
- February 2004 (1,326)
- January 2004 (1,670)
- December 2003 (1,638)
- November 2003 (1,747)
- October 2003 (1,575)
- September 2003 (1,857)
- August 2003 (1,786)
- July 2003 (1,557)
- June 2003 (1,927)
- May 2003 (1,290)
- April 2003 (1,564)
- March 2003 (1,565)
- February 2003 (1,761)
- January 2003 (1,625)
- December 2002 (1,225)
- November 2002 (1,477)
- October 2002 (1,432)
- September 2002 (1,401)
- August 2002 (1,246)
- July 2002 (1,869)
- June 2002 (1,337)
- May 2002 (1,185)
- April 2002 (1,254)
- March 2002 (1,363)
- February 2002 (1,418)
- January 2002 (1,181)
- December 2001 (879)
- November 2001 (1,117)
- October 2001 (1,177)
- September 2001 (1,213)
- August 2001 (1,270)
- July 2001 (1,316)
- June 2001 (1,630)
- May 2001 (1,677)
- April 2001 (16)
- March 2001 (1,633)
- February 2001 (1,597)
- January 2001 (1,668)
- December 2000 (1,001)
- November 2000 (1,067)
- October 2000 (1,304)
- September 2000 (992)
- August 2000 (846)
- July 2000 (1,145)
- June 2000 (797)
- May 2000 (832)
- April 2000 (695)
- March 2000 (220)
- February 2000 (478)
- January 2000 (656)
- December 1999 (643)
- November 1999 (506)
- October 1999 (622)
- September 1999 (384)
- August 1999 (494)
- July 1999 (406)
- June 1999 (462)
- May 1999 (405)
- April 1999 (328)
- March 1999 (382)
- February 1999 (360)
- January 1999 (295)
- December 1998 (239)
- November 1998 (266)
- October 1998 (278)
- September 1998 (185)
- August 1998 (224)
- July 1998 (432)
- June 1998 (352)
- May 1998 (134)