Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MYSQL


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Error : Lock Wait Timeout Exceeded; Try Restarting Transaction


i am trying to create a java application using mysql but if i try to create multiple connections, i keep on getting this exception given below. I have read about the TransactionDeadLockDetectionTimeOut option but i am neither able to find config.ini nor i am running the cluster for which this option applies. Code:




View Complete Forum Thread with Replies

Related Forum Messages:
Lock Wait Timeout Exceeded; Try Restarting Transaction
I have a simple query fired on click of a button.

i.e., update table_name set column1='20' , column2='15' where id='1';

Even through the query browser it is giving

Lock wait timeout exceeded; try restarting transaction ,this exception.

The same was working a couple of days before.

what might be the reason for this exception.

View Replies !
Lock Wait Timeout Exceeded; Try Restarting Transaction Even In Single Db Single User
I am updating few databases all which I keep as one transaction using .net connector. The best part is that I can still run into this error of "Lock wait timeout exceeded; try restarting transaction" even though I am the only single soul using my database at that time. Any idea how to over come this problem.

View Replies !
Lock Wait Timeout Execeeded: Try Restarting The Transaction
I am using MySQL 5.1.23 and Jboss 4.2.2. My application is trying to update a ta ble. But it is waiting for the lock on the table for more than 200 seconds. I can see that in the processlist table. After that jboss throws CannotAcquireLock Exeception saying timeout exceedded; try restarting the transaction.

I have a dedicated schema where no one connected to that schema or querying on that table. Transaction timeout is set to 5 mts in my jboss-service.xml. Anyone knows what is wrong here?

View Replies !
Error On Insert: Lock Wait Timeout Exceeded
I've got 6 Java client applications (running on 6 different PC's, including one of them on the database server) reading data from a flat file and inserting data into a table on my database:

[root@appserver2 mysql]# mysqld -V
mysqld Ver 5.1.12-beta-log for unknown-linux-gnu on x86_64 (MySQL Community Server (GPL))

There are total about 12 million lines of data to read from these flat files and INSERT into a Innodb table on the database. Each client application has 20 threads running which run some validation code on the record and then perform the insert. I have not exceeded my max_connections.

Around insert number 450,000 all of the clients started getting the following error:

Exception in Processor.DataArchiveInsert, trying to insert into data_archve, e:
java.sql.SQLException: Lock wait timeout exceeded; try restarting transaction

and also:

Processor.ProcessData(), error inserting claim : java.sql.SQLException: Lock wai
t timeout exceeded; try restarting transaction

The java code for Processor.DataARchiveInsert is: Code:

View Replies !
Lock Wait Timeout Exceeded
I am getting this error when updating a row. I am using mysql 5.0.16nt version.

mysql> update my_sys_seq_no set curr_val=10 where key_col_nm='role_id';
ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

View Replies !
Lock Wait Timeout Exceeded How To Find The Source ?
I am running an application using Innodb. My application is based on transaction concepts. So sometimes I do get this error of "lock wait timeout exceeded" ? I know this is due to some deadlock. But how and where can I analyse to see what is the cause to my this locking problem and how can I overcome this ? Thanks.

View Replies !
Deadlock Found When Trying To Get Lock, Try Restarting Transaction.
Im getting the following SQLException during an insert or a delete or an update statement. "Deadlock found when trying to get lock; try restarting transaction message from server: lock wait timeout exceeded; try restarting transaction".

I have a jsp page which does an insert, i have another jsp page which has a delete query that deletes a particular row, and then tries to insert (using an id,which is a primary key), then there is an update statement. In both these pages, i sometimes get the above mentioned exception. When the Tomcat server is restarted, i do not get the exception.

View Replies !
Lock Wait Issue With Innodb
I must be doing something wrong. Anyhow, here's my table:

mysql> desc test_empty_child_table;
+---------------------------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------------------+---------+------+-----+---------+----------------+
| TEST_EMPTY_CHILD_TABLE_ID | int(11) | | PRI | NULL | auto_increment |
| TEST_EMPTY_TABLE_ID | int(11) | | MUL | 0 | |
+---------------------------+---------+------+-----+---------+----------------+

TEST_EMPTY_CHILD_TABLE_ID has an unique index. Column TEST_EMPTY_TABLE_ID is indexed.

In console #1 I execute this:
mysql> insert into test_empty_child_table (test_empty_table_id) values (100);

In another console (call it #2) I execute this:

mysql> begin;
mysql> delete from test_empty_child_table where test_empty_table_id = 100;
Note: I didn't invoke commit to leave the transaction open.

Go back to console #1, I do:

Mysql> insert into test_empty_child_table (test_empty_table_id) values (200);
This will hang until commit is invoked in console #2 or will throw the lock wait error (ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction);

Why is the delete locking the table?

View Replies !
Timeout Transaction InnoDB
I have a application with invoice and invoice_items, but i need
used transaction to save records.

If only user save data this fine. But if two users save data same time, one
users save correctly and another user go to rollback directly,
if second user save data again this ok.

InnodBd Documentation have a timeOut transaction = 50 Secs.
But, the application save all records in about 2 secs.

The sintax is the next: Code:

View Replies !
4.0.15 Lock Timeout
I'm running the same application on 4.0.1-alpha-win and 4.0.15-win.
Under 4.0.15 I run the same test client as I run against
4.0.1-alpha-win. The behavior is different. In particular, 4.0.15
produces a "Lock wait timeout exceeded; Try restarting transaction"
which does not occur under 4.0.1-alpha-win.

All tables are innoDB.
No "SELECT...FOR UPDATE" is being done.
transaction isolation level is SERIALIZABLE.
Many Selects go through.
The first update hangs, then I get the lock timeout exception.

I don't think the behavior is correct since this code works fine under
4.0.1.

Has anyone else seen unexplained waits on update? If I had done a
SELECT...FOR UPDATE, then I could understand that the wait might be
caused by an uncommitted transaction that performed the SELECT...FOR
UPDATE.

View Replies !
Using Transaction In C# Lock Time Out Problem
I am using Innodb.I have grid and a list of item. Then I run a loop and based on it i will run an update statement which is all in block of transaction. A snippet of the code is as below .

MySqlConnection connectionCentral;
MySqlTransaction transactionCentral = null;
connectionCentral = new MySqlConnection("Address='localhost'Database='trial1'User Name='root'Password=?'");
connectionCentral.Open();
transactionCentral = connectionCentral .BeginTransaction();

for (int j = 0; j < gridReceiveTransfer.RowCount; j++)
{

String myUpdateQuery8 = "Update tblProduct " +
"Set tblProduct.branch1 = tblProduct.branch1 +" + Convert.ToInt32(this.gridReceiveTransfer[8, j].Value.ToString()) +
" Where tblProduct.productID=" + Convert.ToInt32(this.gridReceiveTransfer[0, j].Value.ToString());

MySqlCommand myCommandCentral1 = new MySqlCommand(myUpdateQuery8);
myCommandCentral1.Connection = connectionCentral;
myCommandCentral1.Transaction = transactionCentral;
myCommandCentral1.ExecuteNonQuery();

}

This how i have actually code my code in C#. The error I get is "Lock wait timeout exceeded; try restarting transaction". I know why I get the error is sometime when the update is for the same productID within the same loop. So how can I overcome this problem where I want to keep all the updates within the loop so incase there is one error I want to rollback the whole thing.

View Replies !
My Mysqld (server) Drops Connection, Transaction And Lock After 15 Sec Of Inactivity
I wrote similar question earlier but maybe it was unclear that why is post this question.

Used server/os version
Mysqld 5.0.22 - win 2000 sp3 installed as service

Used Clients:
Mysql.exe default cmd-line client - v 14.12 Distrib 5.0.22
QueryBrowser - gui client - v 1.1.20


To simplify my problem:
I'm unable to use mysql transactions and locks (for update statement) because my server drops connection on every 15 seconds of inactivity despite to what value is set on params in my.ini file or via set variable_name=value statement. This inactivity is cased by user behavior on my binary win32 application. He starts transaction and set row-level lock by opening edit form and it may take some time before commit or rollback can be send to server (usually more than 15 sec).

More info is available on referenced posts:

View Replies !
Error Connecting: Timeout Expired
discovering an issue with creating connections when my db encounters serious load. The exact error that I'm seeing is: "error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached."

should note that this particular app works well in most normal scenarios, and we only see this problem when there are many threads hitting the database for longer than a few minutes. Roughly once an hour we encounter serious load like this.

Here's what I see under 'show variables':
Variable_nameValue
auto_increment_increment1
auto_increment_offset1
autocommitON
automatic_sp_privilegesON
back_log50
basedirD:MySQLMySQL Server 5.1
big_tablesOFF
binlog_cache_size32768
binlog_formatSTATEMENT
bulk_insert_buffer_size8388608
character_set_clientlatin1
character_set_connectionlatin1
character_set_databaselatin1
character_set_filesystembinary
character_set_resultslatin1
character_set_serverlatin1
character_set_systemutf8
character_sets_dirD:MySQLMySQL Server 5.1sharecharsets
collation_connectionlatin1_swedish_ci
collation_databaselatin1_swedish_ci
collation_serverlatin1_swedish_ci
completion_type0
concurrent_insert1
connect_timeout10...............

View Replies !
Subquery Error Causing Timeout
I'm going to pose a general question (first) rather than post my query:
I have this query which normally runs fine but yesterday just ran on and on. It ended up timing out 8 hours later (the default, it seems - but I will change that)
When I EXPLAIN the query it tells me that a subquery returns more than 1 row. Which is fine and I have amended the query. But in that case shouldn't the query have failed, rather than running for 8 hours?
Oh, and why would the query show as sleeping in SHOW PROCESSLIST?

View Replies !
TIMEOUT EXPIRED . TIMEOUT HAS ELAPSED...
I am using MySQL Yog V6.16 GUI. I am also using VS 2005 and .NET Connector 5.2.1

I keep getting "timeout expired. The timeout period elapsed prior to the completion of the operation or the server is not responding".

I use XSD on VS2005 and sometimes stored proc via MySQL.

I have tried connect time out on the appconfig file and even extend the max packets on the myini file.

View Replies !
Maximum Execution Time Of 300 Seconds Exceeded (was "MYSQL Error")
I have a huge database 400mb+ in size which i have exported into a .sql file. I tried to run this export script into a new database and it runs fine until three quarters into the scripts execution and the following error appears:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<br / >
<b>Fatal error</b>: Maximum execution time of 300 seconds exceeded in <b' at li ne 1
I believe this error may relate to "delayed_insert_timeout = 300". How do I increase this limit in mysql - maybe it may solve the problem but then again it may not .

Any advice is most gratefully appreciated - As you can imagine if the script runs fine for 3/4 of it and then an error appears, stating the error is on line 1, it will take me days to go through the whole script (hundreds of thousands of rows) to find the error as I assume the error does not reside on line 1 as this line would have been executed.

I am running the script on mysql 5, and via source /path/****.sql on linux.

View Replies !
How To Change "#1226 - User 'root' Has Exceeded The 'max_questions' Resource" Error
I seem to have set a max_questions variable on my system and my admin console and command prompt don't work with this response:

"#1226 - User 'root' has exceeded the 'max_questions' resource"

How to fix?

And how do I not make thisw mistake again?

View Replies !
Querying For Transaction Totals And Last Transaction Date
I have a list of currency transactions made by users. I need to generate a list of users along with their transaction total (sum for each user) AND the date of their last transaction.

Sound doable?

MySQL 4.1

Data looks like this:

user, amount, date
==============
1, 50, 2003-11-23
2, 34, 2004-10-04
3, 45, 2005-08-30
3, 98, 2006-04-02
3, 76, 2000-02-03
2, 91, 2000-12-04
1, 11, 2003-11-05
3, 22, 2003-03-06
4, 34, 2006-03-07
5, 45, 2006-06-24

I figure I can group by userID but how do I get the date of the most current transaction?

Using the data above, the query would return:
1 (user) 61 (subtotal) 2003-11-23 (last transaction)
2 (user) 125 (subtotal) 2004-10-04 (last transaction)

View Replies !
LOCK Error
Why am I getting this msg before every command in sql backup file while running mysqldump. it only dumps one insert query from each
table..

LOCK TABLES `table1` WRITE;
/*!40000 ALTER TABLE `table1` DISABLE KEYS */;

View Replies !
Grant Lock Tables On Single Table Gives ERROR 1144
Tested on MySQL 4.1.20 and 5.0.33 with similar results. I don't
understand why I cannot grant LOCK TABLES on a single table, while
granting LOCK TABLES on all tables work fine.

mysqlSELECT VERSION()G
*************************** 1. row ***************************
VERSION(): 4.1.20
1 row in set (0.00 sec)

mysqlSELECT CURRENT_USER()G
*************************** 1. row ***************************
CURRENT_USER(): root@localhost
1 row in set (0.02 sec)

mysqlCREATE DATABASE grant_test;
Query OK, 1 row affected (0.04 sec)

mysqlUSE grant_test;
Database changed
mysqlCREATE TABLE t (i INTEGER PRIMARY KEY NOT NULL);
Query OK, 0 rows affected (0.02 sec)

mysqlGRANT SELECT ON grant_test.t TO grant_test_user IDENTIFIED BY
'foobar';
Query OK, 0 rows affected (0.12 sec)

mysqlGRANT LOCK TABLES ON grant_test.t TO grant_test_user IDENTIFIED
BY 'foobar';

ERROR 1144 (42000): Illegal GRANT/REVOKE command; please consult the
manual to see which privileges can be used

mysqlGRANT LOCK TABLES ON grant_test.* TO grant_test_user IDENTIFIED
BY 'foobar';

Query OK, 0 rows affected (0.03 sec)

View Replies !
Mysqldump: Got Error: 29: File ...MYD' Not Found (Errcode: 24) When Using LOCK TABLES
I am getting an error while trying to dump a database. The error is:

mysqldump: Got error: 29: File './wpmu/wp_158_postmeta.MYD' not found (Errcode: 24) when using LOCK TABLES

But if I do a ll I get:

View Replies !
Got Error: 1016: Can't Open File: '...' (errno: 24) When Using LOCK TABLES
I 'm trying to use mysqldump like this :
mysqldump -u root -pmypass mydb > mydbfile.sql
but I get the folowing erreur :
Got error: 1016: Can't open file: './mydb/mytable1.frm' (errno: 24) when using LOCK TABLES

I am using mysql on linux with ubuntu.

My database contain 732 tables.

View Replies !
Mysqldump: Got Error: 23: Out Of Resources When Opening File '.datapallc052108.MYD' (Errcode: 24) When Using LOCK TABLES
I want to dump my database in a SQL File But I am getting the error

mysqldump: Got error: 23: Out of resources when opening file '.datapallc052108.MYD' (Errcode: 24) when using LOCK TABLES

I just tried to search on the net but i was not able to find any documentation relating to the error. I need to get this thing done

View Replies !
Got Error 1016 Cannot Open File Acounts.idb' &lt;errno:1 WHEN USEING LOCK TABLES
got error 1016 cannot open file acounts.idb' <errno:1 WHEN USEING LOCK TABLES
i get this error as i am instaling information to my database

any ideas on how to fix this?

View Replies !
Wait For User Input?
How do you write a query which will stop ans wait for user input?

View Replies !
ERROR 1206 (HY000) At Line 41: "The Total Number Of Locks Exceeds The Lock Table Size"
I'm loading a large file into a table, and I get this error:

"ERROR 1206 (HY000) at line 41: The total number of locks exceeds the lock table size"

I already searched, and the only advice given was to do an explict full-table lock on that table before loading to avoid the row-by-row locks filling up the lock table. Well, I tried that, and it's not helping either.


Here's my log:

View Replies !
Alternative To Select For Update WAIT 1
I would like to know if there is a equivalent in mysql for a wait .

----------------------------------------------------------------------------

SELECT
student_last_name
FROM
student
WHERE student_id = 12345
FOR UPDATE WAIT 15;

----------------------------------------------------------------------------

I have an error in my stmt with that.

View Replies !
Mysql Failed Start, Wait 30 Then Try Again
I am using window xp, I installed mysql 4.0 and it was working fine. last week, I uninstalled mysql 4.0 and install 4.1 and it's no longer starting.

before, error message said, "mysql failed start, wait 30 then try again" then I messed around with it. the error message is gone

right now, it doesn't start, it doesn't give me any error message and I can't even get mysql 4.0 working.

View Replies !
Restarting Mysql
I am brand new to Mysql. I just shut down my sserver and whenever I go into another window in the command promt, it says that it could not open up a connection to the host. So what I'm asking is, is how can I turn my server back on?

View Replies !
Restarting With Mysqld_safe
The documentation says to restart mysql, do this #/bin/mysqld_safe &

But when I do that, it says "A process already exists". Am I running it in the wrong place? What am I'm doing wrong? I'm running Fedora Core/CentOS.

I realize that I can run these commands:

# /etc/init.d/mysqld start
# /etc/init.d/mysqld stop
# /etc/init.d/mysqld restart

However, I want to restart using 'mysqld_safe &' because it restarts as a background process.

View Replies !
Exceeded Run Time Query
I made a application in PHP, I have a table "control1" and this table have 85000 registries and Size is 200 MB, so when I try do a query in PHP, I have a error "exceeded run time", I changed the time but is the same, and after I connected by console, and I could see that the query take 14 minutes.

Here my sql:

$sql_filtro="SELECT COUNT(*) nFilas FROM control1 WHERE MATCH (contenido) AGAINST ('$q')";

View Replies !
Maximum Connections Exceeded
My MySQL server tells me that I have exceeded my maximum connections... How can I close those connections (I use a www.freedb.org-mysql-server) and I'm using Java for the connection and data-transfer

View Replies !
202 File Size Limit Exceeded
I am setting up a huge database in mysql, and I get the above error in
Linux. I believe it is related to the size of one of my tables, which
is 4,294,966,772 bytes in size.

View Replies !
Server Not Using Startup Variables When Restarting?
I wanted to change the Max Connections from the default of 100 to 500. To do this I went (using MySQL Administrator) to the Advanced Networking tab under the Startup Variables section. Changed the value of Max Connections to 500 and clicked on Apply Changes.

Then to actually apply the changes I went to the Service Control section and restarted the MySQL service.

However, after this it doesn't seem to have actually changed, when going to the Health section it still displays a maximum of 100 connections under the Connection Usage.

I've checked that the service is using the correct my.ini file (under Configuration File section on Service Control->Configure Service) and also that the my.ini file is updated correctly, that is that under the [mysqld] section there is a line:
max_connections=500.

View Replies !
Blank Password When Restarting The Machine
I mainly use MySQL Administrator to create/update table/users/etc. And I noticed that whenever I restart my machine (Windows 2003 Server with MySQL database running) and login to the MySQL Administrator, it takes blank or wrong password for any user account including root. So I end up resetting my root password. Does anyone know why it keeps happening?

View Replies !
When Restarting The Service, Blank Password
When I stop the service and restart the server, it takes blank/wrong password for any user account including root. Only after I reset the password for root, then the passwords for all the other accounts work fine. What is causing this problem? I don't have the root with % host. And all users under user table in mysql database has passwords set.

View Replies !
Mysqld Restarting On Remote Connect
I'm on FreeBSD 5.4 with mysql-server-4.1.18_2.
Whenever I connect to mysql from a remote client, I get:

Mysql error number 2013
lost connection to mysql during query

Also, the following is logged:

060506 09:47:25 mysqld restarted
060506 9:47:26 InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
060506 9:47:26 InnoDB: Starting log scan based on checkpoint at
InnoDB: log sequence number 0 642388.
InnoDB: Doing recovery: scanned up to log sequence number 0 642388
InnoDB: Last MySQL binlog file position 0 79, file name ./isd-bin.018710
060506 9:47:26 InnoDB: Flushing modified pages from the buffer pool...
060506 9:47:26 InnoDB: Started; log sequence number 0 642388
/usr/local/libexec/mysqld: ready for connections.
Version: '4.1.18-log' socket: '/tmp/mysql.sock' port: 3306 FreeBSD port: mysql-server-4.1.18_2

mysql works fine from localhost and I've granted permissions to connect from certain remote hosts. I just don't know why mysql restarts when a remote host tries to connect.

View Replies !
User *** Has Exceeded The 'max_questions' Resource(current Value 10)
i am having the following error when i try to connect to my MySQL database

User *** has exceeded the 'max_questions' resource(current value 10)

View Replies !
Mysqld Continuously Restarting - Segmentation Fault
I have mysql running on a RD 7.2 install (web host) and over the last 2 years I get the occasion mysql fail, so I jump on kill the dead process and start again. For the past 2 days the mysql service has been failing. Code:

View Replies !
Restarting MySQL Service Resets My Privelages
When i restart my MySQL service in Windows all my priveleges are reset for my Databases.

I can then no longer access the database(s) in my scripting.

I am using the GUI through Control Panel > Administration Tools > Services and not the command line 'net stop mysql'.

Why would this occur?

View Replies !
Timeout
I am working with program that reads/writes to a mysql database. After 28800 secs of inactivity the connection is lost. Is there a way to set this timeout to unlimited?

View Replies !
Connection Timeout
I've made a small script in PHP which makes a single connection and then processes a huge list of short strings and sends each to a remote server. The thing is, after some time (8 hours I think) the script just stops and from what I've read it seems mySQL terminates connections made 8 hours ago. How can I fix this?

View Replies !
Timeout Expired
I am in need of some assistance on the VS2005 and MySQL.

I am using C# VS 2005 and SQLYog Community Edition Database v6.16 and MySQL 5.2.1

I am using Winform C#.

I have created XSD with sql text in it. And I get very large data out to be populated in the listview. But I keep getting an error stating:

"Timeout has expired.The timeout period elapsed prior to obtaining ..."

View Replies !
Alter My Timeout Setting
i have a rather long script that makes several connections to a MySQL database. Sometimes , if there is a problem with the script, or a bug in my code, or something else unexpected, the connections dont get closed. Is there a way that i can set MySQL to percieve when a thread has been idle for like 5 minutes and kill it for me? Like a timeout function.
i have googled and searched around here, but i am having trouble finding out just where to do this.

View Replies !
MYSQL ODBC Timeout
I have a simple MS access 2K form to update a MYSQL table. If it sits for about 5 minutes I assume it timesout and reports
a ODBC Call failed then Object invalid no longer set..no current record..
If I close the form and re-open I'm back in business..
Can anyone tell me if there is a registry setting or something to get around this issue

View Replies !
Connection Timeout Message
I keep getting a 2013, after querying mysql I see that my connection timeout is 5.
I think, as a windows user I need to set my connection timeout to 1 year.

View Replies !
Session Timeout Issue
I'm trying to import several million records into MySQL but the darn thing keeps going to timeout before all of the records are imported. How do I change this setting? I'm using the command line and am very confused.

View Replies !
ODBC Connection Timeout
Hope someone can help me with ODBC connection error I'm having. Have installed mysql 5.0.12 beta-nt and ODBC 3.51.12 on XpPro sp2 machine. I have configured the driver and all works well untill I activate Norton Internet Security. If this is enabled and I use the ODBC configuration tool to test the connection I get the following error;

[MySQL][ODBC 3.51 Driver]Lost connection to MySQL server during query

Windows firewall is turned off and Norton has been configured to allow MySQL. Is the Norton thing a red herring .

View Replies !
Timeout On Remote Server
I've written PHP and MySQL routines to do just that, it all works perfectly in my office on Apache 2.2.9, PHP 5.2.1, MySQL 5.0.37. The code is not that complex.

When I try on the remote server Apache 2.0.51, PHP 4.3.11, MySQL 4.1.20 it sometimes works, sometimes fails.

We have well over 2000 products. Usually if I atmysqlt to insert or update 2220 products or so all is well. Add another 12 products and it fails. But sometimes it doesn't get even past displaying the MySQL version number at the top! It doesn't even get to the point of updating prices.

I've been trying to optimize and speed up my code, I changed some code so tables are now read into arrays rather than repeatedly accessing the database. Speeds things up a bit here but remotely it still fails in exactly the same manner as before.

I don't have access to the remote server MySQL or PHP settings. Here in the office I can reduce timeout settings until I get errors, but I always get an error message.

On the remote server I never get an error message, it just stops. Persistent connection makes no difference. The time from start to failure varies from a few seconds to as much as several minutes.

If I enter 8000 products here in the office, that too works fine, although it takes awhile.

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved