Re: [PHP-DB] Losing the ability to connect to Oracle database

2005-04-19 Thread Christopher Jones
Leo D. Geoffrion wrote:
I recently upgraded to PHP5 and now have a curious Oracle problem.
The PHP scripts query the database fine.  Then overnight, the database 
shuts down for backup and restarts.  The next day, PHP can no longer 
connect to the database until I restart Apache.  Then, it's happy until 
Oracle restarts the next night.

We did not encounter this problem with PHP4.
I've tried adjusting the php command from the old ocilogon() to 
oci_connect() but the problem continues.  Incidentally, I am using a 
simple connection, not a persistent one.

Can someone advise what's wrong here or how to get PHP/Apache to survive 
a database restart.

There were some changes to connection in PHP5.  I guess this might be a
symptom, but I recall similar things reported with PHP4.  Can you log a PHP
bug so the problem can be tracked?
Chris
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] Losing the ability to connect to Oracle database

2005-04-20 Thread Leo D. Geoffrion
Turns out that it's covered in bug report 30808.
I've applied the edit mentioned there and will see if this solves my 
problem (have to wait for the next Oracle restart overnight).

The discussion there is quite revealing about the fact that oci8 
connections are always persistent even if you do not ask for a 
persistent connect of explicitly call for a disconnect.

Seems to me that ought to be stated in the oci8 documentation.
Christopher Jones wrote:
Leo D. Geoffrion wrote:
I recently upgraded to PHP5 and now have a curious Oracle problem.
The PHP scripts query the database fine.  Then overnight, the database 
shuts down for backup and restarts.  The next day, PHP can no longer 
connect to the database until I restart Apache.  Then, it's happy 
until Oracle restarts the next night.

We did not encounter this problem with PHP4.
I've tried adjusting the php command from the old ocilogon() to 
oci_connect() but the problem continues.  Incidentally, I am using a 
simple connection, not a persistent one.

Can someone advise what's wrong here or how to get PHP/Apache to 
survive a database restart.

There were some changes to connection in PHP5.  I guess this might be a
symptom, but I recall similar things reported with PHP4.  Can you log a PHP
bug so the problem can be tracked?
Chris
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] Losing the ability to connect to Oracle database

2005-04-20 Thread Michael Caplan
Hi Leo,

We are having the same problem.  Check out the bug I filed many months ago
http://bugs.php.net/bug.php?id=30808  I can't for the life of me figure out
why the bug is suspended, as this seems to be a common issue with Oracle and
php5.  Perhaps you should also and your comments to the bug report.

To "resolve" the issue, we do an apache restart every time the db goes down.
This flushes whatever connections php pools to Oracle (sounds weird
considering we are doing oci8nlogon).

I really hope that the OCI8 library gets some serious attention soon.  In my
mind this is a show stopper, and it appears that there are a few other big
ones lying around...

Michael


-Original Message-
From: Leo D. Geoffrion [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 19, 2005 8:27 AM
To: php-db@lists.php.net
Subject: [PHP-DB] Losing the ability to connect to Oracle database

I recently upgraded to PHP5 and now have a curious Oracle problem.

The PHP scripts query the database fine.  Then overnight, the database 
shuts down for backup and restarts.  The next day, PHP can no longer 
connect to the database until I restart Apache.  Then, it's happy until 
Oracle restarts the next night.

We did not encounter this problem with PHP4.

I've tried adjusting the php command from the old ocilogon() to 
oci_connect() but the problem continues.  Incidentally, I am using a 
simple connection, not a persistent one.

Can someone advise what's wrong here or how to get PHP/Apache to survive 
a database restart.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



CONFIDENTIALITY NOTICE
This message contains confidential information intended only for the use of
the individual or entity named as recipient. Any dissemination, distribution
or copying of this communication by anyone other than the intended recipient
is strictly prohibited. If you have received this message in error, please
immediately notify us and delete your copy. Thank you.

AVIS DE CONFIDENTIALITÉ
Les informations contenues aux présentes sont de nature privilégiée et
confidentielle. Elles ne peuvent être utilisées que par la personne ou
l'entité dont le nom paraît comme destinataire. Si le lecteur du présent
message n'est pas le destinataire prévu, il est par les présentes prié de
noter qu'il est strictement interdit de divulguer, de distribuer ou de
copier ce message. Si ce message vous a été transmis par mégarde, veuillez
nous en aviser immédiatement et supprimer votre copie. Merci.

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Losing the ability to connect to Oracle database

2005-04-20 Thread Michael Caplan
Leo,

Please let me know how that works for you.  I don't remember the specifics
(if we where testing using plogon, nlogon or just logon), but we did try and
implement that fix and it didn't work for us.  

Thanks,

Michael


-Original Message-
From: Leo D. Geoffrion [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 20, 2005 6:03 AM
To: Michael Caplan
Subject: Re: [PHP-DB] Losing the ability to connect to Oracle database

Yes, I just found 30808.  It's suspended because the fix is stated in 
the discussion (uncomment out a small section of oci8.c), but for 
performance reasons they don't want to make this part of the standard code.

I've rebuilt php5 now with the change in place and will see if this 
fixes the problem for my systems.  I can confirm that it's at least 
harmless.


Michael Caplan wrote:

>Hi Leo,
>
>We are having the same problem.  Check out the bug I filed many months ago
>http://bugs.php.net/bug.php?id=30808  I can't for the life of me figure out
>why the bug is suspended, as this seems to be a common issue with Oracle
and
>php5.  Perhaps you should also and your comments to the bug report.
>
>To "resolve" the issue, we do an apache restart every time the db goes
down.
>This flushes whatever connections php pools to Oracle (sounds weird
>considering we are doing oci8nlogon).
>
>I really hope that the OCI8 library gets some serious attention soon.  In
my
>mind this is a show stopper, and it appears that there are a few other big
>ones lying around...
>
>Michael
>
>
>-Original Message-
>From: Leo D. Geoffrion [mailto:[EMAIL PROTECTED] 
>Sent: Tuesday, April 19, 2005 8:27 AM
>To: php-db@lists.php.net
>Subject: [PHP-DB] Losing the ability to connect to Oracle database
>
>I recently upgraded to PHP5 and now have a curious Oracle problem.
>
>The PHP scripts query the database fine.  Then overnight, the database 
>shuts down for backup and restarts.  The next day, PHP can no longer 
>connect to the database until I restart Apache.  Then, it's happy until 
>Oracle restarts the next night.
>
>We did not encounter this problem with PHP4.
>
>I've tried adjusting the php command from the old ocilogon() to 
>oci_connect() but the problem continues.  Incidentally, I am using a 
>simple connection, not a persistent one.
>
>Can someone advise what's wrong here or how to get PHP/Apache to survive 
>a database restart.
>
>  
>

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Leo D. Geoffrion, Ph.D.   EMAIL:   [EMAIL PROTECTED]
Skidmore College Retiree  PHONE:   518 580-0555

Currently:
  Senior Systems Administrator
  SGS Testcom Inc.
  2911 Route 9
  Ballston Spa, NY 12020
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=



CONFIDENTIALITY NOTICE
This message contains confidential information intended only for the use of
the individual or entity named as recipient. Any dissemination, distribution
or copying of this communication by anyone other than the intended recipient
is strictly prohibited. If you have received this message in error, please
immediately notify us and delete your copy. Thank you.

AVIS DE CONFIDENTIALITÉ
Les informations contenues aux présentes sont de nature privilégiée et
confidentielle. Elles ne peuvent être utilisées que par la personne ou
l'entité dont le nom paraît comme destinataire. Si le lecteur du présent
message n'est pas le destinataire prévu, il est par les présentes prié de
noter qu'il est strictement interdit de divulguer, de distribuer ou de
copier ce message. Si ce message vous a été transmis par mégarde, veuillez
nous en aviser immédiatement et supprimer votre copie. Merci.

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Losing the ability to connect to Oracle database

2005-04-21 Thread Leo D. Geoffrion
It worked!
I did not need to restart apache this morning in order to get an oracle 
connection.

Michael Caplan wrote:
Leo,
Please let me know how that works for you.  I don't remember the specifics
(if we where testing using plogon, nlogon or just logon), but we did try and
implement that fix and it didn't work for us.  

Thanks,
Michael
-Original Message-
From: Leo D. Geoffrion [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 20, 2005 6:03 AM
To: Michael Caplan
Subject: Re: [PHP-DB] Losing the ability to connect to Oracle database

Yes, I just found 30808.  It's suspended because the fix is stated in 
the discussion (uncomment out a small section of oci8.c), but for 
performance reasons they don't want to make this part of the standard code.

I've rebuilt php5 now with the change in place and will see if this 
fixes the problem for my systems.  I can confirm that it's at least 
harmless.

Michael Caplan wrote:

Hi Leo,
We are having the same problem.  Check out the bug I filed many months ago
http://bugs.php.net/bug.php?id=30808  I can't for the life of me figure out
why the bug is suspended, as this seems to be a common issue with Oracle
and
php5.  Perhaps you should also and your comments to the bug report.
To "resolve" the issue, we do an apache restart every time the db goes
down.
This flushes whatever connections php pools to Oracle (sounds weird
considering we are doing oci8nlogon).
I really hope that the OCI8 library gets some serious attention soon.  In
my
mind this is a show stopper, and it appears that there are a few other big
ones lying around...
Michael
-Original Message-
From: Leo D. Geoffrion [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 19, 2005 8:27 AM
To: php-db@lists.php.net
Subject: [PHP-DB] Losing the ability to connect to Oracle database

I recently upgraded to PHP5 and now have a curious Oracle problem.
The PHP scripts query the database fine.  Then overnight, the database 
shuts down for backup and restarts.  The next day, PHP can no longer 
connect to the database until I restart Apache.  Then, it's happy until 
Oracle restarts the next night.

We did not encounter this problem with PHP4.
I've tried adjusting the php command from the old ocilogon() to 
oci_connect() but the problem continues.  Incidentally, I am using a 
simple connection, not a persistent one.

Can someone advise what's wrong here or how to get PHP/Apache to survive 
a database restart.



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] Losing the ability to connect to Oracle database

2005-04-21 Thread Leo D. Geoffrion
The patch described in 30808 worked fine last night.
Leo D. Geoffrion wrote:
Turns out that it's covered in bug report 30808.
I've applied the edit mentioned there and will see if this solves my 
problem (have to wait for the next Oracle restart overnight).

The discussion there is quite revealing about the fact that oci8 
connections are always persistent even if you do not ask for a 
persistent connect of explicitly call for a disconnect.

Seems to me that ought to be stated in the oci8 documentation.
Christopher Jones wrote:
Leo D. Geoffrion wrote:
I recently upgraded to PHP5 and now have a curious Oracle problem.
The PHP scripts query the database fine.  Then overnight, the 
database shuts down for backup and restarts.  The next day, PHP can 
no longer connect to the database until I restart Apache.  Then, it's 
happy until Oracle restarts the next night.

We did not encounter this problem with PHP4.
I've tried adjusting the php command from the old ocilogon() to 
oci_connect() but the problem continues.  Incidentally, I am using a 
simple connection, not a persistent one.

Can someone advise what's wrong here or how to get PHP/Apache to 
survive a database restart.

There were some changes to connection in PHP5.  I guess this might be a
symptom, but I recall similar things reported with PHP4.  Can you log 
a PHP
bug so the problem can be tracked?

Chris
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php