Re: Postgres Select

2002-09-30 Thread Cleiton L. Siqueira
Dear friend, I don't know if I've figured out what you want, but I've written a script for you. You can test it! Warning!!! I didn't test it, ok! So. It's the following. #!/usr/bin/perl use Pg; # In you must change to your database name. $conn = Pg::connectdb("dbname="

Re: Postgres Select

2002-09-30 Thread Cleiton L. Siqueira
Dear friend, I don't know if I've figured out what you want, but I've written a script for you. You can test it! Warning!!! I didn't test it, ok! So. It's the following. #!/usr/bin/perl use Pg; # In you must change to your database name. $conn = Pg::connectdb("dbname="

Re: Postgres Select

2002-09-27 Thread Jenda Krynicky
From: Rob <[EMAIL PROTECTED]> > Hi, I'm working on a script that has to find if there is a customer > number in one table that's not in the other. My first thought was to > write all customer numbers out to a file then sort them and go through > the first file one line at a tim

Postgres Select

2002-09-27 Thread Rob
Hi, I'm working on a script that has to find if there is a customer number in one table that's not in the other. My first thought was to write all customer numbers out to a file then sort them and go through the first file one line at a time while going completly through the other file each time.