2020-08-09から1日間の記事一覧

スロークエリの出力対象

DB

MySQL (5.6) -- 確認事項実行中のSQL、ロック待ちのSQL、ファンクション内部のSQL、エラーSQLがスロークエリに出力されるか -- テスト準備vim /etc/my.cnfslow_query_log=1slow_query_log_file="/var/lib/mysql/mmm050-slow.log"long_query_time=0 sudo syst…

PLのselect intoの挙動

DB

MySQL (5.6) -- 確認事項データが0件、2件の場合のPLでのselect intoの挙動 -- テストデータ準備 drop table tab1;create table tab1(col1 int);insert into tab1 values(1);insert into tab1 values(2);insert into tab1 values(2); select * from tab1; --…

AWS CLI(S3)

AWS

バケットの作成 aws s3 mb s3://mybucket ファイルのコピーaws s3 cp /root/a.txt s3://mybucket aws s3 cp /root/testdir s3://mybucket \--recursive aws s3 cp /root/b.txt s3://mybucket \--storage-class STANDARD aws s3 cp /root/c.txt s3://mybucket…

AWS CLI(EC2)

AWS

セキュリティグループの作成aws ec2 create-security-group \--description Mysg01 \--group-name Mysg01 \--vpc-id vpc-04ffe9cc84548ab04 セキュリティグループの一覧aws ec2 describe-security-groupsaws ec2 describe-security-groups | jq -r '.Securit…