Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

119
votes
11answers
3k views

First-time database design: am I overengineering?

Background I'm a first year CS student and I work part time for my dad's small business. I don't have any experience in real world application development. I have written scripts in Python, some ...
57
votes
17answers
12k views

Good tool to visualise database schema?

Are there any good tools for visualising a pre-existing database schema? I'm using MySQL if it matters. I'm currently using MySQL Workbench to process an SQL create script dump, but it's clunky, slow ...
46
votes
12answers
38k views

XML Schema (XSD) validation tool?

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. Are there tool or libraries that we can ...
31
votes
8answers
13k views

What good are SQL Server schemas?

I'm no beginner to using SQL databases, and in particular SQL Server. However, I've been primarily a SQL 2000 guy and i've always been confused by schemas in 2005+. Yes, I know the basic definition ...
30
votes
5answers
5k views

Normalizing Human Skin Colors for User Interaction

A while ago I came across this answer that introduced me to the obscure (at least for me) ISO 5218: a standard for representing human sexes (or is it genders? - thanks @Paul). For a pet project I'm ...
29
votes
10answers
2k views

What are XML namespaces for?

This is something that I always find a bit hard to explain to others: Why do XML namespaces exist? When should we use them and when should we not? What are the common pitfalls when working with ...
27
votes
14answers
9k views

How do you version your database schema?

How do you prepare your SQL deltas? do you manually save each schema-changing SQL to a delta folder, or do you have some kind of an automated diffing process? I am interested in conventions for ...
26
votes
2answers
9k views

How to update database table schemas with NHibernate schema generation?

I'm trying to figure out how to use NHibernate configuration with mapping to update table schemas, rather than dropping and recreating them. Currently I'm using the ...
26
votes
9answers
6k views

XML Attributes vs Elements

When should you use XML attributes and when should you use XML elements? e.g. <customData> <records> <record name="foo" description="bar" /> </records> ...
22
votes
15answers
912 views

How liberal should I be with NOT NULL columns?

I'm designing a database schema, and I'm wondering what criteria I should use for deciding whether each column should be nullable or not. Should I mark as NOT NULL only those columns that absolutely ...
21
votes
1answer
2k views

JAXB multiple schemas with element reference

I have two schema's which are processed using JAXB. The first schema is preprocessed and information of this is used using an episode file (following ...
21
votes
3answers
8k views

Version of SQLite used in Android?

Reason: Im wondering how to handle schema migrations. The newer SQLite versions support an "ALTER TABLE" SQL command which would save me having to copy data, drop the table, recreate table and ...
19
votes
5answers
13k views

add_column for references (Rails)

I have the following Rails migration which works perfectly (irrelevant pieces removed): create_table :comments do |t| t.text :body t.references :post end Now I'd like to add an author column to ...
18
votes
4answers
4k views

Laying out a database schema for a calendar application

I want to write a calendar application. It is really recurring items that throw a wrench in the works for the DB schema. I would love some input on how to organize this. What if a user creates an ...
17
votes
9answers
589 views

How can I avoid NULLs in my database, while also representing missing data?

In SQL and Relational Theory (C.J. Date, 2009) chapter 4 advocates avoiding duplicate rows, and also to avoid NULL attributes in the data we store. While I have no troubles avoiding duplicate rows, I ...
16
votes
1answer
4k views

How do I move a table into a schema in T-SQL

I want to move a table into a specific Schema using T-SQL? I am using SQL Server 2008.
14
votes
2answers
3k views

Creating a multi-tenant application using PostgreSQL's schemas and Rails

Stuff I've already figured out I'm learning how to create a multi-tenant application in Rails that serves data from different schemas based on what domain or subdomain is used to view the ...
14
votes
7answers
10k views

Are there any online database schema drawing tools?

i wish to draw up some database schemas. Eg, table 1 has zero to many rows in table 2, etc. It's purely for visual purposes (eg. no sql code, etc). Are there any online tools / website that offer ...
14
votes
7answers
1k views

Is there an agreed ideal schema for tagging

I have a photo website and i want to support tags as my original category bucketing is starting to fail (some pictures are family and vacations, or school and friends). Is there an agreed tagging db ...
13
votes
4answers
9k views

What is difference between XML Schema and DTD?

I have googled this question but I do not understand clearly what is schema and DTD and why Schema is more powerful compared to DTD. Any guidance would be highly appreciated. Thanks.
13
votes
8answers
1k views

Tips on refactoring an outdated database schema [closed]

Being stuck with a legacy database schema that no longer reflects your data model is every developer's nightmare. Yet with all the talk of refactoring code for maintainability I have not heard much ...
12
votes
8answers
3k views

What tools should I use to visualize structure of my code?

I have an application written in Java. In is stored in several files. It uses different classes with different methods. The code is big and complicated. I think it would be easier to understand the ...
12
votes
3answers
6k views

SQL Server: How to permission schemas?

Inspired by various schema related questions I've seen... Ownership chaining allows me to GRANT EXECUTE on a stored procedure without explicit permissions on tables I use, if both stored procedure ...
12
votes
6answers
638 views

How “View Count” is best implemented?

On any website, such as on StackOverflow, each question has a view count, and user reading a question but has previous read it won't count twice. I have some ideas about how it is implemented and ...
12
votes
5answers
2k views

XML Schema Validation with RelaxNG

Which XML validation tools can you recommend for both performance and accuracy, each of which is a critical issue on our system? We have the following requirements: It is not not xmllint (see ...
11
votes
6answers
1k views

Best Database Change Control Methodologies

As a database architect, developer, and consultant, there are many questions that can be answered. One, though I was asked recently and still can't answer good, is... "What is one of, or some of, ...
11
votes
4answers
3k views

How to design a database schema to support tagging with categories?

I am trying to so something like Database Design for Tagging, except each of my tags are grouped into categories. For example, let's say I have a database about vehicles. Let's say we actually don't ...
11
votes
4answers
5k views

Is JSON validation a best practice?

Is it a best practice to validate JSON? With both a JSON schema proposal and a JavaScript implementation of a JSON Schema validator, this practice would seem relatively frictionless to implement. ...
11
votes
2answers
6k views

app.config configSections custom settings can not find schema information

I am just learning about app.config in respect of creating custom sections. I have that part working, it compiles and gets the information out as required but I get warnings about it could not find ...
11
votes
11answers
12k views

Log4Net “Could not find schema information” messages

I decided to use log4net as a logger for a new webservice project. Everything is working fine, but I get a lot of messages like the one below, for every log4net tag I am using in my web.config: ...
10
votes
1answer
458 views

What are some database migrations tools (Database Change Management) for PHP?

Having recently played a bit with a few different database schema migration tools (Python, Ruby, Java) I would like to see what is available in the PHP world. I know some of the frameworks have some ...
10
votes
3answers
1k views

Database with “Open Schema” - Good or Bad Idea?

The co-founder of Reddit gave a presentation on issues they had while scaling to millions of users. A summary is available here. What surprised me is point 3: Instead, they keep a Thing Table ...
9
votes
4answers
466 views

Entity Framework 4 Generate Database From Model With Multiple Schemas

I am using EntityFramework 4 with POCO classes, but I like to divide the database up into separate schemas. While I can do this designing the database first and then generating the model and ...
9
votes
1answer
1k views

MongoDB Schema Design - Many small documents or fewer large documents?

Background I'm prototyping a conversion from our RDBMS database to MongoDB. While denormalizing, it seems as if I have two choices, one which leads to many (millions) of smaller documents or one which ...
9
votes
4answers
11k views

Sample Database Design for Financial Accounting

Could someone please lead me to a sample database for a financial accounting system?
9
votes
6answers
9k views

Find SQLite Column Names in Empty Table

For kicks I'm writing a "schema documentation" tool that generates a description of the tables and relationships in a database. I'm currently shimming it to work with SQLite. I've managed to extract ...
9
votes
9answers
6k views

What's the best way to handle one-to-one relationships in SQL?

Let's say I've got Alpha things that may or may not be or be related to Bravo or Charlie things. These are one-to-one relationships: No Alpha will relate to more than one Bravo. And no Bravo will ...
9
votes
9answers
5k views

One or Two Primary Keys in Many-to-Many Table?

I have the following tables in my database that have a many-to-many relationship, which is expressed by a connecting table that has foreign keys to the primary keys of each of the main tables: ...
9
votes
11answers
996 views

Migrating database changes from development to live

Perhaps the biggest risk in pushing new functionality to live lies with the database modifications required by the new code. In Rails, I believe they have 'migrations', in which you can ...
8
votes
1answer
2k views

Howto generate Java Enum from XML Schema with JAXB?

I am using the maven plugin maven-jaxb2-plugin to generate POJOs from a XSD Schema file. This works fine. The only thing, thats really bothering me is, that the xml schema enumerations are not mapped ...
8
votes
1answer
451 views

Remove unused elements from XML schema using XSLT

I'm looking for a way (if it's even possible) of using an XSL transform of an XSD document to remove unused elements. This comes up a lot in my job where a company will define an XSD with absolutely ...
8
votes
2answers
389 views

Describe repeating XML nodes in W3C XML Schema?

I have an XML document like: <Root> <Bravo /> <Alpha /> <Charlie /> <Charlie /> <Delta /> <Foxtrot /> <Charlie /> ...
8
votes
4answers
3k views

Possible to validate xml against xsd using code at runtime c#?

I have xml files that I read in at runtime, is is possible to validate the xml against an xsd file at runtime? using c#
8
votes
5answers
10k views

SQL 2008: How do I change db schema to dbo

I imported a bunch of tables from an old sql server (2000) to my 2008 database. All the imported tables are prefixed with my username ex: jonathan.MovieData. In the table properties it lists ...
8
votes
7answers
4k views

How to update a database schema without losing your data with Hibernate?

Imagine you are developing a Java EE app using Hibernate and JBoss. You have a running server that has some important data on it. You release the next version of the app once in a while (1-2 weeks) ...
8
votes
2answers
4k views

How do I query if a database schema exists

As part of our build process we run a database update script as we deploy code to 4 different environments (due to crazy business rules, but that's another post). Further, since the same query will ...
7
votes
2answers
123 views

Managing Oracle Synonyms

I was reading this article: Managing Oracle Synonyms Regarding the order of preference, when it come to resolving an object name to the actual object, it says: Local objects will always be accessed ...
7
votes
2answers
64 views

How can I specify an element to have an attribute that states how many children it contains in an XML Schema?

Is it even possible? I know it’s possible to do a restriction based on regex, but that’s not it I know it’s possible to declare an attribute as a foreign key calculated by an XPath, but it seems it ...
7
votes
3answers
900 views

schema.sql not creating even after setting schema_format = :sql

I want to create schema.sql instead of schema.rb. After googling around I found that it can be done by setting sql schema format in application.rb. So I set following in application.rb ...
7
votes
3answers
2k views

Generate Json schema from XML schema (XSD)

Does anybody know how to generate a Json schema from a existing XML schema (XSD file)? Are there any tools available for this?

1 2 3 4 5 31