About 50 results
Open links in new tab
  1. sql - What is database normalisation/normalization? - Stack Overflow

    However, normalization is basically just the common sense, and you will find that if you design a database schema using common sense it will typically be fully normalized. There are a number of …

  2. Normalization in MYSQL - Stack Overflow

    Aug 11, 2009 · Normalization is the process of efficiently organizing data in a database. There are two goals of the normalization process: eliminating redundant data (for example, storing the same data in …

  3. sql - Normalization in plain English - Stack Overflow

    I understand the concept of database normalization, but always have a hard time explaining it in plain English - especially for a job interview. I have read the wikipedia post, but still find it h...

  4. A practical example of denormalization in a SQL database?

    Nov 26, 2019 · I've been reading about denormalization for the last 20 minutes but can't get a concise example with code. Is this what denormalization is? 1. We have a normalized database: Table_1: …

  5. sql - Database normalization - who's right? - Stack Overflow

    You are right when you say your solution is more normalized. However, there is a thing called denormalization (google for it) which is about deliberately violating normalization rules to increase …

  6. SQL Normalization UNL 1NF 2NF 3NF - Stack Overflow

    for an assignment for school, we are to draw out the UNL,1NF,2NF,3NF relations for a table we are provided. I think i was able to complete UNL,1NF,2NF but i was not sure how to do that for 3NF. He...

  7. What is the T-SQL to normalize an existing table?

    Aug 9, 2015 · I'd like to convert an existing table into the 1st normal form (simplest normalization possible; see the example). Do you happen to know what is the T-SQL is for this sort of problem? …

  8. sql - Data normalization and writing queries - Stack Overflow

    Jun 30, 2011 · Now, when it comes to writing sql queries, it has become something of a minor hassle since each query involves combing through several different tables and joining them together. I was …

  9. sql - Difference between 2nd normalization phase / normal form and …

    Aug 19, 2022 · I have normalized some tables up to 2nd normal form. I am confused with 3rd normal form as it is similar to 2nd normal form. I know that 2nd normal form has partial dependencies and …

  10. SQL databases: normalization vs. performance? - Stack Overflow

    Jul 27, 2013 · Normalization concerns itself with certain kinds of dependencies among columns. You're describing certain kinds of dependencies among rows. (All the rows in "jobs1234" belong to the …