Closed
Bug 874966
Opened 12 years ago
Closed 12 years ago
Run this command on the graphs production DB
Categories
(Data & BI Services Team :: DB: MySQL, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: armenzg, Assigned: bjohnson)
Details
Hi,
Can you please run this command on the graphs production DB?
delete from machines where name like 't-xp32-ix-137';
No rush. Thanks!
| Assignee | ||
Comment 1•12 years ago
|
||
mysql> use graphs_mozilla_org_new;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select count(*) from machines where name = 't-xp32-ix-137';
+----------+
| count(*) |
+----------+
| 1 |
+----------+
1 row in set (0.00 sec)
mysql> delete from machines where name = 't-xp32-ix-137';
Query OK, 1 row affected (0.00 sec)
mysql> select count(*) from machines where name = 't-xp32-ix-137';
+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (0.00 sec)
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
| Assignee | ||
Updated•12 years ago
|
Assignee: server-ops-database → bjohnson
| Reporter | ||
Comment 2•12 years ago
|
||
Thank you sir!
Updated•11 years ago
|
Product: mozilla.org → Data & BI Services Team
You need to log in
before you can comment on or make changes to this bug.
Description
•