active questions tagged schema - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:42:35Z http://stackoverflow.com/feeds/tag/schema http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1821778/db-performance-layout-of-django-model-that-rarely-refers-to-its-parent-more-th 0 DB / performance: layout of django model that rarely refers to its parent more than once geradeausanwalt 2009-11-30T19:12:00Z 2009-11-30T19:23:58Z <p>Hi!</p> <p>I have an app that's about presenting fictional simplified cities.</p> <p>Please consider the following Django models:</p> <pre><code>class City(models.Model): name = models.CharField(...) ... TYPEGROUP_CHOICES = ( (1, 'basic'), (2, 'extra'), ) class BldgType(models.Model): name = models.CharField(...) group = models.IntegerField(choices=TYPEGROUP_CHOICES) class Building(models.Model): created_at = models.DateTimeField(...) city = models.ForeignKey(City) type = models.ForeignKey(BldgType) other_criterion = models.ForeignKey(...) class Meta: get_latest_by = 'created_at' </code></pre> <p>Explanations for choosing this setup:</p> <p>(1) Each city has certain buildings of a "basic" type which occur exactly once per city (examples: city hall, fire station, police station, hospital, school) and possibly dozens of buildings of "extra" type, such as dance clubs.</p> <p>(2) In certain views, all buildings (regardless of city, etc.) are to be filtered according to different criteria, e.g., <code>other_criterion</code>.</p> <p><b>Problem/concern:</b></p> <p>In a <code>city_detail</code> view, I would have to loop over any buildings of "extra" type, which is OK and normal.</p> <p>But I am not sure how to efficiently retrieve the city's "hospital" building, which is of "basic" type, so I must do this for every city anyway because exactly one such hospital exists in each city (this is ensured at city creation time).</p> <p>There will be at most a dozen of "basic" building types, of which about half will be presented all the time. </p> <p>I'm inclined towards writing convenience methods on the City model, and I face three options:</p> <p>(A1) Via <code>try</code> and index: <code>.filter(...)[0]</code></p> <p>(A2) Via <code>try</code> and <code>.get(...)</code></p> <p>(A3) Via <code>try</code> and <code>.filter(...).latest()</code></p> <p>But none of those seem elegant. Or is one of these three options good to combine with some sort of caching, like in Django's <code>get_profile()</code> method on the <code>User</code> model? Unfortunately, I have no experience with caching yet.</p> <p>Is it nuts to use the following option?</p> <p>(B) specific FKs in the City model, one for each of the most important basic types</p> <p><b>Question:</b></p> <p>Which option makes sense the most?<br> Or is the schema generally faulty for this kind of scenario?</p> <p>Especially regarding DB performance, what do you suggest? Do I need a completely different approach?</p> <p>Please advise! :)</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1810307/reverse-engineering-mysql-schema-with-schemaspy 0 Reverse engineering MySql schema with SchemaSpy melling 2009-11-27T19:22:17Z 2009-11-30T02:01:08Z <p>I'm attempting to reverse engineer and existing MySql database with <a href="http://schemaspy.sourceforge.net" rel="nofollow">SchemaSpy</a>. It seems to run without any errors. However, I don't get any relationships like this sample <a href="http://schemaspy.sourceforge.net/sample/relationships.html" rel="nofollow">output</a>, just "no relationships" like <a href="http://www.friendlybits.com/wwf/persistence/relationships.html" rel="nofollow">this</a>. I went back and added a few foreign key constraints hoping that would help. Most of my tables are in the defined uniformly like the following:</p> <p>bar.foo_id -- foreign keys are table_name.id<br> foo.id -- All tables have an id column<br></p> <p>bar.baz_id<br> baz.id<br></p> <p>Since the FK's didn't initially exist, I added them before generating the schema.</p> <p>ALTER TABLE bar ADD CONSTRAINT FOO_FK Foreign Key (foo_id) REFERENCES foo (id);<br> ALTER TABLE bar ADD CONSTRAINT BAZ_FK Foreign Key (baz_id) REFERENCES baz (id);</p> <p>Is there a a way to force SchemaSpy to generate the diagram?</p> http://stackoverflow.com/questions/1813510/xml-schema-occurence 0 xml schema occurence stupid_idiot 2009-11-28T19:27:26Z 2009-11-28T21:09:00Z <p>hi guys,</p> <p>is it somehow possible to make data type which would automaticaly define its occurence in the structure using this data type? or maybe is it possible to make such a data type that would set the occurence for its content? I'm using the occurence maxOccurs="unbounded" and minOccurs="0" on elements a lot so i thought i could spare some writing by making something that would do it implicitly.</p> <p>i hope it's not too confusing.. sry if it is.</p> <p>--edit--</p> <p>let's say i have data type like </p> <pre><code>&lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="elmnt1" minOccurs="0" maxOccurs="unbounded" type="elmnt1"/&gt; &lt;xs:element name="elmnt2" minOccurs="0" maxOccurs="unbounded" type="elmnt2"/&gt; &lt;xs:element name="elmnt3" minOccurs="0" maxOccurs="unbounded" type="elmnt3"/&gt; &lt;xs:element name="elmnt4" minOccurs="0" maxOccurs="unbounded" type="elmnt4"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; </code></pre> <p>and i don't want to write there that occurence every time adding there something. is there some way to avoid it? like inherting these attributes from some other data type?</p> http://stackoverflow.com/questions/1803965/how-to-create-simpletype-enumeration-with-xmlspy-in-schema 0 How to create SimpleType enumeration with xmlspy in schema ? Hugues Van Landeghem 2009-11-26T14:25:26Z 2009-11-26T14:33:07Z <p>Hi,</p> <p>I'd like to know how to create a SimpleType that is a enumeration with XMLSpy.</p> <p>Do you have link or something useful that can help me ?</p> <p>it's simpletype for country code </p> <pre><code>enumeration AD ("ANDORRA") enumeration AE ("UNITED ARAB EMIRATES") enumeration AF ("AFGHANISTAN") enumeration AG ("ANTIGUA AND BARBUDA") enumeration AI ("ANGUILLA") </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/124865/xml-schema-validation-tool 5 XML Schema validation tool? Jason Dagit 2008-09-24T01:19:54Z 2009-11-25T16:32:29Z <p>At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file.</p> <p>Are there tool or libraries that we can use for automated testing to check that the generated XML matches the schema?</p> <p>We would prefer free tools that are appropriate for commercial use although we won't be bundling the schema checker so it only needs to be usable by devs during development.</p> <p>Our development language is C++ if that makes any difference, although I don't think it should as we could generate the xml file and then do validation by calling a separate program in the test.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1794185/production-schema 0 production schema manoj 2009-11-25T01:57:31Z 2009-11-25T14:05:09Z <p>Hi,</p> <p>Can someone help me in understanding the difference between production schema and datawarehouse schema.</p> <p>Thanks in Advance Manoj Bhattu</p> http://stackoverflow.com/questions/1795539/element-repetition-under-xsall 1 Element repetition under <xs:all> David Reis 2009-11-25T08:56:03Z 2009-11-25T09:14:36Z <p>My data structure looks like this</p> <pre><code>&lt;datastructure&gt; &lt;field1&gt;data&lt;/field1&gt; &lt;field2&gt;data&lt;/field2&gt; &lt;field3&gt;data&lt;/field3&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;/datastructure&gt; </code></pre> <p>All fields must appear exactly one time, except field4 which can appear [0, unbounded] times. Also there's no good reason to care about the order.</p> <p>I could not come with a schema to validate this. Using sequence will work as:</p> <pre><code>&lt;xs:element name="datastructure" type="datastructureType"/&gt; &lt;xs:complexType name ="datastructureType"&gt; &lt;xs:sequence&gt; &lt;xs:element name="field1"/&gt; &lt;xs:element name="field2" /&gt; &lt;xs:element name="field3"/&gt; &lt;xs:element name="field4" minOccurs="0" maxOccurs="unbounded"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; </code></pre> <p>But that imposes an order which I have no good reason for imposing. The alternative is using all, but that requires modifying the xml to:</p> <pre><code>&lt;datastructure&gt; &lt;field1&gt;data&lt;/field1&gt; &lt;field2&gt;data&lt;/field2&gt; &lt;field3&gt;data&lt;/field3&gt; &lt;field4List&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;field4&gt;data&lt;/field4&gt; &lt;/field4List&gt; &lt;/datastructure&gt; </code></pre> <p>Because the children of all can only have maxOccurs up to one. This adds the burden of field4List, which seems to be useless in all practical regards. </p> <p>How can I write a schema that will validate my xml as does the sequence example, but that does not care for order? Or alternatively why such a schema would be a bad idea in the first place?</p> http://stackoverflow.com/questions/1794653/a-sql-2005-database-design-and-entity-framework-transaction-conundrum 0 A SQL 2005 Database Design and Entity Framework transaction conundrum mrlane 2009-11-25T04:34:58Z 2009-11-25T04:34:58Z <p>Hello. I have a database design issue that I am trying to also fit into Entity Framework. Its complex, I have inherited it and its too late to make drastic changes! I want to draw on others wisdom before I make a decision about how to go forwards...my original post was much longer, but I think the business logic details are probably not important.</p> <p>So to state the problem simply, say I have two tables in the same database:</p> <h2>TableA</h2> <p>Id, (other columns...)</p> <h2>TableB</h2> <p>Id, TableId (&lt;--- soft key), TableTypeId, (other columns...)</p> <p>Now TableB has a "soft key" to table A, that normally could be a Foreign Key, but with the schema I have it isn't, and trust me it can't be (the reason is that "fake foreign key" points at any one of 76 different tables depending on what is in TableB's "TableTypeId" column).</p> <p>Now, we are using Entity Framework. Clearly there cannot be a Navigation Property between the two tables. The problem is I need to work across these two tables in a single transaction. For example, when I add a record to TableA, I need to also add a record to TableB and use the new Identity value created in TableA for the TableB's "TableId" column.</p> <p>With a Navigation Property, I can connect the two EntityObjects in memory and then call Context.SaveChanges() and EntityFramework does it all in a transaction. However without a Navigation Property I have to insert into TableA first, get the Identity and then insert into TableB using the results of the first insert. THis is two transactions...</p> <p>I have heard that Entity Framework allows you do to more things with transactions in more complex situations, such as defining your own transaction scopes and using other parameters to COntext.SaveChanges(). Before I try this, however, I would like to know if my problem is solveable in a single transaction...</p> <p>What options do I have here other than a schema redesign...</p> <p>Thanks</p> http://stackoverflow.com/questions/1794078/what-is-a-good-db-schema-and-method-to-query-a-facebook-wall-feature 0 What is a good db schema and method to query a "Facebook Wall" feature justinl 2009-11-25T01:20:04Z 2009-11-25T03:02:55Z <p>I'm writing a simple "Facebook Wall" type feature where a user can post on another person's wall and people can simply reply to that Wall post, or post a new wall post. Users cannot reply to a reply, you may only reply to the original wall post (just like facebook)</p> <p>My original mySQL db schema that I had thought of goes like this:</p> <pre> post_id (pk) post_text (char) date_posted (datetime) is_parent (bool) parent_id (id of parent) </pre> <p>How it works:<br> If someone posts a new wall post, is_parent will be set to 1, and parent_id will be set to null.</p> <p>If someone posts a reply to that post, is_parent will be 0, and parent_id will be set to the ID of the parent post.</p> <p><strong>My Questions</strong></p> <ol> <li>Is this a good schema for this feature? If not, what schema would you use?</li> <li>If it is good, how can I do a single query that will return all the wall posts in order of most recently posted, while grouping the children with the parent so that when I iterate over the query result, the parent and children all come together.</li> <li>Or is it better to do 2 queries? One query for all the parents, 1 query for the children.</li> </ol> http://stackoverflow.com/questions/1791924/whats-the-best-way-to-make-small-schema-updates-with-doctrine-symfony 0 What's the best way to make small schema updates with Doctrine/Symfony? Josh Nankin 2009-11-24T18:15:43Z 2009-11-24T18:29:13Z <p>What's the best way to make small schema updates to your symfony/doctrine application?</p> <p>My issue is, I'm working on a new side-project and occasionally find myself adding a new column here, a new column there as i find the need. However, my DB already has existing data and I dont want to run a complete rebuild and drop my DB with the changes each time.</p> <p>I also dont want to write fixtures. They're annoying, and it's much easier to use my application to insert data and keep it around while developing. I also dont want to write a migration to add one or two columns, especially when I'm doing this a lot.</p> <p>Are my only choices to:</p> <ol> <li>make changes to the schema file and wipe the db after every schema change -or-</li> <li>update the schema file and manually run alter statements on my db</li> </ol> <p>Ultimately, what I'd like to do is either make changes to my db, and have symfony figure out what the schema file should look like, or make changes to the schema file and have symfony figure out what new changes to make to the existing database.</p> <p>Please help!</p> <p>Thanks. First time using SO, can't wait to see if i get a response!</p> http://stackoverflow.com/questions/1783933/doctrine-schema-yml-generator 0 Doctrine schema.yml generator Rick Ball 2009-11-23T15:39:13Z 2009-11-24T16:58:24Z <p>Hi,</p> <p>I am pretty new to doctrine. I made two small projects with doctrine for my own but now I am about to create big project for my client. The project will have more than 50 tables. Is there any way of generating schema.yml? I tried DB Designer and converted it to schema.yml, but I still had to check and rewrite the definitions by hand. Thanks</p> http://stackoverflow.com/questions/1785717/database-design-strategy-for-a-wine-review-site-with-top-10-lists-and-featured-wi 1 Database design strategy for a wine review site with top 10 lists and featured wines KJF 2009-11-23T20:26:47Z 2009-11-24T13:44:39Z <p>I'm building a Wine review site and have run into a database design problem I was hoping someone could help me with.</p> <p>The basic premise of the site is that users will log in a leave reviews of wines they have tested.</p> <ul> <li>users </li> <li>wines </li> <li>reviews</li> </ul> <p>A user has many reviews, review belongs to user and review belongs to wine. This much is easy.</p> <p>I have two extra bits of information I want to show.</p> <p>Each week I will have a list of the top 10 wines bought in supermarkets. This list is not based on data from the site but rather data given to me by the supermarket so I cannot calculate this myself and display.</p> <p>I will also have featured wines which will be displayed on the front page. Again supplied by the supermarket.</p> <p>My question is what kind of database design would be best in this situation, in terms of avoiding duplication and complexity.</p> <p>For the top 10 list my initial thought is to add a decimal column to the wines table which will list its position in the top 10 list but this seems overkill for thousands of wines when only 10 are listed at once.</p> <p>I'm thinking the same for featured wines, adding a boolean value to indicate if the wine is a featured wine or not. Again, it seems overkill and I don't want to maintenance problem of making sure only a certain number of wines are featured (as this will change week to week)</p> <p>Thanks.</p> http://stackoverflow.com/questions/1572563/importing-a-schema-ldif-and-content-ldif-on-every-startup-of-apacheds 0 Importing a schema LDIF and content LDIF on every startup of ApacheDS? cringe 2009-10-15T13:59:46Z 2009-11-24T13:00:02Z <p>Hi guys!</p> <p>I want my embedded ApacheDS to start up with a fresh schema/content when I run my tests. I tried to import a LDIF with this lines:</p> <pre><code> LdifFileLoader ldifLoader = new LdifFileLoader(service.getAdminSession(), "path/to/my/export.ldif"); ldifLoader.execute(); </code></pre> <p>But now ApacheDS stores the information in a directory <em>server-work</em> in the current working directory. I had to manually delete the directory <em>server-work</em> every time and I wonder if that is the right way...</p> <p>I exported the schema as LDIF too and I want to import it first. Can I import it with <strong>LdifFileLoader</strong> too? Or am I doing it in a wrong way at all?</p> http://stackoverflow.com/questions/1785218/xmldocument-validate-ignore-properties-without-xmlignore 1 XmlDocument.Validate ignore properties without [XmlIgnore] Sean Chambers 2009-11-23T18:56:41Z 2009-11-23T19:18:01Z <p>I have a object that has a number of properties that aren't present in the xsd file. When doing XmlDocument.Validate is there a way I can tell it to ignore properties that are not present in the xsd and instead just ensure that the properties required by xsd are present in the xml document?</p> <p>I can get around this by adding [XmlIgnore] attributes all over my class but I would rather accomplish this by convention rather then explicitly add attributes all throughout my object model.</p> http://stackoverflow.com/questions/1607618/soap-ui-can-i-add-assertion-to-validate-with-local-xml-schema-file 0 SOAP UI: Can I add assertion to validate with local XML Schema file? Markos Fragkakis 2009-10-22T14:26:56Z 2009-11-23T15:22:30Z <p>Hi all,</p> <p>I have created a Web Service (with Java, Axis). Depending on the content of the request, the response may have a different XSD. So, the WSDL only specifies that the response is of a generic XSD, and the responses comply to XSDs that import and extend the generic XSD.</p> <p>Unfortunately, the Schema assertion fail because the XSD specified in the WSDL can only the generic one. Is there a way to manually specify which XSD I want the assertion to use? For instance, depending on the request I prepare, I know the specific XSD of the response. So, it would be perfect if I could say to SoapUI to assert the response by that XSD, which I can store either locally or at a url.</p> <p>So, is there a way to make a schema assertion using a locally (or remotely) stored XML schema?</p> <p>Thanks,</p> <p>Markos</p> http://stackoverflow.com/questions/1778430/wipe-all-data-stored-with-coredata-when-the-model-has-changed 0 Wipe all data stored with CoreData when the model has changed Dimitris 2009-11-22T11:02:06Z 2009-11-22T12:30:41Z <p>I have an app that fetches data from the internet and uses CoreData to store them in the device, for a smoother experience.</p> <p>Because I use Core Data, every time my schema changes, the app crashes when I try to run it with the previous data stored on the device. What is the fastest way to detect this change and wipe all the data from the device, since I don't mind redownloading them all. It beats crashing and remapping the schema to the new one (in my case).</p> <p>I see that this check is performed in the getter:</p> <pre><code>- (NSPersistentStoreCoordinator *)persistentStoreCoordinator </code></pre> <p>so I only need to know the methodology to implement for wiping the whole database and seting up Core Data again. Thanks :)</p> http://stackoverflow.com/questions/1774198/how-do-i-exclude-a-base-class-using-fluent-mappings-in-fluent-nhibernate 1 How do I exclude a base class using fluent mappings in Fluent NHibernate? Daniel T. 2009-11-21T01:34:21Z 2009-11-21T01:34:21Z <p>I have an abstract base class, <code>Entity</code>, that all my POCOs derive from:</p> <pre><code>public abstract class Entity { public virtual Guid Id { get; set; } } </code></pre> <p>And the mapping file:</p> <pre><code>public class EntityMap&lt;T&gt; : ClassMap&lt;T&gt; where T : Entity { public EntityMap { Id(x =&gt; x.Id); } } </code></pre> <p>This way, I don't have to write <code>Id(x =&gt; x.Id)</code> in every mapping file by using this:</p> <pre><code>public class Something : EntityMap&lt;T&gt; { blahblah } </code></pre> <p>I'm auto-generating my database schema, and everything looks fine, except that the Entity base class is added as a table. Using fluent mappings, how do I configure it so that the Entity class is excluded from the database schema?</p> http://stackoverflow.com/questions/1766036/foss-version-of-sqlcompare-or-something-similar 0 FOSS version of SQLCompare or something similar? Scott 2009-11-19T19:47:44Z 2009-11-19T19:59:16Z <p>Actually, free is good enough, it doesn't have to be open source :)</p> <p>I'm currently using the Schema Compare utility of VS2008, but it doesn't have a command line interface and has some other weaknesses as well.</p> <p>I'm wondering what free tools others are using to provide command line schema comparisons/synchronizations?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1763800/database-design-question -5 Database design question Mr. Flint 2009-11-19T14:48:19Z 2009-11-19T15:00:01Z <p>I am designing a simple database of online exam system. But i can not figure out how the questions and the answers should be stored. I am thinking question and Answer as different entities. There will be both MCQ and short questions in the same question set and the number of questions in a set may be dynamic(choose by teacher).</p> <p>Please someone help me out</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1762290/is-there-any-api-provided-by-dot-net-platform-to-convert-a-string-or-bytres-array 0 is there any api provided by dot net platform to convert a string or bytres array into user defined object? sahil garg 2009-11-19T10:22:02Z 2009-11-19T13:40:19Z <p>Suppose i have input array byte A[50];</p> <p>i have put three diffrent data types values in array as below</p> <ol> <li>string of length 42 bytes(converted into binary)</li> <li>long with length 4 bytes(converted into binary)</li> <li>float with length of 4 bytes(converted into binary)</li> </ol> <p>Now i have defined a schema like as below</p> <pre><code> &lt;schemaforparsing&gt; &lt;field&gt; &lt;name&gt;fieldname1&lt;/name&gt; &lt;type&gt;string&lt;/type&gt; &lt;length&gt;42&lt;/length&gt; &lt;/field&gt; &lt;field&gt; &lt;name&gt;fieldname2&lt;/name&gt; &lt;type&gt;long&lt;/type&gt; &lt;length&gt;4&lt;/length&gt; &lt;/field&gt; &lt;field&gt; &lt;name&gt;fieldname3&lt;/name&gt; &lt;type&gt;float&lt;/type&gt; &lt;length&gt;4&lt;/length&gt; &lt;/field&gt; &lt;/schemaforparsing&gt; </code></pre> <p>i want to parse this bytes array in to an user defined object. Userdefined object 's class should be generated from specified schema.like in this case class will be as below</p> <pre><code> classGenerated { String fieldname1[42]; long fieldname2; float fiedlname3; } </code></pre> <p>So basically i want a component which will take input of a schema and based upon that schema, after parsing binary data in array it will generate object of class related to transaction schema.</p> <p>Does dot net 3.5 platform provides such a component?</p> http://stackoverflow.com/questions/1758889/are-data-snapshots-of-line-item-prices-better-than-calculations-in-all-cases 1 Are data-snapshots of line item prices better than calculations in all cases? Tony 2009-11-18T20:36:32Z 2009-11-18T21:05:50Z <p>I've often seen line_item tables for orders or invoices that copy one or more fields from other tables in order to take a snap-shot of a customer's product order when it was placed.</p> <p>In my schema, however, I can generate a view of an order without copying data. So looking up the order/product/price data is a little more expensive, but I save time, space and redundancy on the copy/insert. I understand the copy/insert is a one-time transaction, whereas the look-up will be required many times - however, I'm only dealing with 10s of thousands of records in a given table and I don't expect performance to be an issue. </p> <p><strong>So, because a) my schema supports an accurate look-up without a snap-shot, and b) I don't have a strong need for look-up optimization, I think it makes sense to run a calculation instead of taking a snap-shot. Or is there something I'm missing and should I always take a snap-shot in cases like this?</strong></p> <p>Here's an example of what the look-up calculation would look like:</p> <pre><code># display order items for a particular order on a particular date # get order, products and base prices from order_id order_products = SELECT * FROM order_has_product ohp INNER JOIN price ON (price.product_id = ohp.product_id) INNER JOIN order ON (order.id = ohp.order_id) WHERE order_id = ? # calculate price of each product at order.datetime_opened for op in order_products: tax = SELECT SUM(tax.rate) FROM product_has_tax pht INNER JOIN tax ON (tax.id = pht.tax_id) WHERE pht.product_id = op.product_id AND tax.date_start &lt;= op.datetime_opened AND tax.date_end &gt;= op.datetime_opened discount_product = SELECT SUM(discount.rate) FROM product_has_discount phd INNER JOIN discount ON (discount.id = phd.discount_id) WHERE phd.product_id = op.product_id AND discount.date_start &lt;= op.datetime_opened AND discount.date_end &gt;= op.datetime_opened discount_customer = SELECT SUM(discount.rate) FROM customer_has_discount chd INNER JOIN discount ON (discount.id = chd.discount_id) WHERE chd.customer_id = op.customer_id AND discount.date_start &lt;= op.datetime_opened AND discount.date_end &gt;= op.datetime_opened AND (chd.date_used_limited IS NULL OR chd.date_used_limited = op.datetime_opened) discount = discount_product + discount_customer price = op.price * (1-discount) * (1+tax) </code></pre> http://stackoverflow.com/questions/1758275/textmessage-containing-an-appstore-link 0 Textmessage containing an appstore link Stefan 2009-11-18T19:01:54Z 2009-11-18T19:17:08Z <p>Hi,</p> <p>how do I build a link, which opens the appstore and shows an app (something like itms://myapplication?action=show). I want to send that link via a text message (over the web). All I've found was the ITMS link generator.</p> <p>Best regards,</p> <p>Stefan</p> http://stackoverflow.com/questions/1111709/how-to-find-data-table-column-reference-in-stored-procedures 1 How to find data table column reference in stored procedures Dan Appleyard 2009-07-10T20:08:27Z 2009-11-18T18:13:24Z <p>I have changed a column name in a table in my SQL Server 2005 database. I also have a rather large collection of stored procedures that may or may not be referencing that column. Is there a way to find what stored procedures are referencing that column without actually going through each stored procedure and search for it manually? Is there a way to automatically find what stored procedures will now break or something? I do not have access to such SQL refactoring tools like RedGate's SQL Refactor.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1756325/reload-column-names-in-activerecord-model-class 2 Reload column names in ActiveRecord model class obvio171 2009-11-18T14:20:58Z 2009-11-18T14:37:15Z <p>I have a script using ActiveRecord that creates column names dynamically based on values read from a CSV file, something like this:</p> <pre><code>FasterCSV.foreach('votes.csv', :headers =&gt; true) do |row| column_name = "roll_call_id_#{row['roll_call_id']}" if !Legislator.columns.map(&amp;:name).include?(column_name) connection_pool.connection.add_column('legislators', column_name, 'string') end end </code></pre> <p>The problem is that, after creating the new column, I can't do a <code>legislator.update_attribute(column_name, value)</code> because the class doesn't pick up the new column and complains it doesn't exist.</p> <p>How can I make it query the table structure again?</p> http://stackoverflow.com/questions/1746007/how-does-doctrine-handle-changes-to-the-database-schema 0 How does Doctrine handle changes to the database schema? Mario Awad 2009-11-17T01:17:15Z 2009-11-17T04:23:50Z <p>In brief, what happens when you add a column to a table? What happens when you remove one?</p> <p>In more details, suppose you have the following:</p> <pre><code>class User extends Doctrine_Record { public function setTableDefinition() { $this-&gt;hasColumn('username', 'string', 255); $this-&gt;hasColumn('password', 'string', 255); } } </code></pre> <p>What happens when you add the following line to the setTableDefinition function?</p> <pre><code>$this-&gt;hasColumn('firstname', 'string', 255); </code></pre> <p>What happens when you delete the following line from the setTableDefinition function?</p> <pre><code>$this-&gt;hasColumn('password', 'string', 255); </code></pre> http://stackoverflow.com/questions/1741491/xml-schema-substitution-groups 3 XML Schema : substitution groups Gady 2009-11-16T11:04:55Z 2009-11-16T12:04:32Z <p>I'm investigating substitution groups in XML schema and I can't seem to find the official spec. can anyone point me to it ?</p> <p>I'm wondering if an element with substitution group attribute can replace an element inside a complex or only global elements as <a href="http://www.w3schools.com/Schema/schema%5Fcomplex%5Fsubst.asp" rel="nofollow">w3schools</a> claims :</p> <blockquote> <p>"Note that all elements in the substitutionGroup (the head element and the substitutable elements) must be declared as global elements, otherwise it will not work!"</p> </blockquote> <p>is the above statement true ?</p> <p>since global elements can each be a root of the XML instance - what is the point of defining substitution groups on them ?</p> http://stackoverflow.com/questions/186413/how-to-set-xmllang-attribute 0 How to set "xml:lang" attribute? 2008-10-09T08:30:01Z 2009-11-15T00:33:55Z <p>Hi,</p> <p>I need to add a "xml:lang" attribute on the root xml node in the outbound doument from Biztalk. This is a fixed value, so it may be set in the schema or something.</p> <p>This is what I want to get out:</p> <pre><code>&lt;Catalog xml:lang="NB-NO"&gt; ... &lt;/Catalog&gt; </code></pre> <p>I've tried to define the attribute "xml:lang", but it doesn't allow me to use ":" in the schema. </p> <p>This is the error message I get:</p> <blockquote> <p>Invalid 'name' attribute value 'xml:lang': The ':' character, hexadecimal value 0x3A, at position 3 within the name, cannot be included in a name.</p> </blockquote> <p>Is there another way to insert a ':' as part of the attribute name in Biztalk?</p> <p>Can anyone tell me how to do this?</p> <p>I'm using Biztalk 2006 and no orchestartion.</p> <p><br> Regards </p> <p>JimboMan</p> http://stackoverflow.com/questions/1374093/why-would-datatype-for-column-schema-be-negative-in-odbc 0 Why would DATA_TYPE for column schema be negative in ODBC? bebop 2009-09-03T15:21:24Z 2009-11-14T06:00:02Z <p>I am trying to allow a user to select a table a 2 columns from that table for use in a query.</p> <p>They define the provider and the connection string to choose the database. This is done using the DBProviderFactory and the DBConnectionStringBuilder. The problem seems to be when using the ODBC provider, other providers (OLEDB, Sql) seem ok. </p> <p>I query the schema to get the tables. The user then chooses a table. As I only want to the user to be able to choose one string column and one numeric column I am trying to restrict the columns displayed for the chosen table based on their defined type in the schema. to do this I query the DataTypes collection and use the ProviderDbType column (which contains a number) and the DataType column (which contains the .Net system type) to build a map of DbType to System types.</p> <p>I then query the schema for the table the user has chosen and based on the DATA_TYPE column in the result, look up the system type, so now I can allow the user to choose 1 column which is a string and another that is numeric. My problem is that for most database types this works, but for nchar the ProviderDbType is listed as 11 (in the DataTypes schema query), but when I get the columns of the table the DATA_TYPE is -8 (which is not a number in the ProviderDbType column).</p> <p>How can I determine the type of the column correctly? Or am I doing something wrong?</p> http://stackoverflow.com/questions/1172083/how-to-get-around-the-xsgroup-cannot-be-placed-inside-xsall-limitation 0 How to get around the "xs:group cannot be placed inside xs:all" limitation? mindas 2009-07-23T14:18:09Z 2009-11-14T02:35:54Z <p>Is there any reason why <code>&lt;xs:group&gt;</code> cannot appear inside <code>&lt;xs:all&gt;</code>, but only inside <code>&lt;xs:sequence&gt;</code>?</p> <p>Let's see an example. Say, there is a list of tags (<code>&lt;a&gt;</code> to <code>&lt;d&gt;</code> and <code>&lt;e&gt;</code> to <code>&lt;f&gt;</code> - see example below) which do not appear in any particular order, but always wrapped into another object (either <code>&lt;foo&gt;</code> or <code>&lt;bar&gt;</code>); <code>&lt;foo&gt;</code>={<code>&lt;a&gt;</code>, <code>&lt;b&gt;</code>, <code>&lt;c&gt;</code>, <code>&lt;d&gt;</code>}; <code>&lt;bar&gt;</code>={<code>&lt;e&gt;</code>, <code>&lt;b&gt;</code>, <code>&lt;c&gt;</code>, <code>&lt;f&gt;</code>}:</p> <pre><code>&lt;foo&gt; &lt;a&gt;a1&lt;/a&gt; &lt;b&gt;b1&lt;/b&gt; &lt;c&gt;c1&lt;/c&gt; &lt;d&gt;d1&lt;/d&gt; &lt;/foo&gt; &lt;foo&gt; &lt;d&gt;d2&lt;/d&gt; &lt;b&gt;b2&lt;/b&gt; &lt;c&gt;c2&lt;/c&gt; &lt;a&gt;a2&lt;/a&gt; &lt;/foo&gt; &lt;bar&gt; &lt;e&gt;e3&lt;/e&gt; &lt;b&gt;b3&lt;/b&gt; &lt;c&gt;c3&lt;/c&gt; &lt;f&gt;f3&lt;/f&gt; &lt;/bar&gt; </code></pre> <p>I want to extract tags <code>&lt;b&gt;</code> and <code>&lt;c&gt;</code> into <code>xs:group</code> and use <code>&lt;xs:group ref="..."&gt;</code> when defining <i>complexType</i> of <code>&lt;foo&gt;</code> and <code>&lt;bar&gt;</code> in the XSD. However, due to the restriction mentioned above, this is not possible. </p> <p>What would you suggest as a workaround for the given problem? Chances are, I am doing something stupid, but again why is this incorrect?</p> http://stackoverflow.com/questions/1732057/tool-to-document-sql-server-schema 0 Tool to Document SQL Server Schema Chris Klepeis 2009-11-13T21:31:27Z 2009-11-13T22:49:00Z <p>Can anyone recommend a free (or cheap) program out there which allows me to easily document what certain tables and fields are used for in our applications? Ideally, when we update a fields type, it would automagically update in this tool. Also, showing what fields are indexed etc would be beneficial.</p> <p>What solutions have you guys / gals used to document your database?</p> <p>Thanks</p> <p>Update: we use MS SQL Server 2008</p>