RE: Unable to compile DBI using mingw

2002-11-11 Thread Sterin, Ilya (I.)
What compiler is your perl compiled with? All modules must be compiled using the same compiler. Ilya -Original Message- From: [EMAIL PROTECTED] [mailto:raphi.net;voila.fr] Sent: Monday, November 11, 2002 2:40 AM To: dbi-users Subject: Unable to compile DBI using mingw Hi, I am

Locking a table

2002-11-11 Thread John Gedeon
Is there a way to easily lock a table ? so that no updates can happen untill my script is done? I am using DBD::Oracle? Proverbs 3:5 Trust in the Lord with all your heart and lean not on your own understanding;

Re: Locking a table

2002-11-11 Thread Ronald J Kimball
On Mon, Nov 11, 2002 at 12:06:23PM -0800, John Gedeon wrote: Is there a way to easily lock a table ? so that no updates can happen untill my script is done? I am using DBD::Oracle? Turn off AutoCommit, and use the LOCK TABLE command. e.g. $dbh-do(LOCK TABLE mytable IN EXCLUSIVE MODE); To

Re: Locking a table

2002-11-11 Thread Tim Harsch
This question comes up from time to time. The answer is: yes you can, but why would you? ie. If you're trying to avoid snapshot too old errors, then you probably just need to adjust your rollback segments to be effective for your environment. Locking the table just makes your problems worse in

Re: Locking a table

2002-11-11 Thread Hardy Merrill
Ronald J Kimball [[EMAIL PROTECTED]] wrote: On Mon, Nov 11, 2002 at 12:06:23PM -0800, John Gedeon wrote: Is there a way to easily lock a table ? so that no updates can happen untill my script is done? I am using DBD::Oracle? Turn off AutoCommit, and use the LOCK TABLE command.

DBD-Oracle-1.12 compilation fail on hp-unix 11

2002-11-11 Thread Zhao, Yi (CRTRES)
Title: DBD-Oracle-1.12 compilation fail on hp-unix 11 Please help! Here is log files: Makefile.PL.log make.log perl-V.log Oracle version=8.0.5.1(64bit) I am suspecting that is Oracle 8.0.5.1 OCI library bug. Please let me know if it is the case, what should I do about it in

Problems when running make

2002-11-11 Thread Todd, Tracey
I am trying to install DBI-1.30. The OS is Solaris 2.8. When doing the perl Makefile.PL it runs o.k., but when doing the make I get an error. Here is an output when doing perl Makefile.PL: # perl Makefile.PL *** Note: The optional PlRPC-modules (RPC::PlServer etc) are not installed.

RE: Unable to compile DBI using mingw

2002-11-11 Thread [EMAIL PROTECTED]
I am using perl 5.8.0 which I compiled using gcc 3.2 on win95 What compiler is your perl compiled with? All modules must be compiled using the same compiler. Ilya -Original Message- From: [EMAIL PROTECTED] [mailto:raphi.net;voila.fr] Sent: Monday, November 11, 2002 2:40 AM To:

Re: Unable to compile DBI using mingw

2002-11-11 Thread Greg Matheson
On Tue, 12 Nov 2002, [EMAIL PROTECTED] wrote: I am using perl 5.8.0 which I compiled using gcc 3.2 on win95 What compiler is your perl compiled with? All modules must be compiled using the same compiler. Is your problem with dmake? LIke this?