Tagged Questions
In data modeling, the cardinality of one data table with respect to another data table is a critical aspect of database design. Relationships between data tables define cardinality when explaining how each table links to another. In the relational model, tables can be related as any of: many-to-many, many-to-one (rev. one-to-many), or one-to-one. This is said to be the cardinality of a given table in relation to another.
11
votes
1answer
94 views
Primary key index with a DATETIME as first part of the compound key is never used [migrated]
I have a problem with INDEXING a DATETIME (or even a date) as first part of my PRIMARY KEY.
I use MySQL 5.5
Here are my two tables:
-- This is my standard table with dateDim as a dateTime
CREATE ...
7
votes
1answer
2k views
MySQL index cardinality - performance vs storage efficiency
Say you have a MySQL 5.0 MyISAM table with 100 million rows, with one index (other than primary key) on two integer columns.
From my admittedly poor understanding of B-tree structure, I believe that ...
4
votes
2answers
220 views
Is NULL cardinality in an index a problem - MySQL 5.x
I'm having performance problems on the live version of a system which I can't reproduce locally.
In comparing a few EXPLAIN results on my local copies of the database with the live one, I note that ...
3
votes
4answers
250 views
Does it make sense to use an index that will have a low cardinality?
I'm mainly an Actionscript developer and by no means an expert in SQL, but from time to time I have to develop simple server side stuff. So, I thought I'd ask more experienced people about the ...
3
votes
6answers
4k views
Change cardinality of item in C# dictionary
I've got a dictionary, something like
Dictionary<Foo,String> fooDict
I step through everything in the dictionary, e.g.
foreach (Foo foo in fooDict.Keys)
MessageBox.show(fooDict[foo]);
...
2
votes
1answer
134 views
How to Define a One-Side-Optional One-to-One Relationship in SQL Server and LINQ-to-SQL?
I am trying to create a one-to-one relationship that is optional on one side between a User table and a UserInfo table. The specifications are that a UserInfo must have exactly one User, while a User ...
2
votes
5answers
178 views
Update statement taking too long to execute
I am running a Simple Update statement. Its taking too long to execute. Here are the Update and index details.
The default value of Exported column is 0
UPDATE PAR_ITM SET exported = -1 WHERE ...
2
votes
1answer
143 views
What is cardinality and how does it affect performance (SQL Server)?
We have a massive table where I need to make an update on a single row. I don't know the primary key of the row, but I have a varchar value that is unique within that table. I also have the value of a ...
2
votes
1answer
188 views
Interpreting a primary key from table data
I have a legacy database imported into sql server 2008 r2 that contains no indexes and no primary/foreign keys for hundreds of tables (some with hundreds of columns). The primary keys which I've ...
1
vote
1answer
16 views
With DIA diagramming program, how to add cardinality notations on relationship lines?
I am using DIA v0.97.1 to draw an entity relationship diagram with UML sheet for my database model. However, I tried and failed to find a switch allowing me to add cardinality notations (e.g. 1...n) ...
1
vote
2answers
102 views
Preferred Python way of getting the item of a set with a length(/cardinality) of one without removing it?
Given set s, which of the segments below looks better?
if len(s) == 1:
v = s.copy().pop()
# important stuff using variable v takes place here
or
if len(s) == 1:
v = s.pop()
...
1
vote
2answers
209 views
is there an ordinal to cardinal function in ruby or rails?
I'm trying to find a better way in expressing my cucumbers so I am looking for an ordinal to cardinal function that converts this:
When I fill up the first passenger field
Then I should see the ...
1
vote
1answer
1k views
MS Visio 2007: How do I get the cardinality to appear on both ends of a relationship?
In Visio 2007, I can only seem to set the cardinality of the Parent-to-child relationship, but I want to set the Child-to-Parent as well. Is there a reason Visio won't let me do this? Do I need to ...
1
vote
1answer
92 views
How to interpret term cardinality?
An SRS document is provided describing various aspects of the end-product, system maintenance tool. The only paragraph I'm failing to understand is "Component Cardinality". What does this term mean in ...
1
vote
1answer
122 views
cardinality of the type
can someboyd explain please, what does it mean, and also what is the cardinality of the next types for example:
unit->int
bool->(int->bool)
thanks in advance
1
vote
1answer
120 views
Cardinality in PostgreSQL
I have a UML diagram of what I need my database schema to look like. This diagram includes roles and cardinality. How can I enforce cardinality in Postgres?
1
vote
1answer
454 views
sql server 2005 indexes and low cardinality
How does SQL Server determine whether a table column has low cardinality?
The reason I ask is because query optimizer would most probably not use an index on a gender column (values 'm' and 'f'). ...
1
vote
2answers
1k views
Entity Relationships - Can a weak entity take part in a 'one to many' relationship as the 'one'
With the following entity relationship structure I'm struggling to figure out if the relationship between the LOAN and ITEM entities is valid?
The weak entity of LOAN uses a partial key of ...
1
vote
1answer
586 views
MySQL Cardinality vs Auto-Increment Counter
Is the MySQL cardinality number related to the auto-increment counter?
1
vote
3answers
219 views
How to ask a business user for cardinality information?
When collecting requirements from business users, I run into a point where I need to understand the cardinality between two concepts in the business user's domain.
This is usually something I want to ...
1
vote
2answers
3k views
Why does the cardinality of an index in MySQL remain unchanged when I add a new index?
I have added a FULLTEXT index to one of my MySQL database tables as follows:
ALTER TABLE members ADD FULLTEXT(about,fname,lname,job_title);
The problem is that using phpmyadmin I can see the ...
0
votes
1answer
37 views
SQL Databases, Entity Data Models and 1 to 1 entities
I am quite new to EDMs, having written quite a lot of ADO.Net stuff in the past. I have three tables:
**Product:**
Prod_ID - PK
**Product_MaxLoan**
Prod_ID - PK
**Product_MinLoan**
Prod_ID - PK
...
0
votes
1answer
26 views
Is there a straightforward way to determine the cardinality of a foreign key relationship using SMO?
Using SMO, I'm trying to determine the cardinality of a ForeignKey relationship. I could peruse each ForeignKeyColumn and look at each Column in the parent (and possibly also referenced) Tables, and ...
0
votes
1answer
57 views
Spring Roo Cardinality Mapped By attribute
I am trying to map an Address entity and a Person entity using a OneToMany mapping: "Each person has only one address but an Address can have many people".
@RooJavaBean
@RooToString
...
0
votes
0answers
63 views
Patterns and Practices for Enforcing Object Association Cardinality
I've been thinking about object-oriented principals / practices / paradigms such as SOLID, Law of Demeter, and DDD a lot lately and a theme that continues to surface is enforcing object cardinality.
...
0
votes
0answers
63 views
Data Cardinality
All.
I've found this statement in internet :
The Characteristic Cardinality is a
0:M relationship which is mandatory on
both sides. An example would be a
person and name table relationship.
...
0
votes
1answer
62 views
Data Cardinality
I'm confusing about 0:M relationship.
So, I want to ask about that.
Assumes we have 2 tables :
Contact which has attributes like : ContactID(PK),
Name
Address ...
0
votes
3answers
1k views
What is the difference between Max Cardinality and Min Cardinality?
I am having a hard time understanding what is the difference between the Max and Min cardinalities when trying to design a database.
0
votes
0answers
96 views
Indexing “low-cardinality” column for ORDER BY…LIMIT to obtain work portion?
My question is a bit similar to this already-asked question about indexing a boolean column.
I'm building a database of my photographs, and I want to both add keywords, comments, and scoring to them, ...
0
votes
2answers
84 views
Database design: How to restrict a n:m relation by other relations?
I think it's best to ask based on an example: There are people, customers and projects.
People to customers is a n:m relationship. People can work for multiple customers.
Projects to customers is a ...
0
votes
1answer
152 views
Alternatives to low-cardinality columns (and pointless indexes) in mysql?
So I have a mysql table for photos on my website. Every photo is tied to one of two sets of entities, so has two columns; nEntity1FK, nEntity2FK.
Exactly one of these columns is always non-zero in ...
0
votes
1answer
60 views
Intensional and extensional definition of sets
I am searching for a extensional definition for the following set:
E := { m | m subset {a,b,c,d} and |m| = 2}
My idea is
E := {{a,b}, {a,c}, {a,d}, {b,c}, {b,d}, {c,d}, {a,a}, {b,b}, {c,c}, ...
0
votes
2answers
39 views
mincardinality of properties
dear all
i am using jena
how can i get mincardinality of a property?
thanks...
0
votes
1answer
314 views
Question about mysql indexes on low to medium cardinality columns
I have a general question about the way that database indexing works, particularly in mysql. Let's say I have a table with a million rows with a column "ClientID" that is distributed relatively ...
0
votes
2answers
781 views
How to check modality/cardinality on a relationship in Oracle
I am attempting to reverse engineer a Database that is in Oracle. I have been able to find the main keys and the referential integrity rules that correspond to the Foreign Keys but cannot locate where ...
0
votes
1answer
160 views
Alternate name for one-to-one vs one-to-many
Are there generally accepted computer science terms for one-to-one and one-to-many relationships? Something similar to the terms "aggregation", "generalization", and "association," but strictly ...