oinume journal

Scratchpad of what I learned

Entries from 2015-09-01 to 1 month

Ansible Meetup in TokyoでLTしてきた

「Vagrant環境のAnsibleを速くしたいというタイトル」でAnsible MeetupでLTしてきました。資料はこちら。 Vagrant環境のAnsibleを速くしたい from Kazuhiro Oinuma もともとは、「Ansible Meetup 行きたいなー。でももう埋まってるなー」から「LT枠に空きが…

Duplicating a MySQL table schema and data

Duplicate foo table into foo_20150904 /* Create a new table from foo's schema */ > CREATE TABLE foo_20150904 LIKE foo; /* Insert whole data into a new table */ > INSERT INTO foo_20150904 SELECT * FROM foo;