• About
  • Disclaimer
  • Privacy Policy
  • Contact Us
Tuesday, November 28, 2023
Tech Fashion Web
  • Home
  • Fashion
    • Footwear
    • Culture
  • Technology
    • Tech Solution
    • Website Design
    • Cyber Security
    • Software
  • Business
  • Digital Marketing
    • SEO
    • Social Media
  • Travel
  • Entertainment
    • Music
    • Celebrity
  • Health
    • Food
  • lifestyle
    • Home
  • More
    • Gaming
    • Gadgets
    • Education
    • Electronics
    • Gadgets
    • Reviews
    • Law
No Result
View All Result
  • Home
  • Fashion
    • Footwear
    • Culture
  • Technology
    • Tech Solution
    • Website Design
    • Cyber Security
    • Software
  • Business
  • Digital Marketing
    • SEO
    • Social Media
  • Travel
  • Entertainment
    • Music
    • Celebrity
  • Health
    • Food
  • lifestyle
    • Home
  • More
    • Gaming
    • Gadgets
    • Education
    • Electronics
    • Gadgets
    • Reviews
    • Law
No Result
View All Result
Tech Fashion web
No Result
View All Result
The 10 most common data modeling mistakes

The 10 most common data modeling mistakes

by Tech Fashion
October 19, 2022
in Technology
0
325
SHARES
2.5k
VIEWS
Share on FacebookShare on Twitter


Image: garrykillian/Adobe Stock

Data modeling is the process by which we represent information system objects or entities and the connections between them. Such entities may be people, products, or anything else related to your business; regardless of the entity type, correctly modeling it results in a powerful database set up for fast information retrieval, efficient storage, and more.

TO SEE: Job description: Big data modeller (Tech Republic Premium)

Given the benefits that data modeling provides for database insights, it is important to learn how to effectively apply data modeling in your organization. In this guide, I’ll point out some important mistakes to avoid when modeling your data.

Jump to:

  1. Do not view quality data models as an advantage
  2. Not taking into account the use of the data by the application
  3. Schemaless does not mean data modelless
  4. Failing to tame semi-structured data
  5. No plans for data model evolution
  6. Mapping the UI tightly to the fields and values ​​of your data
  7. Incorrect or different granularity
  8. Inconsistent or non-existent naming patterns
  9. The concept of not separating keys from indexes
  10. Starting too late with data modeling

Do not view quality data models as an advantage

As Microsoft Power BI consultant Melissa Coates has: be awarewe sometimes optimize our data models for a particular use case, such as analyzing sales data, and using the model quickly becomes more complex when analysts need to analyze more than one thing.

For example, it can be difficult for analysts to analyze the intersection of sales and support conversations if models are optimized for sales data only. Not to mention the extra time, resources, and any costs involved in making additional models if a single model would have been enough.

To avoid this kind of model inefficiency, take the time to make sure your data model has wider applicability and makes long-term financial sense.

Not taking into account the use of the data by the application

One of the hardest things about data modeling is finding the right balance between competing interests, such as:

  • The data needs of application(s)
  • Performance Goals
  • How data is retrieved

It’s easy to get so caught up in the structure of the data that you don’t spend enough time analyzing how an application will use the data and finding the right balance between querying, updating, and processing data.

TO SEE: Recruitment Package: Data Scientist (Tech Republic Premium)

Another way to spot this error is to lack empathy for others who will use the data model. A good data model takes into account all users and use cases of an application and builds accordingly.

Schemaless does not mean data modelless

NoSQL databases (document, key-value, wide-column, etc.) have become an essential part of the enterprise data architecture, given the flexibility they provide for unstructured data. While it is sometimes mistakenly thought of databases with no schema, it is more accurate to think of NoSQL databases as flexible schemas. And while some data schemas merge with data models, the two fulfill different functions.

Must-read big data coverage

A data schema instructs a database engine on how data is organized in the database while a data model is more conceptual and describes the data and relationships between the data. Regardless of this confusion about the influence of a flexible schema on data modeling, just like with a relational database, developers need to model data in NoSQL databases. Depending on the type of NoSQL database, that data model will be either simple (key value) or more advanced (document).

Failing to tame semi-structured data

Most data today is unstructured or semi-structured, but like error number three, this doesn’t mean your data model has to follow the same formats. While it can be helpful to think about structuring your data on ingestion, it will almost inevitably hurt you. You can’t avoid semi-structured data, but the way to deal with it is to apply rigor in the data model instead of taking a hands-off approach while retrieving data.

No plans for data model evolution

Given how much work can go into mapping out your data model, it can be tempting to assume that once you’ve built the data model, your work is done. Not so, noted Prefect’s Anna Geller: “Building data assets is an ongoing process,” she said, because “as your analytic needs change over time, so does the schema.”

One way to make data model evolution easier, she continued, is to “split and decouple data transformations.” [to] make the whole process easier to build, debug and maintain in the long run.”

Mapping the UI tightly to the fields and values ​​of your data

As Tailwind Labs partner Steve Schoger has: marked, “Don’t be afraid to ‘think outside the database’”. He goes on to explain that you don’t necessarily have to map your user interface directly to every data field and value. This error usually stems from a fixation on your data model rather than the underlying information architecture. The problem also means that you are likely presenting data in a way that is more intuitive to the application audience than a one-to-one mapping of the underlying data model.

Incorrect or different granularity

In analytics, granularity refers to the level of detail we can see. In a SaaS company, for example, we want to see the consumption of our service per day, per hour or per minute. It’s important to get the right amount of granularity in a data model because if it’s too granular you can end up with all kinds of unnecessary data, making it complicated to decipher and sort everything.

But with too little granularity, you may lack enough detail to discover important details or trends. Now add the possibility that your granularity is focused on daily numbers, but the company wants you to determine the difference between peak and off-peak consumption. At that point you would be dealing with mixed granularity and ultimately confusing users. Determining your exact data usage scenarios for internal and external users is an important first step in determining how much granularity your model needs.

Inconsistent or non-existent naming patterns

Instead of coming up with a unique naming convention, take standard approaches with data models. For example, if tables don’t have consistent logic in how they are named, the data model becomes very difficult to follow. It may seem smart to come up with obscure naming conventions that relatively few people will immediately understand, but this will inevitably lead to confusion later on, especially when new people come on board to work with these models.

The concept of not separating keys from indexes

In a database, keys and indexes have different functions. Like Bert Scalzo has explained, “Keys enforce company rules, that’s a logical concept. Indexes speed up database access – it’s a purely physical concept.”

Since many merge the two, they don’t end up implementing candidate keys and thereby reducing the indexes; in the process, they also slow down performance. Scalzo continued with this advice: “Implement the fewest number of indexes” [that] can support all keys effectively.”

Starting too late with data modeling

If the data model is the blueprint for describing an application’s data and how that data interacts, it makes little sense to start building the application before an big data modeler has fully mapped out the data model. Yet this is exactly what many developers do.

Understanding the shape and structure of data is critical to application performance and ultimately to the user experience. This should be the first consideration and brings us back to mistake number one: not seeing quality data models as an advantage. Not planning the data model is essentially planning to fail (and planning to do a lot of refactoring later to fix the errors).

Disclosure: I work for MongoDB, but the views expressed herein are mine.

TO SEE: Top data modeling tools (TechRepublic)





Source link

Share130Tweet81Share33
Previous Post

IDC’s 10 IT Predictions | TechRepublic

Next Post

Recover a Deleted Photo or Video on your iPhone or iPad

Tech Fashion

Tech Fashion

Related Posts

Kubernetes is the key to cloud, but cost containment is critical
Technology

Kubernetes is the key to cloud, but cost containment is critical

by Tech Fashion
March 14, 2023
Business leaders’ expectations for AI/ML applications are too high, say CDOs
Technology

Business leaders’ expectations for AI/ML applications are too high, say CDOs

by Tech Fashion
March 14, 2023
Get a second phone number for only $25 until 3/31
Technology

Get a second phone number for only $25 until 3/31

by Tech Fashion
March 13, 2023
Get 100 GB of secure cloud-based storage for a one time fee of $30
Technology

Get 100 GB of secure cloud-based storage for a one time fee of $30

by Tech Fashion
March 13, 2023
Next Post
Recover a Deleted Photo or Video on your iPhone or iPad

Recover a Deleted Photo or Video on your iPhone or iPad

Tips for Protecting Your Intellectual Property

Tips for Protecting Your Intellectual Property

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

No Result
View All Result

Categories

  • Business (4)
  • Celebrity (10)
  • Culture (8)
  • Education (9)
  • Entertainment (3)
  • Fashion (14)
  • Food (7)
  • Footwear (7)
  • Health (6)
  • Lifestyle (14)
  • Music (6)
  • SEO (1)
  • Social Media (2)
  • Software (4)
  • Tech Solution (1)
  • Technology (1,842)
  • Travel (12)
  • Website Design (2)

Recent.

Unveiling the Most Awaited Amazon Upcoming Sale 2023: A Shopper’s Paradise!

October 2, 2023
Unveiling the Spectacular Flipkart Upcoming Sale 2023

Unveiling the Spectacular Flipkart Upcoming Sale 2023: Your Ultimate Shopping Guide!

October 1, 2023
GA4 vs. Universal Analytics

GA4 vs. Universal Analytics: Unraveling the Evolution of Google Analytics

September 30, 2023
Tech Fashion Web

We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Check our landing page for details.

Category

  • Business
  • Celebrity
  • Culture
  • Education
  • Entertainment
  • Fashion
  • Food
  • Footwear
  • Health
  • Lifestyle
  • Music
  • SEO
  • Social Media
  • Software
  • Tech Solution
  • Technology
  • Travel
  • Website Design

Recent Posts

  • Unveiling the Most Awaited Amazon Upcoming Sale 2023: A Shopper’s Paradise! October 2, 2023
  • Unveiling the Spectacular Flipkart Upcoming Sale 2023: Your Ultimate Shopping Guide! October 1, 2023
  • GA4 vs. Universal Analytics: Unraveling the Evolution of Google Analytics September 30, 2023

Contact Us

    © 2021 techfashionweb.com . All rights reserved.

    No Result
    View All Result
    • Home
    • Fashion
      • Footwear
      • Culture
    • Technology
      • Tech Solution
      • Website Design
      • Cyber Security
      • Software
    • Business
    • Digital Marketing
      • SEO
      • Social Media
    • Travel
    • Entertainment
      • Music
      • Celebrity
    • Health
      • Food
    • lifestyle
      • Home
    • More
      • Gaming
      • Gadgets
      • Education
      • Electronics
      • Gadgets
      • Reviews
      • Law

    © 2021 techfashionweb.com . All rights reserved.