Difference between revisions of "Database Table: tempanonips"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'tempanonips =Definition= <source lang="sql"> CREATE TABLE tempanonips ( reporttime INT(10) UNSIGNED NOT NULL, ip VARCHAR(15) NOT NU...')
 
m (Robot: Updating: Format, definition)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Database Table|tempanonips]]
+
{{Database Table|name=tempanonips|table type=clustered|need desc=1|repo=dw-free}}
=Definition=
+
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE tempanonips (
 
CREATE TABLE tempanonips (
Line 6: Line 6:
 
     ip          VARCHAR(15) NOT NULL,
 
     ip          VARCHAR(15) NOT NULL,
 
     journalid  INT(10) UNSIGNED NOT NULL,
 
     journalid  INT(10) UNSIGNED NOT NULL,
     jtalkid    MEDIUMINT(8) UNSIGNED NOT NULL,
+
     jtalkid    INT(10) UNSIGNED NOT NULL,
 +
 
 
     PRIMARY KEY (journalid, jtalkid),
 
     PRIMARY KEY (journalid, jtalkid),
 
     INDEX      (reporttime)
 
     INDEX      (reporttime)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
=Relationships=
+
 
+
=Location=
+
[[Clustered database]]
+

Latest revision as of 04:04, 8 June 2013

This is a clustered table.

Definition

CREATE TABLE tempanonips (
    reporttime  INT(10) UNSIGNED NOT NULL,
    ip          VARCHAR(15) NOT NULL,
    journalid   INT(10) UNSIGNED NOT NULL,
    jtalkid     INT(10) UNSIGNED NOT NULL,
 
    PRIMARY KEY (journalid, jtalkid),
    INDEX       (reporttime)
)

Relationships