[GENERAL] Windows Installation Problem

2010-07-05 Thread Len Morgan
(this is after a reboot) and won't continue. What do I have to do to convince the installer that I'm NOT running another instance of the install program? Is something written in the registry? len morgan -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your

Re: [GENERAL] is it tcl problem or pg problem?

2001-08-27 Thread Len Morgan
capture just that value. You might also want to make sure that you are doing a real exit from your script and not just letting it fall through len morgan - Original Message - From: [EMAIL PROTECTED] To: Len Morgan [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, August 27, 2001 10

Re: [GENERAL] valid NULL DATE value

2001-08-24 Thread Len Morgan
with NULL in the text file. If the text file is organized to be read by the COPY command, then use \N instead. len morgan ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send unregister

Re: [GENERAL] concurent updates

2001-07-26 Thread Len Morgan
losing anything. len morgan create table table1 (id int primary key, col1 int); create table table2 (id int primary key references table1(id), col2 int); and the 2 updates : 1) update table2 set id = 1001 where id = 1; 2) update table1 set id = 1001 where id = 1; i can't execute them

Re: [GENERAL] triggering a procedure every X minutes

2001-06-06 Thread Len Morgan
to do the same thing. len morgan ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send unregister YourEmailAddressHere to [EMAIL PROTECTED])

Re: [GENERAL] COPY with default values?

2001-05-25 Thread Len Morgan
I believe COPY is limited to reading ENTIRE records into a table not pieces of them. len morgan -Original Message- From: Jeff Boes [EMAIL PROTECTED] To: Postgres-general [EMAIL PROTECTED] Date: Friday, May 25, 2001 9:20 AM Subject: [GENERAL] COPY with default values? Let's say I have

Re: [GENERAL] COPY with default values?

2001-05-25 Thread Len Morgan
You are correct and if you did your bulk insert with INSERT commands, it will work just fine. The difference is the COPY command which AFAIK was/is intended for backup and restore use. len morgan -Original Message- From: Jeff Boes [EMAIL PROTECTED] To: Postgres-general [EMAIL PROTECTED

Re: [GENERAL] LIKE erratic? or unseen DB corruption?

2001-05-21 Thread Len Morgan
Is it possible that there are spaces after the 'IDC16W' in the field? Try: LIKE 'IDC16W%' and see if that makes a difference. len A direct query gets appropriate rows of data: dbname=# select * from partdef where shpname = 'IDC16W'; pn_id | class | num | mt | ver | loc_id | unit_id |

Re: [GENERAL] SQL Where Like - Range it?!

2001-04-27 Thread Len Morgan
last_name BETWEEN 'A' AND 'Fz' ; worked for me. You could also use BETWEEN 'A' AND 'G' to avoid all of the s at the end. Crude but effective. len morgan ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send

Re: [GENERAL] CREATE TABLE AS... syntax?

2001-04-25 Thread Len Morgan
CREATE TABLE foo (test INT4) AS SELECT number FROM account; I think you want something like: SELECT number INTO TABLE foo FROM account ; len morgan ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

Re: [GENERAL] Yet another Performance Question

2001-04-18 Thread Len Morgan
forget an index when doing it "by hand"). len morgan ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

[GENERAL] 7.1 SRPM woes (Mandrake 7.2)

2001-04-14 Thread Len Morgan
load my finished RPMs when I'm done. Len Morgan ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/users-lounge/docs/faq.html

Re: [GENERAL] FW: Dbf to Pg converter

2001-02-19 Thread Len Morgan
and not the table definitions, etc. The last version I saw was 3.0 but that's been a couple of years. len morgan

Re: [GENERAL] Lower record

2000-12-29 Thread Len Morgan
ly the one immediately below this one). How about: select threadid, commentid, name detail from comments where comentid '$commentid' and threadid='$threadid' ORDER BY commentid DESC LIMIT 1 ; The ORDER BY ... DESC will put the highest commentid first and the LIMIT 1 will only return one rec

[GENERAL] pg_dump help

2000-08-07 Thread Len Morgan
any advice on how I can save these two tables I need so I can get them to my customer I'd appreciate it. Redhat 6.0 OS len morgan

Re: [GENERAL] MOD

2000-07-17 Thread Len Morgan
figure out if "nextscreen" is odd or even. 1 would odd, 0 even. len morgan

Re: [GENERAL] Help: How to store query output in a file !!!

2000-06-14 Thread Len Morgan
From psql: test = \o ouput-file-name test = Enter your query here test = \o This will leave the results of your query in the file "output-file-name" This IS covered in the documentation and from within psql with \h len morgan -Original Message- From: [EMAIL PROTECT

Re: [GENERAL] initdb and exit_nicely...

2000-05-18 Thread Len Morgan
me/postgres instead of PG_DATA? Anyway, my 0.02 dollar's worth. len morgan

Re: [GENERAL] why so big?

2000-05-17 Thread Len Morgan
-Original Message- From: Joseph Shraibman [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Wednesday, May 17, 2000 4:33 PM Subject: [GENERAL] why so big? I've just created a new database and I am wondering... Why are all sequence files 8K? They're one freaking int. How

[GENERAL] Offical 6.5 release

1999-04-22 Thread Len Morgan
to have. I'd rather not roll out 6.4.2 and then have to go to 20 different sites and upgrade them to 6.5 later unless that upgrade process will be easier than it has been in the past. Thanks Len Morgan