The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

MySQL Table Normalizing via plain sql error

I need to normalize my table. So I made a script (sql) which I execute. I would like to INSERT all existing Clients from table A (old) into table B (new). It is simply done with INSERT INTO `A` ...
0
votes
3answers
200 views

What is the need for normalizing a vector?

Trying to understand vectors a bit more. What is the need for normalizing a vector? If I have a vector, N = (x, y, z) What do you actually get when you normalize it - I get the idea you have to ...
0
votes
4answers
323 views

Normalizing double values for probability calculus

I want to normalize weights in a list of particles. These weights belong to particle-objects. I try to normalize them by dividing them with the sum of the weights. All the weights are declared in ...
4
votes
3answers
427 views

SQL database design problem

I'm creating the database for monitoring status of applications' functionalities. The logic is following: Each application has its own, specific list of functionalities that I'm monitoring. Each ...
1
vote
0answers
2k views

Using JavaScript to normalize Url Rewriting strings entered by users [closed]

String.prototype.NormaliseUrl = function () { var url = this; var preserveNormalForm = /[,_`;\':-]+/gi url = url.replace(preserveNormalForm, ' '); // strip accents url = ...
4
votes
3answers
1k views

Normalizing dataset with ruby

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 appreciate it if you could give some ...
0
votes
2answers
911 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 straight forward, ...
1
vote
7answers
304 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 is the most elegant ...
4
votes
10answers
817 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 was pretty much just ...
0
votes
3answers
2k 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 columns, for different ...
2
votes
5answers
2k 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 of the tables but I ...
5
votes
5answers
1k 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 a tag hierarchy, ...
2
votes
7answers
729 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 their name, login, ...
6
votes
7answers
2k 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 conference room ...
0
votes
7answers
317 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 or a "Returns" box. ...
23
votes
16answers
10k 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 table with name, ...
13
votes
14answers
3k 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 database and split it apart ...
2
votes
7answers
2k 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 phone number, email, ...
2
votes
10answers
703 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 a fast algorithm that would take groups messages like this: The temperature at P1 is 35F. The temperature at ...