0
votes
6answers
327 views
Address book DB schema
I need to store contact information for users. I want to present this data on the page as an hCard and downloadable as a vCard. I'd also like to be able to search the database by p …
1
vote
3answers
83 views
Normalizing dataset with ruby
Hi folks, i have a data set that ranges from 1 to 30,000
I want to normalize it, so that it becomes 0.1 to 10
What is the best method/function to do that?
Would greatly appreci …
1
vote
7answers
147 views
Database Design/Modeling Question - Constraints or No Constraints?
Given the following structure:
City
Area
User
Every Area has 1 and only 1 City.
Every User has at least one but possibly multiple Areas.
Every User has 1 and only 1 City.
What …
0
votes
2answers
198 views
MS Access 03 - Normalizing Data from an excel spreadsheet
Hey guys I have a question about a method to break something apart. I get this excel spreadsheet that provides me with data that I need to do one report. Its pretty simple and stra …
1
vote
5answers
350 views
Normalizing an existing MS Access Database
I have one large access database that I need to normalize into five tables and a lookup table. I understand the theory behind normalization and have already sketched out the look o …
2
votes
6answers
476 views
Data structure for non-overlapping ranges within a single dimension
I need a data structure that can store non-overlapping ranges within a single dimension. The entire range of the dimension need not be completely covered.
An example would be a co …
10
votes
16answers
2k views
What’s the better database design: more tables or more columns?
A former coworker insisted that a database with more tables with fewer columns each is better then one with fewer tables with more columns each. For example rather than a customer …
2
votes
7answers
387 views
Database denormalization opportunity
I'm looking for a strategy in as far as stopping the repetitive problem of branching out tables. For example as a fictitious use case, say I have a table with users that contains t …
4
votes
7answers
293 views
Dealing with “hypernormalized” data
My employer, a small office supply company, is switching suppliers and I am looking through their electronic content to come up with a robust database schema; our previous schema w …
0
votes
3answers
268 views
How to prevent orphaned records in detail tables of normalized database?
I have to maintain an old database which is not properly normalized. For instance there is a project table that has grown (or maybe mushroomed) to have 5 or more different date col …
5
votes
13answers
765 views
How do you determine how far to normalize a database?
When creating a database structure, what are good guidelines to follow or good ways to determine how far a database should be normalized? Should you create an un-normalized databas …
4
votes
5answers
466 views
Hierarchical tagging in SQL
I have a PHP web application which uses a MySQL database for object tagging, in which I've used the tag structure accepted as the answer to this SO question.
I'd like to implement …
-2
votes
0answers
51 views
date and replace [closed]
I can validate a date but I was wandering whether there is a way to use the replace option to replace the date to conform to ISO standards. eg 11/2/2000 9:50:22 to be replaced by 1 …
2
votes
10answers
346 views
Looking for algorithm that reverses the sprintf() function output
I am working on a project that requires the parsing of log files. I am looking for an fast algorithm that would take groups messages like this:
Input:
The temperature at P1 is 35 …
0
votes
7answers
221 views
Conflicting desires in Database Design, with fields of two similar functions
Okay, so I'm making a table right now for "Box Items".
Now, a Box Item, depending on what it's being used for/the status of the item, may end up being related to a "Shipping" box …
