0
votes
1answer
17 views
XML Schema (XSD): How to express “At most one element from group A and at most one element from group b”?
Say I have two sets of XML elements:
<One/>
<Two/>
<Three/>
And
<A/>
<B/>
<C/>
And I want to have them as children of a bucket element:
<Bucket>
…
1
vote
1answer
21 views
Is it possible to use JAXB to map from schema to a Java map?
I have an existing XML schema that contains a type that I would like to map to a Java Map of some sort using JAXB. My build process takes the schema and creates the beans. I would like to customize …
3
votes
3answers
26 views
XSD: How to validate the XML file according to value of some tag ?
Hi! I was trying to validate this XML file ...
where if
<tag1> is "Y" then <tag2> must appear
if <tag1> is "N" then <tag2> must not appear ..
> <parent>
> …
0
votes
0answers
14 views
run sql queries under a particular schema context
Hello Experts,
We are thinking about to create new schema with its own 3 tables which will be created on the fly for an individual customer.
To run a particular query for those tables in a …
1
vote
1answer
22 views
How can I get the xml Node type based on schema definition in Java?
Let's say I have a doc.xml and corresponding doc.xsd. I use xpath to retrieve some nodes, so I get a list of org.w3c.dom.Node. How can I get type of each node from schema, eg. xs:integer, xs:string …
3
votes
1answer
37 views
XML Schema reading/editing in vim?
Hi all,
As XML Schemas can be tedious to read (yes, just want to read through the schema) in their normal form, I'm wondering if anyone knows of an existing plugin for vim which will display the …
1
vote
3answers
79 views
The Ruby community values simplicity…what’s your argument for simplifying a db schema in a new project?
I'm working on a project with developers who have not worked with Ruby OR Rails before.
They have created a schema that is too complicated, in my opinion. The schema has 117 tables, and obtaining …
0
votes
2answers
40 views
Differences between Database and Schema using different databases?
What are the differences in database terminology between MsSQL and MySQL?
Can a mysql instance have more than one database? It appears that it can only create different schemas.. However the sql …
1
vote
1answer
27 views
Fogbugz database schema management
This is a very simple question, and maybe the man himself can provide insight on this :)
Does anyone know the pseudocode behind how Fog Creek does database schema management?
I'm running into an …
0
votes
1answer
121 views
+100
Importing schema with XMLmapper in Delphi ?
Hi,
I try to import some valid schema (for xmlspy and oxygen) with XMLMapper in delphi and I have this error
"Error Flux if:InfofileType unknown".
I use namespace and this type is define in …
0
votes
2answers
23 views
Change Oracle Schema at runtime when using SubSonic
In my project, I am using Oracle Database and SubSonic for DAL. I have a problem with SubSonic and Oracle Schema, that is:
When developing, I used a schema DEV in Oracle Database and generate DAL …
0
votes
3answers
42 views
How do I create a multi-column constraint in SQL Server?
I know this is very simple, but how do I do this in plain SQL?
0
votes
2answers
38 views
DB / performance: layout of django model that rarely refers to its parent more than once
Hi!
I have an app that's about presenting fictional simplified cities.
Please consider the following Django models:
class City(models.Model):
name = models.CharField(...)
...
…
0
votes
1answer
29 views
Reverse engineering MySql schema with SchemaSpy
I'm attempting to reverse engineer and existing MySql database with SchemaSpy. It seems to run without any errors. However, I don't get any relationships like this sample output, just "no …
1
vote
3answers
104 views
Doctrine schema.yml generator
Hi,
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 …
