Schema means shape, or more generally, plan. It may be XML schema or Database schema.
0
votes
0answers
13 views
Element 'price' cannot have character [children], because the type's content type is element-only
I am trying to validate my XML file against my XML Schema, however I am being given the following two errors for each item in my XML file:
cvc-complex-type.2.3: Element 'price' cannot have character ...
0
votes
1answer
98 views
How to properly embed schemas into email?
I am trying to create a sample application that will use schemas embedded into email (particulary, ReviewAction described in the end-to-end example by Google).
I have created an google-app-engine ...
0
votes
0answers
12 views
JAXB and schema
My schema is like the following
<xs:element name="transactions">
<xs:complexType>
<xs:sequence>
<xs:element ref="abc"/>
<xs:element ref="def"/>
</xs:sequence>
...
0
votes
1answer
70 views
How do I add a Go-To Action to an email using Gmail schema.org recs?
I am trying to add a Go-To Action to an outgoing email using the following page as a guide:
https://developers.google.com/gmail/schemas/reference/go-to-action
In testing, the action is not showing ...
0
votes
0answers
13 views
doctrine:generate-migrations-diff always wants to create a foreign key that already exists in model
this is my first question on stackoverflow, although I have searched many times in these archives.
I am struggling with a strange behaviour with symfony 1.4 and doctrine migrations:
I have three ...
0
votes
1answer
23 views
xsd pattern for comma seperated list of single character
i have a problem in below xsd schema how can i restrict comma separated string to only one character like this
<status>A,B,C,D</status>
currently i am using below code to create ...
0
votes
1answer
53 views
How to hide php codes and mysql table schema
We've a Clint requirement in which, all the PHP source codes + MySQL DB will be in their network. So all their data will not be visible to outside world. That's we can do.
But, the thing is.. we ...
0
votes
0answers
11 views
Storing 'shared' items MongoDB in application with RESTful API
I am creating an application in which users can share articles.
Currently, when a user shares an article, it adds the article ID of the shared item to an array called shares on the user.
var ...
-3
votes
1answer
22 views
To find a table related to others table [closed]
I am getting problem in finding to get all the tables related to one table in same or different DB.
Thanks
Smruti.
1
vote
3answers
41 views
Programatically find and apply schema differences on SQL Server
I have a product that I'm currently authoring that relies on SQL server for the backend. One issue I'm trying to resolve is to improve the 'upgrade' story. So v1 will have a particular schema and v2 ...
0
votes
1answer
26 views
understanding mongoose [Schema.Types.Mixed]
Is the below schema defined correctly or does writing need to be
writing: [Schema.Types.Mixed] or writing: [{}]?
That is, if you have an array of dictionaries -- [{},{},{}] -- one can't predefine ...
0
votes
1answer
9 views
CakePHP Not Loading New Schema/Fields
I'm sure the cause of this is something obvious which I'll be facepalming about later, but I'm completely stuck.
I've added a new column to my Users tabled, called developer. It's a tinyint(1) ...
1
vote
0answers
6 views
XMLPay Schema: 2001 Spec?
I'm working on a Java integration with Payflow for performing credit card authorizations. Submitting XML requests would be easiest for us, so I've been focusing on the XMLPay schema found in the ...
-1
votes
0answers
14 views
which itemprop I have to use? for answers website [closed]
I have a website of "Questions & Answers" like Yahoo answers. How to use itemprop to tag the question? I see another pages use /Article for question, but what to use for the answer?
Another ...
0
votes
0answers
18 views
Richsnippet recipe image not appearing in search results
I am having a recipe blog for which the google rich snippet testing tool returns a good testing result.
But in google search I am not getting a thumbnail of the food. I have configured everything ...
-1
votes
1answer
20 views
Derby Schema Error
I am trying to insert data into Derby embedded database for my Desktop Application. But Derby is giving me error of Schema Not found error.
I have tried to solve error by creating schema as per ...
1
vote
1answer
42 views
Using RegEx in JSON Schema
Trying to write a JSON schema that uses RegEx to validate a value of an item.
Have an item named progBinaryName whose value should adhrere to this RegEx string "^[A-Za-z0-9 -_]+_Prog\\.(exe|EXE)$".
...
0
votes
0answers
24 views
Generating json schema with fasterxml 2.2.0 - How to reference types?
I'm using the fasterxml json framework version 2.2.0 in order to create the schema in json of the API of the app I'm working on.
My API is similar to : https://gist.github.com/nemo83/5555249
Where ...
1
vote
1answer
108 views
schema file hosting ftp server [closed]
I am interested in the structure of a file hosting services how to works with multiple server like see schema?
I don't know if it's possible?
Original size :schema.jpg
Schema:
client upload a ...
0
votes
1answer
15 views
Database schema of video (item) having multiple catagories
I have designed schema for web application that stores videos and each video comes under some categories.Single video can have multiple categories.I create following relations..
RELATION1:
...
0
votes
0answers
27 views
why do I require RESTRICT wildcard to drop schema in PostgreSQL
I have very little experience in PostgreSQL. I have been reading tutorials and documentation, and in order to create or drop a schema all of them say that I just need to execute:
CREATE SCHEMA ...
0
votes
0answers
27 views
mongodb messaging schema design
I'm currently working on a nodejs & mongodb project where I'm to implement a Instant Messaging feature to the website between users. What I need help with is the object structure to be stored in ...
0
votes
1answer
17 views
Enable XSD as Type Definition Language is Disabled
I came from this question: How to install Contract-First Tool in VisualStudio 2012
When I tried to perform the steps mentioned by the answer of that question, which is also what is mentioned in the ...
1
vote
1answer
17 views
StackMob Custom Code Update Schema on Get Request
I am trying to complete the StackMob hello_world tutorial for custom code found here:
https://www.stackmob.com/devcenter/docs/Getting-Started:-Custom-Code-SDK#a-register_your_method
but when I try to ...
0
votes
0answers
53 views
Can't figure out the right query, help needed
I'm having the following tables in the database :
create table if not exists patient(
pid INTEGER NOT NULL AUTO_INCREMENT,
pname VARCHAR(50) NOT NULL,
address VARCHAR(100),
...
0
votes
1answer
37 views
Solr searching with /terms
I have a PHP application that uses a SOLR database.
The problem appeared when I am doing a /terms request (terms doc)
So the parts of the document that interest us are
poi: "Bistriţa",
...
text: [
...
0
votes
1answer
12 views
Is there any specification for schema.ini files for CSV's
I am wanting to create a Schema.ini file to define a CSV file and cannot find a specification online after searching,
Does such a specification exist?
Thanks
0
votes
1answer
15 views
Will an incomplete mongoose document validate if it has missing, non-required keys?
If I have a schema like
var kitty = Schema(
{
"name": {type: String, required: true},
"age" : Number
}
And on a mobile app, I build a JSON document with the contents of a ...
1
vote
1answer
149 views
Load XML into Excel through VBA
I've got a bit of VBA that is loading an XML file through VBA. However when it is imported it is all in one column and not split into a table.
When I manually import this through the Data tab I get ...
0
votes
1answer
22 views
SQL Server Limit users to view only data from their department [closed]
I am a beginner in SQL Server Security settings and I am quite new to stuffs like View and Stored Procedures. I have some problems about filtering datas and I am hoping that someone can give me some ...
0
votes
1answer
31 views
when to use multilevel index
I am wondering in which situations is it best to use a multilevel index or any index, in terms of database systems. If I have the following schema as an example:
Course (course_code, course_name, ...
0
votes
2answers
35 views
Why, or why not, to use a schema free database?
I've tried using only mongodb in a web application for some time. But I'm wondering why some people say schema-free or dynamic schema is powerful. Now I don't think it so fantastic or wonderful. Would ...
0
votes
1answer
18 views
How to change the name of the active scheme in XCode?
I managed to change my project name, but how do I change the name displayed in this screenshot?
And (please) don't preach me about proof of concepts that should always be rewritten from scratch, ...
0
votes
0answers
39 views
MongoDB schema design advice - Customer credit balance and transactions
I am looking for advice how to design the following MongoDB Schema.
I have a customer, he can buy credit.
The customer can use this credit to buy products.
When a customer purchase a product i would ...
0
votes
3answers
89 views
A few SQL queries I can't figure out how to write
I need to create a few queries for a database with the following schema:
Patient(**pid**,pname,address,phone)
Ward(**wid**, wname) // wid=Ward id,
Bed(**wid,bid**) // bid=Bed id
...
0
votes
0answers
28 views
Logical/Relational schemas
Having a big of trouble getting my head around UML, logical schemas etc.
The first pic above my requirements are to design a relational table schema for the top pic.
To me that means something along ...
0
votes
0answers
43 views
Hibernate Postgresql Schema
I am accessing Postgresql db using hibernate POJO classes and mapping . Now I added a new schema called 'OCS' and not able to generate classes and mapping.Here is my hibernate.cfg.xml
...
1
vote
1answer
26 views
XML Schema force two attributes to be different
In my XML I have defined categories
<category id="3" parent-category-id="2">
<name>Child category</name>
</category>
As you can see I have a category element, which can ...
-1
votes
1answer
27 views
MySQL - AFTER UPDATE Trigger between Two Databases
Been having some issues with this for a few hours. I'm by no means a MySQL guy and have been looking for a solution but no luck. Here's essentially what I have..
T1: CollectionDB.source
indexName ...
0
votes
0answers
22 views
Generate C# classes from JSON Schema (not from Json Data) [duplicate]
I am sorry for posting a duplicate question (see
Generate C# classes from JSON Schema)
but is there a solution? There are quite a bit of tools to generate C# classes from Json data, but nothing (I ...
0
votes
0answers
28 views
C# xml.schema parsing
I just can`t parse this xml schema. the part I need to parse looks like this:
<assembly name="B35">
<mainpart id="293D2" num="B35" quantity="6">
...
0
votes
1answer
50 views
Usage of Database, schemas and tablespace
we are working on data migration of sql server 2000 to Oracle 11g. Sql server has 4 databases which has to be migrated. These 4 databases are used for 6 different standalone applications. Oracle is ...
1
vote
1answer
32 views
data modeling : gas station managing
I need to create a database to manage a gas station.
I'm thinking of a basic product inventory and sales data model, but it need some changes.
See ...
0
votes
0answers
13 views
Dynamic schema aggregate review
I've been trying to figure out a way to dynamically generate schema aggregate reviews on the homepage of a site but the only examples I can find is of site's hard coding it in and referencing an ...
1
vote
1answer
37 views
Why does XML Validation fail?
I have the following XML content:
<?xml version="1.0" encoding="UTF-8"?>
<success>
<accessedResource>/bioportal/provisional</accessedResource>
<accessDate>2013-04-23 ...
0
votes
2answers
14 views
How to organize this setup with MongoDB
I'm coming from a strictly MySQL background and MongoDB is my first contact with NoSQL. Let's say I have a bunch of users and a bunch of groups.
The user schema:
user_id
username
email
The group ...
0
votes
0answers
68 views
Designing a MongoDB use case, would you prefer collections over big documents?
Structure:
Main
Collection: Users
Collection: Document List with Metadata
UsersData
Collections(UsersID)
DocumentsData
Collections(DocumentID)
This is my structure for my use case of ...
0
votes
0answers
59 views
How to print from binary file using information from a Schema file?
If I have a Schema file and need to print out information from a Binary File,
based on the schema
definition for the binary file.
The schema file is written:
char
int
double
An example ...
0
votes
1answer
35 views
To embed or not embed?
I'm trying to figure out which schema design I should use.
(These are example documents, the actual documents contain more properties)
Embedded:
{
_id: ObjectId(),
title: "trolo",
subs: [
...
0
votes
1answer
15 views
How to add Attribute to this Element (Schemas)
I have the following Schema Element and I'd like to add an Attribute to it.
<xsd:ComplexType>
<xsd:sequence>
<xsd:element name="Product" maxOccurs="1" minOccurs="0" ...


