Top "Data-modeling" questions

Data modeling questions refer to the techniques used to gather and analyze data requirements needed to support data operations in programs and systems.

Data modeling practices in Redis?

I've recently been getting into Redis and find it very appealing. I'd like to see how far I can push …

database-design redis data-modeling
Where should I store a foreign key?

If I have a relationship between two tables (both tables have their own primary keys) what should guide my decision …

mysql database database-design data-modeling
Using categorical data as features in sklean LogisticRegression

I'm trying to understand how to use categorical data as features in sklearn.linear_model's LogisticRegression. I understand of course …

python scikit-learn regression data-modeling logistic-regression
performance between varchar(1) vs char(1)

Is there any performance difference between varchar(1) and char(1)? Which RDBMS handle these two datatypes and sizes in different ways?

database-design data-modeling
How to export ERD diagram to image in oracle data modeler/sql developer

I'm on oracle sql developer 4.0.2.15. I used data modeller to generate Entity Relationship Diagram, how to save it as image? …

entity oracle-sqldeveloper data-modeling entity-relationship-model
How to *really* write UML cardinalities?

I would like to know once and for all how to write UML cardinalities, since I very often had to …

oop uml data-modeling cardinality
Data Model tools for DB2

I have created a Database in DB2 and tables with relationships. I would like to create a ER diagram based …

database database-design db2 data-modeling erd
How to properly cascade delete managed objects in Core Data?

I have a Core Data model which has three entities: A, B, and C. A has a one-to-many relationship with …

cocoa core-data data-modeling cascade
What are the design criteria for primary keys?

Choosing good primary keys, candidate keys and the foreign keys that use them is a vitally important database design task …

database database-design foreign-keys primary-key data-modeling
Edit Rails Model From Command Line

I am pretty new to Ruby on Rails, and I was wondering if there was a way to edit the …

ruby-on-rails ruby-on-rails-3 data-modeling scaffolding