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...')
 
Line 1: Line 1:
[[Category: Database Table|partialstats]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE partialstats (
 
CREATE TABLE partialstats (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|partialstats]]

Revision as of 18:45, 2 April 2009

Definition

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

Relationships

Location

Global database