Difference between revisions of "Database Table: cmdbuffer"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'cmdbuffer =Definition= <source lang="sql"> CREATE TABLE cmdbuffer ( cbid INT UNSIGNED NOT NULL AUTO_INCREMENT, journalid INT UNSIGNED NOT NULL, ...')
 
Line 1: Line 1:
[[Category: Database Table|cmdbuffer]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE cmdbuffer (
 
CREATE TABLE cmdbuffer (
Line 14: Line 14:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Table|scmdbuffer]]

Revision as of 21:56, 30 March 2009

Definition

CREATE TABLE cmdbuffer (
  cbid INT UNSIGNED NOT NULL AUTO_INCREMENT,
  journalid INT UNSIGNED NOT NULL,
  cmd VARCHAR(30) NOT NULL DEFAULT '',
  instime datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  args TEXT NOT NULL,
  PRIMARY KEY  (cbid),
  KEY (cmd),
  KEY (journalid)
)

Relationships

Location

Clustered database