Difference between revisions of "Database Table: partialstats"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'partialstats =Definition= <source lang="sql"> CREATE TABLE partialstats ( jobname VARCHAR(50) NOT NULL, clusterid MEDIUMINT NOT NULL DEFAULT...')
 
(Robot: Updating: Format)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Database Table|partialstats]]
+
{{Database Table|name=partialstats|table type=global|need desc=1|repo=dw-free}}
=Definition=
+
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE partialstats (
 
CREATE TABLE partialstats (
Line 6: Line 6:
 
     clusterid MEDIUMINT NOT NULL DEFAULT 0,
 
     clusterid MEDIUMINT NOT NULL DEFAULT 0,
 
     calctime  INT(10) UNSIGNED,
 
     calctime  INT(10) UNSIGNED,
 +
 
     PRIMARY KEY (jobname, clusterid)
 
     PRIMARY KEY (jobname, clusterid)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 15:58, 22 July 2010

This is a global table.

Definition

CREATE TABLE partialstats (
    jobname  VARCHAR(50) NOT NULL,
    clusterid MEDIUMINT NOT NULL DEFAULT 0,
    calctime  INT(10) UNSIGNED,
 
    PRIMARY KEY (jobname, clusterid)
)

Relationships