Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
367 views

UPDATE query in MySQL on large table

I have a MySQL database with 21M records and I'm trying to do an update on about 1M records but the query fails with ERROR 1206 (HY000): The total number of locks exceeds the lock table size. Is it ...
4
votes
3answers
291 views

SOLVED: How to explicitly lock a table in Microsoft SQL Server (looking for a hack - uncooperative client)

This was my original question: I am trying to figure out how to enforce EXCLUSIVE table locks in SQL Server. I need to work around uncooperative readers (beyond my control, closed source stuff) which ...
4
votes
1answer
1k views

Rails running multiple delayed_job - lock tables

Hey. I use delayed_job for background processing. I have 8 CPU server, MySQL and I start 7 delayed_job processes RAILS_ENV=production script/delayed_job -n 7 start Q1: I'm wondering is it possible ...
4
votes
1answer
2k views

Locking a table with a select in Entity Framework

I need to be able to do select * from myTable with (xlock,holdlock) from Entity Framework. Is this possible? I've opened a TransactionScope with the Serializable isolation level but my selects are ...
3
votes
5answers
846 views

Why is table-level locking better than row-level locking for large tables?

According to the MySQL manual: For large tables, table locking is often better than row locking, Why is this? I would presume that row-level locking is better because when you lock on a larger ...
2
votes
1answer
51 views

SQL Server 2008 stored proc running concurrently causing delays

I have a problem where it seems that when running the same stored procedure at the same time from two different instances of the same application it is timing out, and wondered if there was anything I ...
2
votes
1answer
175 views

Do MySQL Locked Tables affect related Views?

So after reading http://stackoverflow.com/questions/1415602/performance-in-pdo-php-mysql-transaction-versus-direct-execution in regards to performance issues I was thinking about I did some research ...
2
votes
3answers
549 views

How can I get SQL Server transactions to use record-level locks?

We have an application that was originally written as a desktop app, lo these many years ago. It starts a transaction whenever you open an edit screen, and commits if you click OK, or rolls back if ...
1
vote
1answer
64 views

How to check if table is available to drop & create a trigger?

I've a long script in sql server 2000 (17k lines and growing). Problem is that about the half, several triggers must be dropped & recreated as part of remote installation procedure. Sometimes, ...
1
vote
1answer
58 views

Database-neutral table locking library for PHP

I have a scenario in which I think I need to lock a table against all activity (reads and writes). I am using Propel 1.6.x and intend to write a small extra library to handle the locking. My use case ...
1
vote
4answers
81 views

MySQL select with a count query on another table

I have simple article application with three tables: article id, title, body, user_id comment id, article_id, user_id, body user id, username On the landing page, I want to show the ...
1
vote
1answer
57 views

When is a table locked for insert when a stored procedure is called

I have a table that is used for reporting purposes and data is inserted each time a user runs a report from the web. The insert can vary from a single row to several thousand depending on the ...
1
vote
1answer
998 views

Oracle Data Pump Export (expdp) locks table (or something similar)

I must export data from a partitioned table with global index that must be online all the time, but I am having troubles in doing that. For data export I am using Data Pump Export - expdp and I am ...
1
vote
2answers
608 views

How innodb tables are locked when ON INSERT trigger is processed?

I have two innodb tables: articles id | title | sum_votes ------------------------------ 1 | art 1 | 5 2 | art 2 | 8 3 | art 3 | 35 votes id | article_id | ...
1
vote
1answer
682 views

Create an index on a huge mysql production table without table locking

I need to create an index on a ~5M rows mysql table. It is a production table, i fear a complete block of everything if I run a CREATE INDEX statement... Is there a way to create that index without ...
1
vote
3answers
285 views

how to lock a DB table or a range of rows for writing?

I have a simple table with a primary key. Most of the read operations fetch one row by the exact value of the key. The data in each row maintains some relationship with rows before and after it in ...
1
vote
1answer
764 views

Sql Server - Merging large tables without locking the data

I have a very large set of data (~3 million records) which needs to be merged with updates and new records on a daily schedule. I have a sproc that actually breaks up the recordset into 1000 record ...
1
vote
1answer
199 views

Possible to select…for update, do e-commerce transaction, and then call a MySQL stored procedure in PHP?

I am currently building a PHP e-commerce website for my client. Its been going smoothly but I've hit a roadblock and was wondering if any MySQL/PHP experts can help me. Basically, the e-commerce site ...
0
votes
2answers
52 views

MySQL table locking: holder reads and writes, other sessions only read?

Is it possible to lock a table such that the holder can read and write, and other sessions can only read? The documentation seems to suggestion that a read lock allows everyone to only read, and a ...
0
votes
3answers
295 views

mysql table locked after php crashes

I have a MySQL DB and an innoDB table in it. I have a php page that connects, locks the table, does some updates, then unlocks the table. The PHP page is being served up with apache via wamp. The ...