php-windows Digest 13 Mar 2004 07:52:20 -0000 Issue 2162

2004-03-12 Thread php-windows-digest-help
php-windows Digest 13 Mar 2004 07:52:20 - Issue 2162 Topics (messages 23117 through 23125): Re: Email Servers 23117 by: Manuel Lemos 23118 by: jon roig Re: MSSQL inserting into a table with a valid result set 23119 by: Gerardo Rojas 23120 by: Svensson, B.A.T.

RE: [PHP-WIN] MSSQL inserting into a table with a valid result se t

2004-03-12 Thread Svensson, B.A.T. (HKG)
You can a) spool your result set to a tab delimited file and bulk load (should be the fastest way), or b) use the same file and use bulk insert, or c) insert the result set "manually" with php into some table that you either create on the fly or already have availabe in the target database, etc, et

RE: [PHP-WIN] MSSQL inserting into a table with a valid result set

2004-03-12 Thread Robert Twitty
Hi Gerardo If I understand you correctly, you can use the odbtp extension to do something like the following: $con1 = odbtp_connect( 'server1', 'user1', 'pass1', 'database1' ) or die; $con2 = odbtp_connect( 'server2', 'user2', 'pass2', 'database2' ) or die; $sql = "SELECT FieldA, FieldB, FieldC

[PHP-WIN] Re: MSSQL inserting into a table with a valid result set

2004-03-12 Thread hubo
You might want to try the SQL insert into sometable select * from someothertable where something = somethingelse "Gerardo Rojas" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] I have a valid result set from running a simple query. Is there a way of inserting this into an exis

RE: [PHP-WIN] MSSQL inserting into a table with a valid result set

2004-03-12 Thread Frank M. Kromann
The short answer os 'No' SQL statements are precessed by the SQL server and returned to the client (PHP) as a result. SQL Server has no knowledge about PHP or any other tools building on ODBC/dblib/OLEDB or any other protocol used to communicate with the server. - Frank > I don't understand your

RE: [PHP-WIN] MSSQL inserting into a table with a valid result set

2004-03-12 Thread Gerardo Rojas
According to your last email, i can accomplish my goal, by doing: insert into tablename select x where is another table i presume. I don't have another table, all I have is a valid $result from running a query. I see what you mean, the thing is that one query is from 1 remote db and th

RE: [PHP-WIN] MSSQL inserting into a table with a valid result set

2004-03-12 Thread Svensson, B.A.T. (HKG)
I don't understand your question. On Fri, 2004-03-12 at 16:42, Gerardo Rojas wrote: > Can i do a select from a PHP: resource (positive MSSQL result identifier) > > > -- > Gerardo S. Rojas > mailto: [EMAIL PROTECTED] > > > -Original Message- > From: Svensson, B.A.T. (HKG) [mailto:[EMAIL

RE: [PHP-WIN] MSSQL inserting into a table with a valid result set

2004-03-12 Thread Gerardo Rojas
Can i do a select from a PHP: resource (positive MSSQL result identifier) -- Gerardo S. Rojas mailto: [EMAIL PROTECTED] -Original Message- From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 3:25 PM To: '[EMAIL PROTECTED] ' Subject: RE: [PHP-WIN] MSSQL

RE: [PHP-WIN] Email Servers

2004-03-12 Thread jon roig
I really dig the pegusus mail server. Easy to setup. Free. Works flawlessly. http://www.pmail.com -- jon -Original Message- From: Will [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004 6:41 AM To: 'Php-Windows ' Subject: RE: [PHP-WIN] Email Servers The email address that

[PHP-WIN] Re: Email Servers

2004-03-12 Thread Manuel Lemos
Hello, On 03/12/2004 04:25 AM, Will wrote: I was wondering what everyone uses for there email servers? I have been having problems with bounced emails with an error. A rely error. It only happens with certain email address. My system is Windows XP, running Apache 1.2, PHP, MySQL. This is a comm

php-windows Digest 12 Mar 2004 13:40:55 -0000 Issue 2161

2004-03-12 Thread php-windows-digest-help
php-windows Digest 12 Mar 2004 13:40:55 - Issue 2161 Topics (messages 23111 through 23116): Email Servers 23111 by: Will 23113 by: Firman Wandayandi 23114 by: Svensson, B.A.T. (HKG) 23115 by: Roy Henderson 23116 by: Will Scheduled Tasks 23112

RE: [PHP-WIN] Email Servers

2004-03-12 Thread Will
The email address that I am sending it to, which is me bounces back saying that it is an open rely and it will not be delivered. I know the email is used because it is my own. ~WILL~ -Original Message- From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004

RE: [PHP-WIN] Email Servers

2004-03-12 Thread Roy Henderson
Originally, I used the servers provided by my ISP host ... but moved from that because of reliability issues. As an immediate replacement, I simply ran Microsoft SMTP and that worked reasonably although I did find it would leave mail sitting in the out queue sometimes. However, what I really want

RE: [PHP-WIN] Email Servers

2004-03-12 Thread Svensson, B.A.T. (HKG)
What is your problem with bounced emails? You can just drop them if they are not important, or try to re-send them later like three times and then give up, and mark the e-mail adress as invalid, or whatever. P.S. Bounced e-mail is something we all need to learn to live with. It will happen weath