summaryrefslogtreecommitdiff
path: root/development/pim/dbpaper/intro.tex
blob: fd790d70ee1a198e6de61fc91311a4985eae0f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
\pagebreak
\section{Introduction}

\subsection{This document}

Note: This paper is just a request for comment! Don't expect to find anything in the real implementation !
\\
This draft paper describes the database layout of the Opie PIM applications.
Design goal is a fast and extendable layout on a sql database to support cross referencing.


\subsection{Copyright}

Copyright notice
\copyright 2002-2004, Maximilian Rei{\ss} \& Stefan Eilers \& Holger Freyther

\pagebreak
\section{Relations}
\subsection{About Cross Referencing and Horizontal Data Storage}
Before you read on, it may be helpful to get some information about the solution of ``horizontal'' data storage into the tables and cross referencing.
Some of the tables are just using 5 attributes:
\begin{enumerate}
\item UID: This countains an unique ID for the complete entry. An entry may consist of multiple
rows, seperated by ID.
\item ID: This defines a number to seperate the rows of an entry. UID + ID must be unique for every entry (primary key).
\item Type: Describes the type of this entry.
\item Priority: For instance: Your default email-address will get the priority 1 and the other 2.. . 0 means ``not defined''.
\item Value: The data which was described by ``Type'' is stored here.
\end{enumerate}

These kinds of tables are very flexible in what they may contain, due to the fact that the ``Type'' may be without any constraint. Therefore it is perfectly for storing personal information, which may change in the future, or should be increased.
\\
Let's see how such an entry may look like for the table ``ADDRESSBOOK'':

\begin{tabular}[ht]{|l|l|l|l|}
\hline
\underline{UID} & \underline{ID} & Type & Value\\
\hline
 1231& 00& Title& Herr\\
\hline
 1231& 01& FirstName& Stefan\\
\hline
 1231& 02& LastName& Eilers\\
\hline
\end{tabular}
\\
\\
We need some additional information about this entry, which is stored into the table ``PERSONAL\_DATA'':
\\
\\
\begin{tabular}[ht]{|l|l|l|l|l|}
\hline
\underline{UID} & \underline{ID} & Type & Priority & Value\\
\hline
 2345& 00& Email& 1& eilers.stefan@epost.de\\
\hline
 2345& 01& Email& 2& eilers@sra.uni-hannover.de\\
\hline
 2345& 02& WebPage& 1&  www.sra.uni-hannover.de/$\sim$eilers/\\
\hline
\end{tabular}
\\
\\
The last question is: How to get these information together? This is the job of the cross-referencing-table\footnote{We expecting that the table ``PERSONAL\_DATA'' was registered in the table ``TABLEID'' as table ``03''and ADDRESSBOOK with ``01''!}:
\\
\\
\begin{tabular}[ht]{|l|l|l|l|l|l|}
\hline
\underline{TID1} & \underline{UID1} & \underline{ID1} & \underline{TID2} & \underline{UID2} & \underline{ID2} \\
\hline
 01& 1231& (NULL) & 03& 2345& (NULL) \\
\hline
\end{tabular}
\\
\\
ID was left empty, due to the fact that we wanted to link the complete entry and not some rows of the entry.
\\
In some cases, it may be useful to reference in a much more smaller granularity than complete entries. What should we do, if we want to store the children of a person ? 
The easiest way is to store the children into the table ``PERSONAL\_DATA'':\footnote{We remember that the table ``PERSONAL\_DATA'' was registered in the table ``TABLEID'' as table ``03''!}, too.\\
\\
\begin{tabular}[ht]{|l|l|l|l|l|}
\hline
\underline{UID} & \underline{ID} & Type & Priority & Value\\
\hline
 2345&  11& Child & 0 & Amaly \\
\hline
 2345&  12& Child & 0 & Karl \\
\hline
 2345&  13& Child & 0 & Clarissa\\
\hline
\end{tabular}\\
\\

But what happens if you want to store additional information about the children, as there mobile phone numbers, etc?

In this case we need an entry in addressbook and a reference to this entry. Lets expect ``Amaly'' was stored in the table ``ADDRESSBOOK'' with UID 9213 and Karl with UID 7654. A cross-reference will look like this:\\
\\
\begin{tabular}[ht]{|l|l|l|l|l|l|}
\hline
\underline{TID1} & \underline{UID1} & \underline{ID1} & \underline{TID2} & \underline{UID2} & \underline{ID2} \\
\hline
 03& 2345& 11& 01& 9213& (NULL) \\
\hline
 03& 2345& 12& 01& 7654& (NULL) \\
\hline
\end{tabular}
\\