active questions tagged database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:10:22Z http://stackoverflow.com/feeds/tag/database http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1050539/free-open-source-dataease-provider 0 Free/Open Source DataEase provider Brett Veenstra 2009-06-26T18:26:25Z 2009-12-03T20:04:19Z <p>Anyone know of a free/open source OLEDB/ODBC/JDBC driver against <a href="http://www.dataease.com/" rel="nofollow">DataEase</a>?</p> http://stackoverflow.com/questions/1842354/match-a-query-to-a-regular-expression-in-sql 2 Match a Query to a Regular Expression in SQL? Pete 2009-12-03T19:36:35Z 2009-12-03T19:40:33Z <p>Hi! I'm trying to find a way to match a query to a regular expression in a database. As far as I can tell (although I'm no expert), while most DBMS like MySQL have a <a href="http://dev.mysql.com/doc/refman/5.0/en/pattern-matching.html" rel="nofollow">regex option</a> for searching, you can only do something like:</p> <p><em>Find all rows in Column 1 that match the regex in my query.</em></p> <p>What I want to be able to do is the opposite, i.e.:</p> <p><em>Find all rows in Column 1 such that the regex in Column 1 matches my query.</em></p> <p>Simple example - say I had a database structured like so:</p> <pre><code>+----------+-----------+ | Column 1 | Column 2 | +----------+-----------+ | [a-z]+ | whatever | +----------+-----------+ | [\w]+ | whatever | +----------+-----------+ | [0-9]+ | whatever | +----------+-----------+ </code></pre> <p>So if I queried <strong>"dog"</strong>, I would want it to return the rows with [a-z]+ and [\w]+, and if I queried <strong>123</strong>, it would return the row with [0-9]+.</p> <p>If you know of a way to do this in SQL, a short SELECT example or a link with an example would be much appreciated.</p> http://stackoverflow.com/questions/1622528/database-structure-advice-needed 14 Database Structure Advice Needed Roeland 2009-10-25T23:53:53Z 2009-12-03T19:33:23Z <p>Hey Guys, </p> <p>Im currently working on a site which will contain a products catalog. I am a little new to database design so I'm looking for advice on how best to do this. I am familiar with relational database design so I understand "many to many" or "one to many" etc (took a good db class in college). Here is an example of what an item might be categorized as: </p> <pre><code>Propeller -&gt; aircraft -&gt; wood -&gt; brand -&gt; product. </code></pre> <p>Instead of trying to write what I have so far, just take a quick look at this image I created from the phpmyadmin designer feature.</p> <p><img src="http://www.usfultimate.com/temp/db%5Fdesign.jpg" alt="alt text"></p> <p>Now, this all seemed fine and dandy, until I realized that the category "wood" would also be used under propeller -> airboat -> (wood). This would mean, that "wood" would have to be recreated every time I want to use it under a different parent. This isn't the end of the world, but I wanted to know if there is a more optimal way to go about this. </p> <p>Also, I am trying to keep this thing as dynamic as possible so the client can organize his catalog as his needs change.</p> <p>*Edit. Was thinking about just creating a "tags" table. So I could assign the tag "wood" or "metal" or "50inch" to 1 to many items. I would still keep a parenting type thing for the main categories, but this way the categories wouldnt have to go so deep and there wouldnt be the repetition.</p> http://stackoverflow.com/questions/1842116/more-efficient-to-store-text-as-file-or-in-db 0 More efficient to store text as file or in DB? Robbie 2009-12-03T18:57:53Z 2009-12-03T19:18:06Z <p>Imagine you're dealing with many strings of text that are about 10,000 characters long entered by users. Would it be more efficient to write those automatically onto pages or input them onto a table in a database? I hope that question is clear enough...</p> http://stackoverflow.com/questions/1840187/database-on-file-server-windows 0 Database on file server (Windows) David 2009-12-03T14:27:19Z 2009-12-03T19:11:09Z <p>I am working for a company and I need to create a program really fast. My program will run with 100 users and they will make approximately 100 transactions each per day. As I am under time pressure, and various other constraints it is not possible to set up a proper database running on a server. I am therefore looking for alternatives that have some sort of transaction support without running on a server. I believe this could be solved using Microsoft Access, which is an alright solution, though I believe I will run into locking problems. Isn't is so that a whole table is locked as soon as one user attempts to read from it? Anyways... My question is what other alternatives there are.</p> http://stackoverflow.com/questions/1834699/life-span-of-temp-table 2 life span of temp table prmatta 2009-12-02T18:00:02Z 2009-12-03T18:27:10Z <p>I have the following procedure:</p> <pre><code>CREATE PROCEDURE foo () SELECT * FROM fooBar INTO TEMP tempTable; -- do something with tempTable here DROP TABLE tempTable; END PROCEDURE; </code></pre> <p>What happens if there is an exception before the DROP TABLE is called? Will tempTable still be around after foo exits?</p> <p>If so, foo could fail the next time it is called, because tempTable would already exist. How should that be handled.</p> <p><strong>EDIT: I am using informix 11.5</strong></p> http://stackoverflow.com/questions/804721/oracle-works-better-with-windows-or-linux-give-your-answer-based-on-your-experie 4 Oracle works better with Windows or Linux? give your answer based on your experience. AXheladini 2009-04-29T23:13:05Z 2009-12-03T18:06:05Z <p>In most cases i am used ti work with Windows, some weeks ago i started to work with Oracle, i have experience with other DBMS like SQL and MySql and I have worked with them in Windows. Now i am learning Oracle and i dont know in which OS oracle works better. I have installed it in windows but not in Linux. Also i downloaded the Oracle Enterprise Linux which is an Linux OS for Oracle (similar with RedHat). I want to know if this is the only one Linux OS where Oracle can be installed or we can install Oracle even in RedHat, Ubuntu etc. Also if some one has experience with this issue please let us know in which os Oracle works better. I am confused with this problem and an answer from some profesional DBA will be very help full for me. </p> <p>Kind regards</p> http://stackoverflow.com/questions/1833949/why-is-null-not-equal-to-null-false 4 why is null not equal to null false prmatta 2009-12-02T16:12:08Z 2009-12-03T17:32:12Z <p>I was reading this article: <a href="http://stackoverflow.com/questions/191640/get-null-null-in-sql">http://stackoverflow.com/questions/191640/get-null-null-in-sql</a></p> <p>And the consensus is that when trying to test equality between two (nullable) sql columns, the right approach is:</p> <pre><code>where ((A=B) OR (A IS NULL AND B IS NULL)) </code></pre> <p>When A and B are NULL, (A=B) still returns FALSE, since NULL is not equal to NULL. That is why the extra check is required.</p> <p>What about when testing inequalities? Following from the above discussion, it made me think that to test inequality I would need to do something like:</p> <pre><code>WHERE ((A &lt;&gt; B) OR (A IS NOT NULL AND B IS NULL) OR (A IS NULL AND B IS NOT NULL)) </code></pre> <p>However, I noticed that that is not necessary (at least not on informix 11.5), and I can just do:</p> <pre><code>where (A&lt;&gt;B) </code></pre> <p>If A and B are NULL, this returns FALSE. If NULL is not equal to NULL, then shouldn't this return TRUE?</p> <p><strong>EDIT</strong><br> These are all good answers, but I think my question was a little vague. Allow me to rephrase:</p> <p>Given that either A or B can be NULL, is it enough to check their inequality with</p> <pre><code>where (A&lt;&gt;B) </code></pre> <p>Or do I need to explicitly check it like this:</p> <pre><code>WHERE ((A &lt;&gt; B) OR (A IS NOT NULL AND B IS NULL) OR (A IS NULL AND B IS NOT NULL)) </code></pre> <p>REFER to this <a href="http://stackoverflow.com/questions/1835546/testing-inequality-with-columns-that-can-be-null">thread</a> for the answer to this question.</p> http://stackoverflow.com/questions/1835546/testing-inequality-with-columns-that-can-be-null 0 testing inequality with columns that can be null prmatta 2009-12-02T20:23:40Z 2009-12-03T17:26:39Z <p>So, I asked a <a href="http://stackoverflow.com/questions/1833949/why-is-null-not-equal-to-null-false">question</a> this morning, which I did not phrase correctly, so I got a lot of responses as to why NULL compared to anything will give NULL/FALSE. </p> <p>My actual question was, what is the time honored fashion in which db guys test inequalities for two columns that can both be NULL. My question is the exact opposite of this <a href="http://stackoverflow.com/questions/191640/get-null-null-in-sql">question</a>.</p> <p>The requirements are as follows, A and B are two columns:<br> a) if A and B are both NULL, they are equal, return FALSE<br> b) if A and B are both not NULL, then return A&lt;>B<br> c) if either A or B are NULL, they are not equal, return TRUE</p> http://stackoverflow.com/questions/20263/is-there-a-profiler-equivalent-for-mysql 9 Is there a Profiler equivalent for MySql? Andrew Rimmer 2008-08-21T15:34:55Z 2009-12-03T16:46:24Z <p>"Microsoft SQL Server Profiler is a graphical user interface to SQL Trace for monitoring an instance of the Database Engine or Analysis Services."</p> <p>I find using SQL Server Profiler extremely useful during development, testing and when I am debugging database application problems. Does anybody know if there is an equivalent program for MySql?</p> http://stackoverflow.com/questions/1840713/order-of-index-on-multiple-columns 1 Order of index on multiple columns japancheese 2009-12-03T15:37:26Z 2009-12-03T15:51:26Z <p>Just a simple question, but does the order of your index matter when it spans over multiple columns?</p> <p>For example, taking the query:</p> <pre> SELECT * FROM my_table WHERE (column_1 = 1 AND column_2 = 2) </pre> <p>If I want to add an index for a query like this, does it matter if my index is created like this:</p> <pre> CREATE INDEX my_index ON my_table (column_1, column_2) </pre> <p>Or like this:</p> <pre> CREATE INDEX my_index ON my_table (column_2, column_1) </pre> <p>Thanks for the help!</p> http://stackoverflow.com/questions/344068/sql-server-clustered-index-order-of-index-question 0 SQL Server Clustered Index - Order of Index Question Mr. Flibble 2008-12-05T15:01:26Z 2009-12-03T15:45:35Z <p>I have a table like so:</p> <pre><code>keyA keyB data </code></pre> <p>keyA and keyB together are unique, are the primary key of my table and make up a clustered index.</p> <p>There are 5 possible values of keyB but an unlimited number of possible values of keyA,. keyB generally increments.</p> <p>For example, the following data can be ordered in 2 ways depending on which key column is ordered first:</p> <pre><code>keyA keyB data A 1 X B 1 X A 3 X B 3 X A 5 X B 5 X A 7 X B 7 X </code></pre> <p>or</p> <pre><code>keyA keyB data A 1 X A 3 X A 5 X A 7 X B 1 X B 3 X B 5 X B 7 X </code></pre> <p>Do I need to tell the clustered index which of the key columns has fewer possible values to allow it to order the data by that value first? Or does it not matter in terms of performance which is ordered first?</p> http://stackoverflow.com/questions/1840377/sql-inserts-and-stored-procedures 0 SQL inserts and stored procedures Raj N 2009-12-03T14:52:10Z 2009-12-03T15:32:24Z <p>Hi all,</p> <p>Are there any performance gains in using stored procedures for simple SQL inserts into tables over using direct SQL from java / JDBC? in my case I am using sybase but this could be a more general question.</p> <p>Thanks</p> http://stackoverflow.com/questions/1835161/looking-for-a-local-database-for-d2009 4 Looking for a local database for D2009+ Mason Wheeler 2009-12-02T19:15:45Z 2009-12-03T14:56:06Z <p>I'm trying to update a legacy app that does all its data storage in a hacked-together system of BDE Paradox files. The program works pretty well, under certain narrow conditions, but it has serious performance issues.</p> <p>I'd like to try and improve things by updating to a better database system. What I need is a local database, preferably one where I can store the whole thing in one file instead of the current "one or more files per table" system. It has to support foreign-key relationships and table indexing, and it has to be able to return a result quickly from a query of a table with hundreds of thousands of elements.</p> <p>This last one is important. The current system is indexed, but that doesn't seem to matter much. All the queries seem to run in O(N) time where N is the total size of the table, and it gets horrifically slow when the tables start to get large. I'm not really sure why, but that has to go away.</p> <p>And it has to work under D2009 and later. Can anyone provide some recommendations?</p> http://stackoverflow.com/questions/1832908/how-to-connect-to-remote-oracle-db-with-pl-sql-developer 0 How to connect to remote Oracle DB with PL/SQL Developer? orloffm 2009-12-02T13:28:54Z 2009-12-03T13:39:53Z <p>I have a database "TEST", to which I connect at address 123.45.67.89:1521.</p> <p>How do I connect to it using PL/SQL Developer?</p> http://stackoverflow.com/questions/1836690/fixed-timetable-db-design 0 Fixed Timetable DB Design eyze 2009-12-02T23:46:09Z 2009-12-03T13:35:08Z <p>I want to let my users specify which hours / days they want to be contacted, I though of creating a fixed timetable with the 7 days of the week and let the user specify which hours he has free.</p> <p>I'm having a little trouble figuring out how I would store that info in the database, can anyone help me with a good table design for this situation?</p> http://stackoverflow.com/questions/1839584/should-i-use-an-index-column-in-a-many-to-many-link-table 2 Should I use an index column in a many to many "link" table? kemp 2009-12-03T12:25:33Z 2009-12-03T12:54:01Z <p>I have two tables, <code>products</code> and <code>categories</code> which have a many to many relationship, so I'm adding a <code>products_categories</code> table which will contain <code>category_id</code> and <code>product_id</code>.</p> <p>Should I add another (autoincrementing) index column or use the two existing ones as primary key?</p> http://stackoverflow.com/questions/1610903/exporting-sqlite-data-from-an-android-application 0 Exporting Sqlite data from an Android Application meg18019 2009-10-23T01:08:11Z 2009-12-03T12:00:05Z <p>My Android application stores all user data in a Sqlite database. What are my options to backup/export/import/copy this data? I know I can easily copy the database to the SD card. I would also like to send the data to a network server. Are there any packages/classes available to facilitate getting sqlite information to/from a network server? Thanks for the help...</p> http://stackoverflow.com/questions/1836800/freezing-database-with-rails-application 0 Freezing database with Rails application jluebbert 2009-12-03T00:07:02Z 2009-12-03T10:54:43Z <p>So for a class I have to turn in my Rails application to my professor. What is the best way to make sure everything goes smoothly when he trys to start it up? Also, is there anyway I can freeze a database and send that with it so he has all of the data I have been using in the application?</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/1833331/json-best-practices-filtering-nodes-client-side-or-not 0 JSON best practices: filtering nodes client side or not? dani 2009-12-02T14:44:05Z 2009-12-03T10:41:43Z <p>In my database I store a number of "topics" and "examples". Each example belongs to one topic.</p> <p>I'd like show all the topics by name ASC in a tree component <b>except for one topic (Topic C)</b> which I always want on top. This may though come to change later and I'd rather not change the basic JSON output of topics and examples from the DB.</p> <p>1) Does it seem reasonable to generate the "unordered list" structure client side (or should I, already in the json_encode() phase make sure the order is appropriate?) and</p> <p>2) how would I, in that case, filter one specific topic node by name and put it first in the sequence?</p> <ul> <li>Topic C <ul> <li>Example</li> <li>Example</li> </ul> <p></li> <li>Topic A</p> <ul> <li>Example</li> <li>Example</li> </ul> <p></li> <li>Topic B</p> <ul> <li>Example</li> <li>Example</li> </ul> <p></li> </ul></p> http://stackoverflow.com/questions/1838824/sqlitebindcharacter-how-to-bind-characters-in-sqlite 0 sqlite_bind_?(character) how to bind characters in sqlite? Madhup 2009-12-03T09:44:05Z 2009-12-03T09:59:26Z <p>Hi all,</p> <p>May be its a silly question but I am a bit confused in it, I want to bind a character into sqlite database (neither as varchar, nor as text but as character only)</p> <p>Hence we can not use</p> <pre><code>sqlite3_bind_text(insertStmt, 1, @"A", -1, SQLITE_TRANSIENT); </code></pre> <p>So should I use </p> <pre><code>sqlite_bind_int(insertStmt,1,65); </code></pre> <p>or there is a better way to do it?</p> http://stackoverflow.com/questions/1835732/finding-terabytes-of-data-and-using-in-oracle-for-learning-purposes 2 Finding terabytes of data and using in oracle for learning purposes unknown (google) 2009-12-02T20:52:55Z 2009-12-03T09:36:41Z <p>Hey all, I am learning to be a dba, and the one thing i am missing is good quantity of data to handle a database with. Someone on irc said if you cant handle few terabytes of data then you are still not good enough. </p> <p>My question is, is there a way i can have terabytes of data from somewhere that i can use it for my learning purposes ? I am going to use it in oracle.</p> <p>I thought about collecting spam emails,but it would be a long shot to get large quantity of data in a short time. Should i go for this ? I would be helpful if someone can recommend a better solution. I just need few terabytes of data to play with the database.</p> <p>Thanks.</p> http://stackoverflow.com/questions/104203/anyone-know-of-any-good-database-diff-tools 7 Anyone know of any good Database Diff tools? Haoest 2008-09-19T18:14:36Z 2009-12-03T09:29:32Z <p>I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool?</p> <p>EDIT: for sqlserver 2005</p> http://stackoverflow.com/questions/1836352/similarity-between-users-based-on-votes 5 Similarity Between Users Based On Votes matt 2009-12-02T22:34:53Z 2009-12-03T03:34:14Z <p>lets say i have a set of users, a set of songs, and a set of votes on each song:</p> <pre><code>=========== =========== ======= User Song Vote =========== =========== ======= user1 song1 [score] user1 song2 [score] user1 song3 [score] user2 song1 [score] user2 song2 [score] user2 song3 [score] user3 song1 [score] user3 song2 [score] user3 song3 [score] user-n song-n [score] =========== =========== ======= </code></pre> <p>whats the most efficient way to calculate user similarity based on song-votes? is there a better way than iterating over every user and every vote for every song?</p> http://stackoverflow.com/questions/1835472/sql-complex-like-expression-user 0 sql complex like expression @user basit. 2009-12-02T20:11:30Z 2009-12-03T03:25:54Z <p>im trying to find all the mentions for the matched username (sam) from the database text code with following:</p> <pre><code>$sql = "select * from tweet where feed like '%@sam%'"; </code></pre> <p>this will return all the rows which user have been mention at. </p> <p>but now the problem is, it also returns rows with @sam3, @sam-dadf or anything that is after @sam..</p> <p>how can i limit this, so only specific username shows from the text and not all the matching sams.. following are the text format in the database, that is inserted in feed row.</p> <pre><code> 1. i been out with @sam today, but im not sure what we should do 2. we head great party today and all the frineds were invited, such as @sam, @jon, @dan... 3. i been out today with @samFan and with @dj. &lt;&lt; this row should not get pull from database`` </code></pre> http://stackoverflow.com/questions/1837181/does-pytables-support-null 0 Does pytables support NULL ? Tg 2009-12-03T01:55:04Z 2009-12-03T03:09:45Z <p>I have table looks like this</p> <pre><code>------------------ GeneId | ProteinId 1 | 157 2 | - 3 | 587 4 | 897 5 | - 6 | 120 </code></pre> <p>In realational database, I can treat ProteinId column as INT and use NULL for "-" data. However, I can't find the same option in pytables. Does pytables support NULL ? Currently, I use "0" for NULL data.</p> http://stackoverflow.com/questions/1176109/having-trouble-with-cakephp-bake-and-one-of-the-database-tables 1 having trouble with cakePHP Bake and one of the database tables Annibigi 2009-07-24T06:51:57Z 2009-12-03T03:00:03Z <p>Hi,</p> <p>I am using Bake to create models for my database tables. I have run into a little problem.</p> <p>I have 25 tables ....</p> <p>I strated baking the models until for one of the database tables the bake started giving a name of it own to the model,file and class.</p> <p>For example ,the table in database is named : 'risk_manager'</p> <p>(It has association with other tables which i'm defining while baking)</p> <p>However the model for this turns up as a file called "risk.php" and the class name is called "risk" (but it is mapped to the correct table.)</p> <p>Why is this happening...?</p> http://stackoverflow.com/questions/1829702/a-single-mysql-query-for-bouncing-table-selects 0 A single MySQL query for 'bouncing' table selects Vuk 2009-12-01T23:34:33Z 2009-12-03T01:41:36Z <p>So, say for the sake of simplicity, I have a master table containing two fields - The first is an attribute and the second is the attributes value. If the second field is set to reference a value in another table it is denoted in parenthesis.</p> <p>Example:</p> <pre> MASTER_TABLE: Attr_ID | Attr_Val --------+----------- 1 | 23(table1) --> 23rd value from `table1` 2 | ... 1 | 42 --> the number 42 1 | 72(table2) --> 72nd value from `table2` 3 | ... 1 | txt --> string "txt" 2 | ... 4 | ... TABLE 1: Val_Id | Value --------+----------- 1 | some_content 2 | ... . | ... . | ... . | ... 23 | some_content . | ... </pre> <p>Is it possible to perform a <strong>single query</strong> in SQL (without parsing the results inside the application and requerying the db) that would iterate trough master_table and for the given <code>&lt;attr_id&gt;</code> get only the attributes that reference other tables (<em>e.g. 23(table1), 72(table2), ...</em>), then parse the tables names from the parenthesis (<em>e.g. table1, table2, ...</em>) and perform a query to get the (<em>23rd, 72nd, ...</em>) value (<em>e.g. some_content</em>) from that referenced table?</p> <p>Here is something I've done, and it parses the Attr_Val for the table name, but I don't know how to assign it to a string and then do a query with that string.</p> <pre><code>PREPARE pstmt FROM "SELECT * FROM information_schema.tables WHERE TABLESCHEMA = '&lt;my_db_name&gt;' AND TABLE_NAME=?"; SET @str_tablename = (SELECT table.tablename FROM (SELECT @string:=(SELECT &lt;string_column&gt; FROM &lt;table&gt; WHERE ID=&lt;attr_id&gt;) as String, @loc1:=length(@string)-locate("(", reverse(@string))+2 AS from, @loc2:=length(@string)-locate(")", reverse(@string))+1-@loc1 AS to, substr(@string,@loc1, @loc2) AS tablename ) table ); &lt;--this returns 1 rows which is OK EXECUTE pstmt USING @str_tablename; &lt;--this then returns 0 rows </code></pre> <p>Any thoughts?</p> http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types 1 Django: How do I model a tree of heterogeneous data types? Corey 2008-11-14T20:14:56Z 2009-12-03T01:13:52Z <p>I need to store a tree data structure in my database, for which I plan on using <a href="http://code.google.com/p/django-treebeard/" rel="nofollow">django-treebeard</a> or possibly <a href="http://code.google.com/p/django-mptt/" rel="nofollow">django-mptt</a>. My source of confusion is that each node could be one of three different possible types: root nodes will always be a type A entity, leaf nodes a type C entity, and anything in between will be a type B entity. I would like to know the best way to model this situation.</p> <p><strong>update:</strong> I first tried model inheritance, and I think that this could be the best way to go. Unfortunately django-treebeard's public API isn't really designed to handle this. I ended up getting it to work with GenericForeignKey. Thank you very much for the answers.</p> http://stackoverflow.com/questions/1825308/erlang-mnesia-lookup-and-update-based-on-fields-other-than-the-key 2 Erlang : Mnesia : Lookup and update based on fields other than the key ErJab 2009-12-01T10:29:08Z 2009-12-03T00:13:26Z <p>I have a table in mnesia and I need to update individual fields in the records in it. According to <a href="http://stackoverflow.com/questions/1820996/erlang-mnesia-updating-a-single-field-value-in-a-row">http://stackoverflow.com/questions/1820996/erlang-mnesia-updating-a-single-field-value-in-a-row</a> if I do something like:</p> <pre><code>update_a(Tab, Key, Value) -&gt; fun() -&gt; [P] = mnesia:wread({Tab, Key}), mnesia:write(Tab, P#rec{a=Value}, write) end. </code></pre> <p>Now as I understand, the above code reads a record <code>P</code> based on a <code>Key</code>, acquiring a write lock on the record, so that no other transactions modify this record while it is being read and written back (or in short, updated). So far so good.</p> <p>Now my requirement is that I need to able to read records based on both the <code>Key</code> and one other field in the table and then perform an update on it. A function that will do this looking up is <code>mnesia:match_object</code>. The problem now is that, the function only supports a read lock, not a write lock, according to <a href="http://www.erlang.org/doc/man/mnesia.html#match%5Fobject-3" rel="nofollow">http://www.erlang.org/doc/man/mnesia.html#match_object-3</a>.</p> <p>The consequence of this is that, suppose in the above function I were to use mnesia:match_object, I will get a (group of) record(s), all with read locks. After I read the records, I need to perform some checks on the retrieved data and then write back the updated record only if a condition is satisfied. Now, assume there are two parallel transactions T1 and T2 initiated by two different sources running. Both T1 and T2 access the same record, at the same time. Since they are read locked, both T1 and T2 will be able to read the records parallely. Both T1 and T2 will perform the same check on the same record, and if the condition matches, both will proceed to execute the update. But, in my code, if T1 and T2 were to have executed serially, T1 would have made changes to the record and in T2, it would have read these changed records and the condition would have failed and no update would have been made.</p> <p>In short, I need to write lock records that are returned by mnesia:match_object. The documentation clearly states only read lock is supported. Are there are any alternatives?</p> <p><strong>UPDATE:</strong> I've been experimenting a little bit, and a possible solution I thought could be to use compound keys. Suppose I have data written to a table like:</p> <pre><code>mnesia:transaction(fun() -&gt; mnesia:write(mytable, #rec{i={1,2}, a=2, b=3}, write) end). </code></pre> <p>Is there any way to lookup entries, using don't cares?</p> <p>I tried these, but both returned empty results:</p> <pre><code>mnesia:transaction(fun()-&gt; mnesia:read(mytable, {1,'_'}, read) end). mnesia:transaction(fun()-&gt; mnesia:read(mytable, {1,_}, read) end). </code></pre>