[前][次][番号順一覧][スレッド一覧]

mysql:312

From: Seiji tateyama <Seiji tateyama <tarosa@xxxxxxxxxx>>
Date: Fri, 23 Oct 1998 18:51:42 +0900
Subject: [mysql 312] Re: MySQL logging sendmail-8.9.1


舘山です

さっそく バグありました (^_^;)

mailstatの出力が
Statistics from Fri Oct 23 18:10:11 1998
 M   msgsfr  bytes_from   msgsto    bytes_to  msgsrej msgsdis  Mailer
 3       14         56K       14         56K        0       0  local
 8        1          1K        1          1K        0       0  smtpf
=============================================================
 T       15         57K       15         57K        0       0

となってたとき
+----------+-+-------+----------+------+--------+--------+-------
|date      |M|msgsfr |bytes_from|msgsto|bytes_to|imsgsrej|msgsdis
+----------+-+-------+----------+------+--------+--------+-------
|1998-10-23|3|    14 |        56|   14 |     56 |      0 |      0
|1998-10-23|8|     1 |        1 |    1 |      1 |      0 |      0
+----------+-+-------+----------+------+--------+--------+--------
となるべきだったんですが

create table sendmail (
date DATE NOT NULL PRIMARY KEY,
M TINYINT UNSIGNED NOT NULL,
msgsfr MEDIUMINT UNSIGNED,
bytes_from MEDIUMINT UNSIGNED,
msgsto MEDIUMINT UNSIGNED,
bytes_to MEDIUMINT UNSIGNED,
imsgsrej MEDIUMINT UNSIGNED,
msgsdis MEDIUMINT UNSIGNED,
UNIQUE (m)
);

と設定してたので

Replace した場合一つの項目

+----------+-+-------+----------+------+--------+--------+-------
|date      |M|msgsfr |bytes_from|msgsto|bytes_to|imsgsrej|msgsdis
+----------+-+-------+----------+------+--------+--------+-------
|1998-10-23|8|     1 |        1 |    1 |      1 |      0 |      0
+----------+-+-------+----------+------+--------+--------+--------

のみデータとして更新されてしましました(^_^;)

結局私は date と M を合体した文字列として扱うことにしました
こんな感じでもいいのかなぁ?

create table sendmail (
dateM char(12) DEFAULT '0000-00-00-0' PRIMARY KEY,
msgsfr MEDIUMINT UNSIGNED,
bytes_from MEDIUMINT UNSIGNED,
msgsto MEDIUMINT UNSIGNED,
bytes_to MEDIUMINT UNSIGNED,
imsgsrej MEDIUMINT UNSIGNED,
msgsdis MEDIUMINT UNSIGNED
);


--------
舘山 聖司 tarosa@xxxxxxxxxx


[前][次][番号順一覧][スレッド一覧]

       306 1998-10-23 01:31 [Seiji tateyama <taro] Re: MySQL logging sendmail-8.9.1        
->     312 1998-10-23 18:51 ┗[Seiji tateyama <taro]                                       
       313 1998-10-23 19:32  ┗[Seiji tateyama <taro]                                     
       314 1998-10-23 19:48   ┣[Satoshi Tatsuoka <sa]                                   
       315 1998-10-25 23:46   ┗[Seiji tateyama <taro] 公開  MySQL logging sendmail-8.9.1
       316 1998-10-26 00:22    ┣[<takeshi@xxxxxxxxxx>]                                 
       317 1998-10-26 02:35    ┗[Seiji tateyama <taro]