Schema means shape, or more generally, plan. It may be XML schema or Database schema.

learn more… | top users | synonyms (1)

0
votes
1answer
21 views

Schema object in Javascript

I'm a learning coder trying to understand some sample code from a Q&A app On the server-side code, the Question object has a property called answers: var Question = new Schema({ title: ...
0
votes
0answers
11 views

Is there a way to import multiple csv files into one excel table using a schema.ini?

I have fourty csv files that I download from a vendor and I am trying to find the best way to parse them all and populate a table to be used in an Excel Dashboard for lookup purposes. I have worked ...
0
votes
0answers
6 views

Module not accepting date type? Is there any other error that I am missing?

<?php function kronos_schema() { $schema=array(); $schema['kronos'] = array( 'description' => 'An example table.', 'fields' => array( 'fe_id' => array( ...
0
votes
1answer
17 views

How to debug solr query not returning records

I am working to get solr working with my organization. It is setup as multicore solr 3.6 on tomcat 6. So far I have modified the sample schema.xml to accept the specific fields for our records. ...
0
votes
0answers
6 views

How to back up Complete Schema at one go in Oracle?

[oracle@test ~]$ expdp {user_name}/{Password} dumpfile={Dump file name} directory={Name of directory } logfile={Log file Name} schemas={Backup schema Name} This is not working. Is there any other ...
0
votes
3answers
30 views

Using javascript to pull specific page text, and then write to a span tag

I am currently trying to mark up my website product pages with product rating microdata for google SERP benefits. The current cart software I am using does have a product rating system. It generates ...
0
votes
1answer
24 views

Updating XML column schema with new schema

I am using SQL Server 2008 and busy doing a POC where I have a table with a typed XML column. The nature of the POC is that the XML will change over time as our needs evolve for the data that gets ...
0
votes
0answers
9 views

can qualified namespace be same as default namespace

Can a qualified namespace be the same as the default namespace? Can someone point me to the specific point in the w3 specs that allow or deny this - I have tried reading through ...
0
votes
1answer
8 views

Get noNameSpaceSchemaLocation from xml file

I'm trying to read a xml-file with it's schema. My xml file looks like this: <?xml version="1.0" encoding="utf-8"?> <PersonList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
3 views

Schema data in different places of HTMl

I am trying to setup a website for small business and I'd like to use schema.org markup as well. One trouble I encountered is how to deal with the fact that data about the business are in different ...
1
vote
0answers
25 views

Schema design in MongoDB — to replicate data or not

I have a Share collection which stores a document for every time a user has shared a Link in my application. The schema looks like this: { "userId": String "linkId": String, "dateCreated": Date ...
1
vote
0answers
32 views

MongoDB: Store data from collection additionally as embedded documents in another collection

In MongoDB does it make sense to embed some data of a document from one collection additionally in the documents of another collection? Let's say I have an application that stores bookmarks that ...
0
votes
1answer
43 views

Changes (subtle or not) in a database schema that break applications [closed]

Besides the obvious, removing a column, renaming a column/table, dropping a table/schema what would be a list of changes in a database schema that could potentially break applications using it? Would ...
1
vote
0answers
26 views

Advice on MongoDB schema design

I'm currently designing the db schema for an application which will use mongodb and spring-data. I'm quite new to NoSQL databases and struggeling with the following design problem: The application ...
0
votes
0answers
52 views

HBase schema design in User Profiling

I'm new to HBase and I'm trying to use it for one of our projects. The background is like this: There're hundreds of mobile applications on our platform. Each user has a profile: user name, IP ...
0
votes
0answers
19 views

init in MySQL url for Hibernate datasource

I am trying to create the schema name with my mysql (local database) url but its not working. Its working with H2 (in memory database) URL tho. Please advice. H2 configuration - <bean ...
0
votes
0answers
15 views

Java programmatic way to update Schema or DTDs for XML files?

Is there a way to use Java (build-in or third party library) to update an XML files XSD or DTD declarations? For example, maybe we want to automatically update: <!DOCTYPE web-app PUBLIC "-//Sun ...
0
votes
1answer
18 views

Syntax for Ruby DBI with Oracle database and schema's

I used to be able to use dbi like db.do("select * from table") and get the results I needed, however I now have to use a schema to access the tables I need and the above line would give me the dbi ...
0
votes
0answers
4 views

Schema Micro Data

So far I have <div itemscope itemtype="http://schema.org/Product"><span itemprop="image" class="fn"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo ...
0
votes
0answers
22 views

Read Lync schema using C#

I'm trying to create a FIM management agent to connect to Lync. First step for that is I need to read the schema to get all the attributes etc. Is there a way to read Lync schema programatically? ...
0
votes
0answers
7 views

Database Schema Setup

I'm working on an Application that I would like to have facebook style notification and the ability to download objects. So here is what I have working so far: UserA logsIn and creates an object ...
0
votes
2answers
27 views

Ways to improve this schema/abstraction?

I'm making a webapp for an online exam module and was wondering how my current design and abstraction can be improved. The exams are multiple choice. I have three tables in my database so far: ...
0
votes
1answer
20 views

Search MySQL database for string in schema

I have a fairly large MySQL database with several dozen tables. I'm removing some legacy data and I'm looking for a quick way to search for a string throughout the database schema (not in the data ...
0
votes
1answer
7 views

Should I use grouping specific elements in XML schema?

I'm trying to build an XML-based data definition for an inter-departmental database. I cannot discern the advantages/disadvantages, or whether best practices exist, for using grouping elements in the ...
0
votes
1answer
22 views

Does BSON support an array of anonymous objects

After digging around online, I have not been able to figure out if BSON supports an array of anonymous objects. The reason I want this, is for a logging system that has the following schema { ...
0
votes
1answer
27 views

how to append an element under a sequence in a way that respects XSD defined order

I have an input XML (its insurance industry compliant to ACORD schema) coming and am tasked with inserting an element into it so that its still schema compliant. The brief structure of input XML is: ...
0
votes
0answers
3 views

Schema.org : Setting the parent of nested property - Possible?

My terminology may be way off, but I think this simple little blob will explain: [ Schema.org object 1 ] [ Schema.org object 2, which is a property of "object 1" ] [ Property One ] Is ...
0
votes
1answer
17 views

Error insert in a table of a new schema in netbeans

I'm working with netbeans 7.1 and a I created a new schema in database sample called TIENDA and I setted it as Default Schema. Then I created a table calle USUARIO with some fields and a field called ...
0
votes
1answer
35 views

Update the quantity of a field in a column automatically based on data from another table in MySQL

It's quite simple really. Here's my database schema: Table 1: posts Columns: ID, contents, likes, dislikes Table 2: posts_likes_dislikes Columns: ID, user_id, post_id, like_or_dislike (1 or 0) I ...
1
vote
0answers
10 views

Tridion schema localiztion [migrated]

What is the best way to localize the Schemas in SDL tridion 2011 We have a schemas for Articles and products. We need to localize this for some region specific changes. Is there a clean solution for ...
0
votes
1answer
15 views

Inviting users through email

I have an app that allows users to assign tasks to people not yet in the system. Once I enter "share with some_user@example.com", the user will receive an email, and I will have to note somehow that ...
0
votes
1answer
25 views

How to annotation order field when using XStream on Android?

I need to generate XML from java objects on Android. XML nodes must be in definite sequence. Here is what I got(These fields as according to alphabetical order): <soap:Envelope ...
1
vote
2answers
26 views

MySQL - Simplify complex query for teacher/student subscribers

For an online learning website, a teacher can create any courses they would like to teach. Each course has lessons. Students can then subscribe to these courses or any future courses the teacher adds ...
0
votes
0answers
25 views

will having 2 schemas be better for performance? [closed]

The application has 2 tables critical for performance being written to constantly. We also have a requirement to provide reporting data which means issuing long running queries against these tables. ...
0
votes
1answer
35 views

xs:choice - one and only one of the following nodes or one or more of the following nodes?

few years ago I defined an XSD for my XML installer file. The goal was to define a requirements node with subnodes with different names like: <requirements> <core version="1.0.0.1749" ...
0
votes
1answer
14 views

WSO2 GAR file WSDL to Schema dependencies

I am uploading a GAR which has WSDL and associated Schemas. The dependencies (schema imports, includes) between one schema to another is showing up fine in the "Dependencies" and "Associations" ...
1
vote
2answers
26 views

What is the best way to generate java classes from libvirt relaxng schemas?

Here is the thing: I do not wish (yet) to do some operation in a vm via libvirt. What I want to do is take the libvirt relaxng schemas and get java classes from them. This way I can produce an xml ...
0
votes
1answer
33 views

C# Automatically includes namespace (xs:) in type names (-> invalid xsd)

I am creating a Xsd file with C#. Which works really good. Inside the Xml schema I define my own simple type but the following is happening: Expected: <xs:element name="name2" type="str32" /> ...
0
votes
1answer
14 views

MYSQL Relational Schema Planning

I'm trying to figure out the best way to manage this data storage problem.... I have a table of players, teams, and competitions. A team may be involved in let's say 3 competitions. A player ...
0
votes
0answers
14 views

Star Rating Schema Not Working & Showing Up in Testing Tool and Google SERP

I have implemented star rating schema using aggregate rating - URL: http://shopping.rediff.com/product/philips-qt4019-trimmer/11494163 I checked Google's support portal answer for using images ...
0
votes
0answers
10 views

Using EdmGen with Oracle

We are using EdmGen to generate SSDL, CSDL and other stuff for Entity Framework 4.x. It works fine with SQL Server. Now we have to extend this, to support Oracle, with explicit schema name (not the ...
0
votes
1answer
28 views

What is the impact of adding the same row twice to a cassandra column family?

I can run this update as many times as I want. I.e. the code doesn't error out if the row 'test' is already present: [default@testdata] update column family my_column_family with ... ...
0
votes
1answer
35 views

XML Scheme: Complex type using any number of elements any number of times

I am trying to create a schema and have come across this problem, although I have found a solution that should work (XSD - how to allow elements in any order any number of times?) in my case it ...
0
votes
1answer
13 views

MongoDB schema design to support editing subdocuments within an array in multi-user environment?

Let's suppose I have a basic blog web app using the following document schema for a blog post. { _id: ObjectId(...), title: "Blog Post #1", text: "<p>This is my blog ...
-1
votes
1answer
31 views

How to Implement Conditional Schema Validation

How Can i implement a schema validation that can serve the following requirement <test> <e1>abc</e1> <e2> <e21>xxx</e21> <e22>yyy</e22> ...
0
votes
0answers
14 views

XML Schema - How do I declare

<metadata id="Metadata0"> <Record>teste</record> </metadata> How do I declare using XML Schema this XML? <xs:complexType name="METADATA_TYPE"> ...
0
votes
1answer
14 views

Why is oxygen generating child elements with empty xmlns attributes?

I am trying to grasp the technical side of working with the default namespace, when starting with a schema (developing one) and considering a realistic and correct corresponding XML file. I am using ...
0
votes
1answer
15 views

Apache CFX Schema validation - contract first

I am developing a Web service using Apache CXF and contract first approach with schema validation. Problem is, that validation is not working. There is no error, so it like is not activated. But ...
6
votes
1answer
99 views

SQL architectural advice regarding (overcomplex?) schema

I'm currently in the database design stage of developing a new section of our product. For which I need to have a "sanity check" or some advice because I do not feel overly confident about some parts ...
0
votes
1answer
22 views

Solr 4 Lucene - Error loading class 'Solr.UUIDField'

Trying to create a UUID field in my schema.xml, I just get this error when starting Solr: Plugin init failure for [schema.xml] fieldType "uuid": Error loading class 'Solr.UUIDField' My schema looks ...

1 2 3 4 5 49