Guest User

Untitled

a guest
Oct 29th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. MariaDB [nova]> select * from services;
  2. +---------------------+---------------------+------------+----+----------------------------+------------------+-------------+--------------+----------+---------+-----------------+
  3. | created_at | updated_at | deleted_at | id | host | binary | topic | report_count | disabled | deleted | disabled_reason |
  4. +---------------------+---------------------+------------+----+----------------------------+------------------+-------------+--------------+----------+---------+-----------------+
  5. | 2014-10-20 12:39:10 | 2014-10-29 14:36:25 | NULL | 1 | cloud-controller1.prod.lan | nova-cert | cert | 77944 | 0 | 0 | NULL |
  6. | 2014-10-20 12:39:12 | 2014-10-29 14:36:25 | NULL | 2 | cloud-controller1.prod.lan | nova-consoleauth | consoleauth | 77944 | 0 | 0 | NULL |
  7. | 2014-10-20 12:39:14 | 2014-10-29 14:36:25 | NULL | 3 | cloud-controller1.prod.lan | nova-scheduler | scheduler | 77944 | 0 | 0 | NULL |
  8. | 2014-10-20 12:39:15 | 2014-10-29 14:36:34 | NULL | 4 | cloud-controller1.prod.lan | nova-conductor | conductor | 77978 | 0 | 0 | NULL |
  9. | 2014-10-20 12:55:32 | 2014-10-29 14:36:33 | NULL | 5 | cloud-compute1.prod.lan | nova-compute | compute | 76631 | 0 | 0 | None |
  10. | 2014-10-29 14:25:32 | 2014-10-29 14:25:47 | NULL | 6 | cloud-controller1.prod.lan | nova-network | network | 2 | 0 | 0 | NULL |
  11. +---------------------+---------------------+------------+----+----------------------------+------------------+-------------+--------------+----------+---------+-----------------+
  12. 6 rows in set (0.00 sec)
  13.  
  14. MariaDB [nova]> delete from services where id=6;
  15. Query OK, 1 row affected (0.05 sec)
  16.  
  17. MariaDB [nova]> select * from services;
  18. +---------------------+---------------------+------------+----+----------------------------+------------------+-------------+--------------+----------+---------+-----------------+
  19. | created_at | updated_at | deleted_at | id | host | binary | topic | report_count | disabled | deleted | disabled_reason |
  20. +---------------------+---------------------+------------+----+----------------------------+------------------+-------------+--------------+----------+---------+-----------------+
  21. | 2014-10-20 12:39:10 | 2014-10-29 14:37:15 | NULL | 1 | cloud-controller1.prod.lan | nova-cert | cert | 77949 | 0 | 0 | NULL |
  22. | 2014-10-20 12:39:12 | 2014-10-29 14:37:15 | NULL | 2 | cloud-controller1.prod.lan | nova-consoleauth | consoleauth | 77949 | 0 | 0 | NULL |
  23. | 2014-10-20 12:39:14 | 2014-10-29 14:37:15 | NULL | 3 | cloud-controller1.prod.lan | nova-scheduler | scheduler | 77949 | 0 | 0 | NULL |
  24. | 2014-10-20 12:39:15 | 2014-10-29 14:37:14 | NULL | 4 | cloud-controller1.prod.lan | nova-conductor | conductor | 77982 | 0 | 0 | NULL |
  25. | 2014-10-20 12:55:32 | 2014-10-29 14:37:13 | NULL | 5 | cloud-compute1.prod.lan | nova-compute | compute | 76635 | 0 | 0 | None |
  26. +---------------------+---------------------+------------+----+----------------------------+------------------+-------------+--------------+----------+---------+-----------------+
  27. 5 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment