active questions tagged database-design - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T07:45:02Z http://stackoverflow.com/feeds/tag/database-design http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837027/mysql-duplicated-data-vs-more-queries 0 MySQL: Duplicated Data VS More Queries kuroir 2009-12-03T01:09:03Z 2009-12-03T01:30:03Z <p><em>Please take into consideration this is a MySQL Question for Web Development.</em></p> <p>Currently I'm designing the database structure for a User Authentication System and I came across one question, that I myself can't figure it out:</p> <p>Is it better to have duplicated data instead of making more queries?</p> <p>Here's a little background, currently my users table looks something like this (pseudo-code):</p> <pre><code>id mediumint username varchar(15) password varchar(100) email varchar(80) status tinyint(1) &lt;- is the user banned? language varchar(100) private_message_counter mediumint notify_email tinyint(1) Extra rows </code></pre> <p>I'm trying to put all the "most used" rows into the users table, to prevent more queries for example:</p> <pre><code>With Indicator on users table: - User Logged on? (query Sessions) Get User Data (query Users) Get User Permissions (query permissions) - Without indicators: - User Logged on? (query Sessions) Is the user Banned? (query Bans) Get User Data (query Users) Get User Permissions (query Permissions) Get Private Message information (query private_messages table) </code></pre> <p>One little "problem" is that the users table ends with a lot of rows. It's obvious also that I'll need to run more checks to prevent data mismatch, but isn't the improvement way better?</p> <p><strong>Note: My Website has around 14,500 simultaneous users connected. So I need to know if it'll improve or do the complete opposite.</strong></p> <p>Any opinions or recommendations are welcomed.</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/1836690/fixed-timetable-db-design 0 Fixed Timetable DB Design eyze 2009-12-02T23:46:09Z 2009-12-03T00:02:07Z <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/1835532/building-a-contact-database-need-a-little-schema-inspiration 1 Building a Contact Database - Need a little schema inspiration. gnarf 2009-12-02T20:21:01Z 2009-12-02T23:22:14Z <p>I've been working on laying out the data structure for an application I'm working on. One of the things it will need to handle is storing customer / contact information. I've been studying the interface of a few different contact information programs like Address Book, gmail contacts, etc. </p> <p>I have basically boiled the contact down to an "entity" (individual, company, role, etc). </p> <ul> <li>Each <strong>Entity</strong> can have multiple <strong>Address</strong>, <strong>Phone</strong>, <strong>E-Mail</strong> entries.<br> <ul> <li>Each of these defines a "relationship" (home/work/assistant, etc)</li> <li><strong>Entity</strong> {1} --{relationship}--> {0..*} <strong>Data</strong></li> </ul></li> <li>An <strong>Entity</strong> can have multiple <strong>fields</strong> that are freeform data storage for other "generic" data (birthdays, AIM account, etc)<br> <ul> <li><strong>Entity</strong> {1} --{fieldName}--> {0..*} <strong>Field Data</strong></li> </ul></li> <li>An <strong>Entity</strong> can link to another <strong>Entity</strong> for instance as a <em>employee</em>, <em>spouse</em> <ul> <li><strong>Entity</strong> {0..<em>} &lt;--{relationship}--> {0..</em>} <strong>Entity</strong></li> </ul></li> </ul> <p>Has anyone done any SQL implementations of similar contact databases? Any insight/suggestions/pitfalls to avoid that you could share with someone trying to work on a project by themselves here? Does what I have described seem reasonable or overcomplicated?</p> <p>One question, lets say you have 4 people who all work for the same company. They all have the same "work" phone number (perhaps with a different extension) - If the number or address for "work" changes, I'd like to be able to update the contacts fairly easily. Now a lot of this comes down to how you would use the database. I'm thinking that this becomes a matter of linking employee's to their respective company entities, but then the address/phone number is no longer directly connected to the employee. I'm kind of debating making the Entity/data relationship many to many allowing you to attach the same mailing address/phone number to multiple people, and updating it in one place can update it in all places. Am I just over thinking this? <em>pulls out hair</em> </p> http://stackoverflow.com/questions/1833494/sql-best-practice-to-store-various-fields-in-one-table 1 SQL: Best practice to store various fields in one table Leon Shmulevich 2009-12-02T15:09:37Z 2009-12-02T21:25:21Z <p>Hi,</p> <p>I want to design a table for items. There are many types of items, all share several fields. Each type of item has it's own fields. I want to store the uncommon fields in a separate table. I thought of something like :</p> <pre><code>----Items +Item_id +Item_Type_Id +Item_Serial ... ----Item_types +Item_Type_Id +Item_Name ... ----Item_Fields +Item_Field_Id +Item_Type_Id +Field_Name ... ----Field_Values +Field_Value_Id +Item_Field_Id +Item_Id +Value ... </code></pre> <p>The pro is having the ability to add fields and values without changing the tables. The con is that i have to transpose the field names and values in order to see all info for an item.</p> <p>Any better suggestions? Or perhaps a simple (not stored procedure) way to join the tables to get a flat info? I tried to use PIVOT (I'm using SQL 2005) but with no luck.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1833373/how-to-design-a-database-to-save-data-whose-structure-is-not-always-known-during 4 how to design a database to save data whose structure is not always known during design, and could change later? unknown (google) 2009-12-02T14:50:05Z 2009-12-02T16:27:04Z <p>sites like IBM's many eyes, swivel etc store varieties of data and allow their users to visualize them. How do they design their tables? For example, if you were to save the data from data.gov site into a database and allow your users to perform operations on it, how would you go about designing the tables? The structure needs to be generic enough to hold any type of data. data.gov for example, has tons of data, some of them more complex than the others.</p> http://stackoverflow.com/questions/282993/how-to-design-a-database-schema-that-can-be-used-with-both-mysql-and-sql-server 3 How to design a database schema that can be used with both MySQL and SQL Server? sneg 2008-11-12T04:05:18Z 2009-12-02T13:53:34Z <p>I'd like to give customers a choice of the database engine, but also want to minimize my troubles of such a decision.<br /> The engines in question are MySQL (5 or later) and SQL Server (2005 or later).</p> http://stackoverflow.com/questions/1831470/questions-on-auction-database-schema 0 Questions on Auction Database Schema Richard 2009-12-02T08:34:44Z 2009-12-02T13:14:07Z <p>I was looking at the following <a href="http://www.databaseanswers.org/data%5Fmodels/auction/index.htm" rel="nofollow">db model</a> and I had some questions on it. I'm sure it's a good design as the guy behind it seems to be reasonably well qualified, although some things don't make sense:</p> <ol> <li>Why's he seperated out bidders and sellers? I thought you'd have users, and users can place bids and sell items. You'd have a bids table with a reference to user, and a auctions table, with reference to user table. He talks a lot in his tutorials about making sure models are scalable and ready for change (don't have a status column for instance, have statuses in another table and reference that) so what's up here?</li> <li>Why are their fields like "planned close date" and "winner". Isn't this data duplication, as the planned close date could be calculated using the last bid time (for acutions that use auto extend) and the winner is simply the last bid when the auction closes..? </li> </ol> <p>FYI: I'm trying to build my own auction site in PHP/MySQL from scratch and it's proving to be quite difficult, so tutorials on this would be great!</p> <p>Thanks!</p> http://stackoverflow.com/questions/1832047/database-design-for-filtering-database 0 Database Design for Filtering Database The King 2009-12-02T10:32:54Z 2009-12-02T13:00:08Z <p>Hi All,</p> <p>I'm new to complex database design... I'm currently into a project where the user should be able to retrieve Instructions based on combination of 18 fields. So my parameter Table has the following fields</p> <ol> <li>Job</li> <li>State</li> <li>Manager</li> <li>ProcessCode</li> <li>ProcessType (rest of the fields truncated).</li> <li>InstructionID (FK of Instruction Table)</li> </ol> <p>When adding / Modifying the instruction, he can choose multiple options in each of the above parameters... The Stored Procedure will store data in all combinations possible, in order facilitate easy retrieval, as during search (retreival) only one option will be chosen in each of the field.</p> <p>There can be multiple instructions for same combination and same instruction can apply to multiple combinations.</p> <p>I have somehow created the SP for adding instruction. But now struck with modification... When my Webpage passes the new combination to SP, What is the best way to update the Table.</p> <p>I could delete all existing rows and create new rows for new combination... But I wanted to maintain the created date and created user field... Further there is a requirement to maintain history of these in a seperate history table.</p> <p>Sorry for the length of the question... And, Thank you for help.</p> http://stackoverflow.com/questions/1832084/sql-server-define-columns-als-mutually-exclusive 1 SQL-Server: Define columns als mutually exclusive Thorsten Dittmar 2009-12-02T10:39:20Z 2009-12-02T11:22:39Z <p>Hi,</p> <p>joking with a collegue, I came up with an interesting scenario: Is it possible in SQL Server to define a table so that through "standard means" (constraints, etc.) I can ensure that two or more columns are mutually exclusive?</p> <p>By that I mean: Can I make sure that only one of the columns contains a value?</p> http://stackoverflow.com/questions/1828515/sql-join-without-multiple-left 1 SQL Join without multiple LEFT Khalid Rahaman 2009-12-01T20:02:14Z 2009-12-02T06:13:23Z <p>I have the following tables in an SQL DB</p> <p>Vehicles, RepairCharges, TowCharges,</p> <p>There will always be only 1 record for Vehicle, but multiple records for the other tables. My current LEFT OUTER Join works however if there are multiple entries in the joined tables then its returning just as many rows.</p> <p>My question is, I need to create a SQL view that will JOIN these tables, however only return a single record for the Vehicle Table, even if there are multiple records in the joined tables. Is this possible with a VIEW, or do i have to use a different approach ?</p> <p><strong>EDIT:</strong> From the answers, I realize as I originally thought, this would not be possible by design. Given the same scenario, how would you approach this ? </p> <p>The end result is to have a table showing 1 line for each vehicle and in that same line show the first towing and repair charges, then if there were more towing or repair charges, show a new line for each of these, without duplicating the vehicle information.</p> http://stackoverflow.com/questions/1826224/example-of-a-database-table-design-with-a-questionable-repeating-group 0 Example of a database table design with a questionable repeating group Caleb Hattingh 2009-12-01T13:35:20Z 2009-12-02T05:51:51Z <p>I am having a discussion with someone about the following table that is used to link client-specific items:</p> <pre><code>Table LINK: Client (int) Item1 (int) Item2 (int) </code></pre> <p>This is the disputed design. All three fields refer to other tables. The two Item fields refer to the same other table. These are not real field names, so don't bother with discussing naming conventions (the "1" and "2" are, however, really part of the field name). I am arguing that this design is bad on 1NF-violation grounds, while the other person is arguing that even though this seems distasteful, all other options are worse for our specific use-case.</p> <p>Notes:</p> <ul> <li>The vast majority of cases will only require linking two items with each other;</li> <li>N:1 groups are however allowed; in such a case, the same Item1 is repeated on multiple lines with different Item2 values;</li> <li>There are also a very small number of cases where some Item2 values (in an existing Item1-Item2 links) are themselves linked to other Items, and in these cases these values occur in the Item1 column, with the other linked value in the Item2 column; all linked items correspond to one group, and must be retrieved as such.</li> </ul> <p>My claims:</p> <ul> <li>This violates 1NF: Item1 and Item2 are foreign keys for the same table, and as such constitute a repeating group (the other party disagrees on the defn of repeating group);</li> <li>For searches on Item, this means that two indexes are required instead of one, for example in a table that uses a GroupID field instead;</li> <li>This makes queries looking for a specific Item in this table more complex, because a restriction clause must examine both Item1 and Item2 fields.</li> <li>The retrieval for the case where chains of Item links occur will be more complex.</li> </ul> <p>The other side claims:</p> <ul> <li>The most viable alternative is a table with a single Item field, and an additional GroupID field;</li> <li>The simpler, more common two-item link case now becomes more complex;</li> <li>There could be concurrency issues in obtaining GroupID slots, and that needs to be managed</li> <li>Managing the GroupID concurrency issues probably requires a second table with GroupIDs in a field with a uniqueness constraint</li> <li>You now have to perform a join, at least some of the time, especially if an ORM is used. The join is less efficient than using a single table as in current design.</li> </ul> <p>I would like to hear some opinions about this. I have read the other posts on SO about database design, and especially 1NF, but they don't deal as specifically with my case above as I would have liked. I have also come to understand, based on much research online, that so-called standards like 1NF can be defined in many different ways by different people. I have tried to be as clear as possible about both arguments, and not to bias one or the other.</p> <p>EDIT 1:</p> <ul> <li>Item1 and Item2 are (financial) transactions</li> <li>The "1" and "2" are really part of the field name</li> </ul> http://stackoverflow.com/questions/1827319/mysql-table-design-for-embeding-system 0 mysql - table design for embeding system Mark 2009-12-01T16:29:15Z 2009-12-01T17:06:23Z <p>I am working on an embedment section on my site where users can embed different media from various services, youtube, myspace music, vimeo etc</p> <p>I am trying to work out the best way to store it. Users do not have to embed all of the options and can only embed one of each type (one video for example).</p> <p>Initially I thought just have a table with a row per embeded item like so:</p> <ul> <li>embedid (auto increment primary key), userid, embedded_item_id (e.g a youtube id)</li> </ul> <p>but then I realised that some embedable items require multiple arguments such as myspace music so I thought id make a table where each user has one row.</p> <ul> <li>userid, youtubeid, vimeoid, myspaceid1, myspaceid2</li> </ul> <p>but it seems a bit clumsy especially considering there will always be empty rows as users can not ever have all of them. Does anyone have a better solution?</p> http://stackoverflow.com/questions/1825613/is-it-bad-to-use-user-name-as-primary-key-in-database-design 2 Is it bad to use user name as primary key in database design? Steven 2009-12-01T11:37:08Z 2009-12-01T13:54:25Z <p>I was told by a friend:</p> <blockquote> <p>What unique key do you use? I hope you are not saving the entire user name --- this will use up too much table space! Assign an unique userID to each (unique) userNAME and save this userID (should be INTEGER UNSIGNED auto_increment or BIGINT UNSIGNED auto_increment). Don't forget to create a reference</p> <p>FOREIGN KEY (<code>userID</code>) REFERENCES <code>usertable</code> (<code>userID</code>) in all tables using the userID.</p> </blockquote> <p>What do you think of my friend's comment?</p> http://stackoverflow.com/questions/1243807/storing-parametrized-definitions-of-sets-of-elements-and-single-pass-queries-to-f 0 Storing parametrized definitions of sets of elements and single pass queries to fetch them in SQL Ville Koskinen 2009-08-07T09:25:14Z 2009-11-30T21:32:24Z <p>Suppose a database table containing properties of some elements:</p> <pre><code>Table Element (let's say 1 000 000 rows): ElementId Property_1 Property_2 Property_3 ------- ---------- ---------- ---------- 1 abc 1 1 2 bcd 1 2 3 def 2 4 ... </code></pre> <p>The table is being frequently updated. I'd like to store definitions of sets of these elements so that using a single SQL statement I would get eg.</p> <pre><code>SetId Element --- ------- A 2 B 1 B 3 C 2 C 3 ... </code></pre> <p>I'd also like to change the definitions when needed. So far I have stored the definitions of the sets as unions of intersections like this:</p> <pre><code>Table Subset (~1 000 rows): SubsetId Property Value Operator -------- -------- ----- -------- 1 1 bcd = 1 3 1 &gt; 2 2 3 &lt;= ... </code></pre> <p>and</p> <pre><code>Table Set (~300 rows): SetId SubsetId --- ------ ... E 3 E 4 F 7 F 9 ... </code></pre> <p>In SQL I suppose I could generate lots of case expressions from the tables, but so far I've just loaded the tables and used an external tool to do essentially the same thing. </p> <p>When I came up with this I was pleased (and also implemented it). Lately I've been wondering whether it is as wonderful as I thought. Is there a better way to store the definitions of the sets?</p> http://stackoverflow.com/questions/1813460/database-best-performance-way-to-query-geo-location-data 6 Database: Best performance way to query geo location data ??? HankW 2009-11-28T19:12:04Z 2009-11-30T20:20:08Z <p>I have a MySQL database. I store homes in the database and perform literally just 1 query against the database, <strong><em>but I need this query to be performed super fast</em></strong>, and that's to return all homes within a square box geo latitude &amp; longitude.</p> <pre><code>SELECT * FROM homes WHERE geolat BETWEEN ??? AND ??? AND geolng BETWEEN ??? AND ??? </code></pre> <p>How is the best way for me to store my geo data so that I can perform this query of displaying all home within the geolocation box the quickest?</p> <p>Basically:</p> <ul> <li>Am I using the best SQL statement to perform this query the quickest?</li> <li>Does any other method exist, maybe not even using a database, for me to query the fastest way a result of homes within a boxed geolocation bounds?</li> </ul> <p>In case it helps, I've include my database table schema below:</p> <pre><code>CREATE TABLE IF NOT EXISTS `homes` ( `home_id` int(10) unsigned NOT NULL auto_increment, `address` varchar(128) collate utf8_unicode_ci NOT NULL, `city` varchar(64) collate utf8_unicode_ci NOT NULL, `state` varchar(2) collate utf8_unicode_ci NOT NULL, `zip` mediumint(8) unsigned NOT NULL, `price` mediumint(8) unsigned NOT NULL, `sqft` smallint(5) unsigned NOT NULL, `year_built` smallint(5) unsigned NOT NULL, `geolat` decimal(10,6) default NULL, `geolng` decimal(10,6) default NULL, PRIMARY KEY (`home_id`), KEY `geolat` (`geolat`), KEY `geolng` (`geolng`), ) ENGINE=InnoDB ; </code></pre> <p><strong>UPDATE</strong></p> <p>I understand spatial will factor in the curvature of the earth but I'm most interested in returning geo data the FASTEST. Unless these spatial database packages somehow return data faster, please don't recommend spatial extensions. Thanks</p> <p><strong>UPDATE 2</strong></p> <p>Please note, no one below has truly answered the question. I'm really looking forward to any assistance I might receive. Thanks in advance.</p> http://stackoverflow.com/questions/1762305/sql-server-one-table-with-400-columns-or-40-tables-with-10-columns 0 SQL Server: One Table with 400 Columns or 40 Tables with 10 Columns? Belliez 2009-11-19T10:26:35Z 2009-11-30T20:13:29Z <p>I am using SQL Server 2005 Express and Visual Studio 2008. </p> <p>I have a database which has a table with 400 Columns. Things were (just about manageable) until I had to perform bi-directional sync between several databases.</p> <p>I am wondering what arguments are for and against using 400 column database or 40 table database are?</p> <p>The table in not normalised and comprises of mainly nvarchar(64) columns and some TEXT columns. (there are no datatypes as it was converted from text files). </p> <p>There is one other table that links to this table and is a 1-1 relationship (i.e one entry relates to one entry in the 400 column table).</p> <p>The table is a list files that contained parameters that are "plugged" into a application.</p> <p>I look forward to your replies.</p> <p>Thank you</p> http://stackoverflow.com/questions/1787655/how-to-store-regions-in-a-database-field 1 how to store regions in a database field oo 2009-11-24T03:49:44Z 2009-11-30T20:12:13Z <p>i have a webbased tracking application and i am storing data in SQL server. I am tracking which locations i have deployed applications. The web interface is a dropdown combo and I have a varchar(100) field right now. I have the user select a dropdown list:</p> <ul> <li>Global</li> <li>America</li> <li>Europe</li> <li>Asia</li> </ul> <p>but now i have applications that are stored in more than one region (but not necessarily global)</p> <p>should i get rid of the "global" option and just have a multi-select field with America, Europe and Asia.</p> <p>I am trying to think of the implications when i go query this data as i would like to slice and dice this data and run queries to get metrics per region, etc.</p> <p>what is the best way for me to store this data?</p> http://stackoverflow.com/questions/1819692/mysql-database-structure-more-columns-or-more-rows 0 MySQL database structure: more columns or more rows? Anthony 2009-11-30T12:59:46Z 2009-11-30T16:17:56Z <p>I'm creating an online dictionary and I have to use three different dictionaries for this purpose: everyday terms, chemical terms, computer terms. I have tree options:</p> <p>1) Create three different tables, one table for each dictionary</p> <p>2) Create one table with extra columns, i.e.:</p> <pre><code>id term dic_1_definition dic_2_definition dic_3_definition ---------------------------------------------------------------------- 1 term1 definition ---------------------------------------------------------------------- 2 term2 definition ---------------------------------------------------------------------- 3 term3 definition ---------------------------------------------------------------------- 4 term4 definition ---------------------------------------------------------------------- 5 term5 definition definition ---------------------------------------------------------------------- etc. </code></pre> <p>3) Create one table with an extra "tag" column and tag all my terms depending on it's dictionary, i.e.:</p> <pre><code>id term definition tag ------------------------------------ 1 term1 definition dic_1 2 term2 definition dic_2 3 term3 definition dic_3 4 term4 definition dic_2 5 term1 definition dic_2 etc. </code></pre> <p>A term can be related to one or more dictionaries, but have different definitions, let's say a term in everyday use can differ from the same term in IT field. That's why term1 (in my last) table can be assigned two tags - <code>dic_1</code> (id 1) and <code>dic_2</code> (id 5).</p> <p>In future I'll add more dictionaries, so there probably will be more than three dics. I think if I'll use option 2 (with extra columns) I'll get in future one table and many many columns. I don't know if it's bad for performance or not.</p> <p>Which option is the best approach in my case? Which one is faster? Why? Any suggestions and other options are greatly appreciated.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together 10 What should I name a table that maps two tables together? DanThMan 2009-11-28T18:36:25Z 2009-11-30T16:07:47Z <p><strong>Let's say I have two tables:</strong></p> <pre><code>Table: Color Columns: Id, ColorName, ColorCode Table: Shape Columns: Id, ShapeName, VertexList </code></pre> <p><strong>What should I call the table that maps color to shape?</strong></p> <pre><code>Table: ??? Columns: ColorId, ShapeId </code></pre> http://stackoverflow.com/questions/1820229/visualizing-nhibernate-model 0 Visualizing nHibernate model. tomo 2009-11-30T14:45:44Z 2009-11-30T15:42:53Z <p>Hello, I'm designing a data model using Fluent nHibernate and I'm wondering how to visualize entites, relations and stuff for documentation purposes.</p> <p>This is my first project using Fluent nHibernate. My previous projects were build on Linq2Sql but recently I was a bit annoyed about some L2Q concepts and finally I decided to do a switch to different ORM.</p> <p>There is at least one feature I'm missing in Fluent - the possibility to prepare a nice looking diagram of all entites and relations in model. Having a sheet of paper near monitor with current datamodel helps a lot. This feature in 'out-of-the-box' when using L2Q.</p> <p>Are there any free and quick solutions to prepare graphical visualization of entity model?</p> http://stackoverflow.com/questions/1819934/how-to-store-tags-in-mysql-tags-one-field-in-total-or-one-filed-for-each-tag 0 How to store tags in MySQL tags, one field in total or one filed for each tag? Steven 2009-11-30T13:50:02Z 2009-11-30T14:08:14Z <p>I am developing a product which is close to stackoverflow.com. A poster is required to enter tags for his problem or task. How to store these tags in the database, one field(column) in total or one field(column) for one tag?</p> http://stackoverflow.com/questions/1818101/whats-the-best-way-to-model-dependencies-in-sql-relational-database 0 whats the best way to model dependencies in SQL relational database oo 2009-11-30T06:14:38Z 2009-11-30T13:44:53Z <p>if i have a table called <strong>projects</strong> and a project can have a dependency on one or many other projects, what is the best way to model this in db tables.</p> <p>i have one table called <strong>Projects</strong> with columns: <strong>ID, Name</strong></p> <p>i was thinking of having a new column called Dependencies and just store the ID of another project but i just realized that there can be many project dependencies so i can store this as a comma delimited list of project IDs but i wanted to get opinions on any other way to model this in a relational db.</p> http://stackoverflow.com/questions/1777420/database-design-how-do-i-track-information-over-time-and-query-a-table-for-late 1 Database design - how do I track information over time and query a table for latest data? oo 2009-11-22T01:12:31Z 2009-11-29T05:51:11Z <p>We are trying to track our applications in our department and our unit test usage so I have created a database to keep track of this. I have an <strong>Applications</strong> table and at first, I created a <strong>UnitTests</strong> column in the <strong>Applications</strong> table but I just realized that by simply keeping this up to date it will overwrite the history of unit test for that application.</p> <p>Since I want to be able to extract the data here over time to produce charts that show progress, I realized that I needed a separate table called <strong>UnitTestTracking</strong> which has the following columns:</p> <ul> <li>ID (primaryKey)</li> <li>application_ID(int)\</li> <li>date_added (datetime) </li> <li>unittestcount (int)</li> </ul> <p>This way, people can add new entries once a week or once a month in this table and we will have a history over time to show progress for each application and the total across all applications.</p> <p>The one issue now is: How would I write a query against this table to get the total count across all applications since different applications will be adding entries in this table at different times?</p> <p>Essentially (in pseudo-SQL) I need something like:</p> <p>"Select count of unit tests across all applications where the application data_added is the latest date added for that application id"</p> <p>How you would write this query?</p> http://stackoverflow.com/questions/1777327/database-design-do-i-need-one-of-two-database-fields-for-this 0 Database design - do I need one of two database fields for this? oo 2009-11-22T00:36:18Z 2009-11-29T05:48:02Z <p>I am putting together a schema for a database. The goal of the database is to track applications in our department. I have a repeated problem that I am trying to solve.</p> <p>For example, I have an "Applications" table. I want to keep track if any application uses a database or a bug tracking system so right now I have fields in the Applications table called</p> <p>Table: <strong>Applications</strong><br> UsesDatabase (bit)<br> Database_ID (int)<br> UsesBugTracking (bit)<br> BugTracking_ID (int) </p> <p>Table: <strong>Databases:</strong><br> id<br> name </p> <p>Table: <strong>BugTracking:</strong><br> id<br> name </p> <p>Should I consolidate the "uses" column with the respective ID columns so there is only one bug tracking column and only one database column in the applications table?</p> <p>Any best practice here for database design?</p> <p><hr></p> <p>NOTE: I would like to run reports like "Percent of Application that use bug tracking" (although I guess either approach could generate this data.)</p> http://stackoverflow.com/questions/1812906/tips-for-designing-a-minimalist-data-store-suitable-for-an-embedded-device 4 Tips for designing a minimalist data store suitable for an embedded device. lxe 2009-11-28T16:16:18Z 2009-11-28T17:39:16Z <p>I am trying to design a data store implementation like SQLite, BerkeleyDB or CouchDB suitable for a small embedded computer platform. The main criteria is minimal bloat and simple API.</p> <p>I could not find any products that fit my needs. SQLite is a tad too large and mimics relational databases. CouchDB has a good RESTful API but is bloated.</p> <p>Basically my goals are:</p> <ul> <li>Written in C.</li> <li>Key-value model preferred over relational model.</li> <li>RESTful web server and API.</li> </ul> <p>I am struggling with designing the database backend. What's the best way to store the data? How do I organize it with minimal performance loss? How do other implementations tackle this (SQLite for example)? Is there any literature on this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1812548/how-to-enforce-a-database-self-join-or-is-there-a-better-way 0 how to enforce a database self join (or is there a better way) oo 2009-11-28T13:45:58Z 2009-11-28T17:25:46Z <p>I have an employees table in a database, and I want to link an employee to their manager:</p> <h2><strong>Employee</strong> Table</h2> <ul> <li>employee_id </li> <li>first_name</li> <li>last_name</li> <li>manager_id</li> </ul> <p>If the manager_id is just another row in the same table where the manager has it as their employee, what is the best way to enforce that if I delete an employee it verifies that this employee is not the manager of another employee?</p> <p>Is there a better best practice for this?</p> http://stackoverflow.com/questions/1812751/trying-to-inner-join-multiple-tables-but-always-returning-0-rows 1 trying to inner join multiple tables but always returning 0 rows. oo 2009-11-28T15:18:50Z 2009-11-28T16:04:32Z <p>I am trying to figure out why this query returns 0 rows as there is data in all 3 tables.</p> <h2>Here are my tables:</h2> <p>Table1: Applications Columns: ID, Name</p> <p>Table2: Resources<br> Columns: ID, Name</p> <p>Table3: ApplicationResourceBridge<br> Columns: ID, app_id, resource_id</p> <h2>And Here is the query</h2> <pre><code>SELECT Resources.name , ApplicationResourceBridge.resource_id AS Expr3 FROM Resources INNER JOIN Applications ON Resources.id = Applications.id INNER JOIN ApplicationsResources ON Resources.id = ApplicationResourceBridge.resource_id </code></pre> http://stackoverflow.com/questions/1469518/how-can-i-handle-multiple-row-revisions-in-a-single-table 0 How can I handle multiple row revisions in a single table? asp316 2009-09-24T02:33:45Z 2009-11-27T21:19:20Z <p>I'm working on an app where users enter pricing quotes. They want to be able to have multiple revisions of the quotes and have access to all of them to revise and view.</p> <p>Currently the data is stored in a Quotes table that looks like this:</p> <p>QuoteID (PK, autonumber) data1, data2, data3 and so on.</p> <p>QuoteID foreign keys to other tables for one to many relationships for details about the quote.</p> <p>Is there a way to keep all of the revisions in the Quotes table AND handle revisions? This way, the FK relationships to other tables would not be broken.</p> http://stackoverflow.com/questions/1801360/relational-database-tables 0 Relational database tables kingrichard2005 2009-11-26T03:20:05Z 2009-11-27T19:34:24Z <p>Hello, I'm currently working on an ASP.Net MVC project for a software engineering class. My goal is to create a small online game rental system. I currently have a 3 tables, Movies, Games and Registrants; and I'm using LINQ-to-SQL to define each of these tables as classes for my model. So far I've created models for Movies and Games, what I would like to do when creating the Registrant model is create a relationship between Registrants and Movies and Games. What I've tried so far is to define a foreign key between the ID (the primary key in the Registrant table) and a registrantID field in both the Movies and Games. What I realized is that if I were to remove an instance of a registrant, it will delete the associated movie and/or game from the other tables. What I'm thinking of doing is creating two separate models defining rentedGames and rentedMovies and creating a relationship between those and the Games and Movies table in order to try and model a registrant renting/returning/buying movies or games from the store.</p> <p>In Summary:</p> <p>What I have so far:</p> <ul> <li>3 tables: Registrants, Movies and Games. </li> <li>LINQ-to-SQL models for my inventory of movies and games.</li> </ul> <p>What I'm trying to setup:</p> <ul> <li>A model for a registrant renting/returning a movie and/or game, when a game is rented/returned, a flag is placed next to the item in the inventory to indicate its status. </li> </ul> <p>Question: </p> <ul> <li><p>Will adding separate tables to model a rented movie/game prevent items defined in my inventory models from being deleted?? i.e. when a customer returns a rented movie, the rentedMovie instance is deleted, but not the movie is is referring to in the movie inventory.</p></li> <li><p>Is there such a thing as a related table having a status flag set on the related entry, as opposed to the entry being deleted, whenever the associated entry in the other table is modified?? i.e. when a customer returns a rented movie, the rentedMovie instance sets a flag in the movie it refers to that it's available for rent, the rentedMovie instance is then deleted.</p></li> </ul>