Tagged Questions
The database-schema tag has no wiki summary.
13
votes
4answers
3k views
Why is ISql100DatabaseEncryptionKey blocking Schema Compare
I am trying to do a Schema Compare in Visual Studio 2010 on some SQL Server 2008 databases. But I get the following error. What does it mean and how can I ignore?
An error was received from SQL ...
13
votes
5answers
1k views
When is referential integrity not appropriate?
I understand the need to have referential integrity for limiting specific values on entry or possibly preventing them from removal upon a request of deletion. However, I am unclear as to a valid use ...
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
2answers
124 views
Database schema - representing location
I'll need to represent location of some events and I am designing database schema for this application.
I have two approaches for presenting the location:
approach 1:
4 tables:
Countries
States
...
8
votes
4answers
407 views
What are some strategies for maintaining a common database schema with a team of developers and no DBA?
I'm curious about how others have approached the problem of maintaining and synchronizing database changes across many (10+) developers without a DBA? What I mean, basically, is that if someone wants ...
7
votes
4answers
76 views
Get database schema with one query?
Basically I want to get the table names, and the field names for each table from the current database that is connected, nothing else.
Is this possible?
I know that SHOW TABLES FROM my_database gets ...
7
votes
9answers
697 views
What's better - many small tables or one big table?
I've got a database which will store profiles about individuals. These individuals have about 50 possible fields.
Some are common things like, first name, last name, email, phone number.
Others are ...
7
votes
5answers
874 views
Help a CRUD programmer think about an “approval workflow”
I've been working on a web application that is basically a CRUD application (Create, Read, Update, Delete). Recently, I've started working on what I'm calling an "approval workflow". Basically, a ...
7
votes
3answers
489 views
Handling data maintenance in Object Databases like db4o
One thing I have continually found very confusing about using an object database like db4o is how you are supposed to handle complex migrations that would normally be handled by SQL/PL-SQL.
For ...
7
votes
2answers
880 views
Poll Database Schema
What is the best database schema for polls? Is one-to-many relationship good for this? I'm thinking about having two tables:
poll_questions
int id
varchar body
datetime created_at
...
6
votes
3answers
390 views
SQL Azure schema upgrade strategy
i'm currently working on a asp.mvc application with entity framework as db backend which will be running on ms azure platform.
on my development machine i'm running a sqlexpress instance which hosts ...
6
votes
2answers
328 views
How update in a Multi Tenant app all schema of all tenants?
I am development a app multi tenant. I chose the approach Shared Database/ Separeted Schema.
My idea is has a schema default (dbo) and when deploy this schema, do update schema of outhers tenants ...
5
votes
7answers
204 views
what is the best way to store a user filtered query params in a database table?
I have an ASP.NET MVC website. In my backend I have a table called People with the following columns:
ID
Name
Age
Location
... (a number of other cols)
I have a generic web page that uses model ...
5
votes
3answers
64 views
Database schema advice for storing form fields and field values
I've been tasked with creating an application that allows users the ability to enter data into a web form that will be saved and then eventually used to populate pdf form fields.
I'm having trouble ...
5
votes
2answers
99 views
Mysql Datatype - Enum or not to Enum, Can Enum be blank?
I have large DB (many millions of rows) and I'm trying to make the best choices for datatypes for 2 fields. Most everything I have made varchar or INT. However, 2 fields I'm wondering if Enum is the ...
5
votes
5answers
159 views
How to model a database with many m:n relations on a table
I am currently setting up a database which has a large number of many-to-many relations. Every relationship was modeled via a link table. Example:
A person has a number of jobs, jobs are fulfilled by ...
5
votes
2answers
5k views
C# - How to fix Error: “Could not find schema information for the attribute/element” by creating schema
I have a windows forms application written in VS2010 w/ C# and get the following errors in the app.config file:
Message 4 Could not find schema information for the attribute 'name'
Message 8 ...
5
votes
2answers
1k views
How to validate database schema programmatically in hibernate with annotations?
It seems that org.hibernate.cfg.Configuration object can be used to perform validation programmatically, by calling the validateSchema method.
However, this method needs dialect and databaseMetadata ...
5
votes
6answers
411 views
What's your process for dealing with database schema changes in a dev team?
here's a more general question on how you handle database schema changes in a development team.
We are a team of developers and the databases used during development are running locally on everyone's ...
5
votes
4answers
3k views
Database design for a survey system
I'm working on a fairly simple survey system right now. The database schema is going to be simple: a Survey table, in a one-to-many relation with Question table, which is in a one-to-many relation ...
4
votes
1answer
45 views
SQL Server: Is it worth placing BLOB/CLOB columns near the “end” of a table?
Is is an urban legend or having BLOB/CLOB columns last in a list of columns in a table really benefits performance and other aspects?
To "visualise". Is there any difference performance-wise (and ...
4
votes
6answers
145 views
Which normal form does this table violate?
Consider this table:
+-------+-------+-------+-------+
| name |hobby1 |hobby2 |hobby3 |
+-------+-------+-------+-------+
| kris | ball | swim | dance |
| james | eat | ...
4
votes
1answer
108 views
database schema of “don't show me again what I saw before” in mysql
I'm making a website that shows you images. And special feature of site is "don't show me again what I saw before". It means, if you see a image, it goes to your "archive" category. There will be so ...
4
votes
3answers
2k views
Updating database schema with Entity Framework Code First
Entity Framework Code First is a great framework for developing new projects. But what about extending an existing database?
For instance what if I simply want to add an additional property to an ...
4
votes
2answers
297 views
adding a not null constraint in postgresql
If I have a table as such:
create table Education (
id integer references Profiles(id),
finished YearValue not null,
started YearValue,
qualification ...
4
votes
1answer
213 views
NHibernate SchemaUpdate adding existing foreign keys again?
I'm using SchemaUpdate to synchronize my hbms with existing database. Database has recently created based on hbms and is completely up-to-date. But SchemaUpdate generates all foreign key constraints ...
4
votes
2answers
197 views
How would you implement these queries efficiently in MongoDB?
Links have one or more tags, so at first it might seem natural to embed the tags:
link = { title: 'How would you implement these queries efficiently in MongoDB?'
url: ...
4
votes
1answer
738 views
How do I get an Oracle SCHEMA as DDL scripts with DBMS_METADATA (and SCHEMA_EXPORT)
I am having troubles to extract the DDL for a given schema with DBMS_METADATA, probably because my understanding of it is wrong.
Here's what I basically do:
set termout off
create table ...
4
votes
2answers
220 views
should this database table be normalized?
i have taken over a database that stores fitness information and we were having a debate about a certain table and whether it should stay as one table or get broken up into three tables.
Today, there ...
4
votes
3answers
604 views
Fact table with multiple facts
I have a dimension (SiteItem) has two important facts:
perUserClicks
perBrowserClicks
however, within this dimension, I have groups of values based on an attribute column (let's call the groups ...
4
votes
3answers
620 views
How to support Multi-Languages approach in DataBase Schema?
I want my database to support multi Languages for all text values in its tables.
So what is the best approach to do that?.
Edit1::
E.G.
I've this "Person" table:
ID int
FirstName ...
3
votes
2answers
47 views
Multi Level Items
We're trying to build an application that will describe our price list. The price list itself is multi-leveled so a price of an item depends on numerous "options". I think an example would be my best ...
3
votes
2answers
71 views
How to model many-to-many relationships in MongoDB (for a MySQL user)
I come from a MySQL background and am trying to wrap my head around MongoDB. In particular, I'm struggling to conceptualize how I should model n:n relationships the "Mongo way."
For this example, ...
3
votes
2answers
74 views
Database design for a web application
This is very much a noob question, so please bear with me.
Consider a web application with 100,000 users. Each user can create entries or blog posts, as you may call it. Assume each user has 100 ...
3
votes
3answers
70 views
Retrieve Database Schema
I want to know, how can I retrieve Sql-Database schema informations such as Tables, Columns and Their relation between Tables and etc. I know it's possible if I execute different particular queries on ...
3
votes
2answers
73 views
Working with multiple database schemas
There is a third-party application, which database is accessed by my application. It's database schema had been changed several times, so, there are about four different database schemas right now ...
3
votes
3answers
246 views
How to get a list of all tables in two different databases
I'm trying to create a little SQL script (in SQL Server Management Studio) to get a list of all tables in two different databases. The goal is to find out which tables exist in both databases and ...
3
votes
2answers
493 views
Private Message Database Design
Alright, so I think I'm pretty close to having what I need, but I'm unsure about a couple of things:
TABLE messages
message_id
message_type
sender_id
timestamp
TABLE message_type
message_type_code ...
3
votes
5answers
76 views
Am i violating any NF RULE on my database design?
Good day!
I am a newbie on creating database... I need to create a db for my recruitment web application.
My database schema is as follows:
NOTE: I included the applicant_id on other tables... ...
3
votes
2answers
79 views
Best MySQL schema for an app that requires dynamically-built forms?
I am making a web application for a company that records data in the field.
They need to be able to create their own forms that the technicians will then fill out in the field at the job sites. Each ...
3
votes
1answer
102 views
What is a good-practice of a schema for a site that accepts logins from multiple sites (e.g. facebook connect, google, flickr, etc..)?
I asked this question at http://dba.stackexchange.com, but it was closed with a note that I should ask it here as it relates to design and not administration.
I'm building a site ("The Site") and I'm ...
3
votes
1answer
195 views
How does Envers deal with schema changes?
I am thinking about switching from a self-implemented versioning-solution to Hibernate Envers, but I am not quite sure yet. I have read a lot about it, but I am concerned about schema changes and how ...
3
votes
1answer
112 views
Using WebDeploy to deploy database updates
We have adopted WebDeploy for a new project and it seems to handle the deployment of our apps to our Dev and Test servers pretty well.
Now we would like to extend the use of WebDeploy to make it ...
3
votes
2answers
168 views
storing a schedule in mysql
I am interested in a way to store the schedule of my users. I need to save the day of the week and the hours when he is available.Could be from 8:00 to 12, or from 9:00 to 12 and then from 15:00 to ...
3
votes
1answer
293 views
Is it possible to generate db sql script with Ef4 CodeFirst on build?
On build, I want to automatically create a sql script to generate a fresh database. I plan to use this script so I have can create a master database I can compare with the production database, to ...
3
votes
2answers
524 views
Hierarchical Data - Nested Set Model: MySql
I am just learning how to implement the Nested Set Model but still have confusion with a certain aspect of it involving items that may be part of multiple categories. Given the example below that was ...
3
votes
3answers
367 views
Is it possible to create a column with a UNIX_TIMESTAMP default in MySQL?
I'm trying to do this, but it seems like MySQL isn't allowing me. Is there a solution to this issue or am I expected to always include the function in my INSERT queries?
CREATE TABLE foo(
created ...
3
votes
1answer
152 views
Database Design - Users and their privacy
Basically i've a table for my users (it's nightclub website) and now i'm trying to improve they privacy.
Until now i just show some information to logged in users, but now i want to give that choose ...
3
votes
1answer
203 views
What's the best relational database schema to use to implement a flexible, dynamic data store?
I'm building a CMS (yes, yes, I know, but I enjoy it, ok? :-)) that has 'entries'. These entries have a fixed number of standard fields that can be captured in a db - id, title, date created etc. All ...