2021-09-16から1日間の記事一覧

ダンプリストア時のパージオプション

DB

MySQL (8.0.22) -- テストオブジェクト準備drop table tab1;create table tab1(col1 int primary key);insert into tab1 values(1);select * from tab1; drop view view1;create view view1 as select * from tab1; drop function func1;create function fun…

既存DBの暗号化

AWS

(1)RDS (MySQL) -- 1. インスタンス作成 aws rds create-db-instance \--db-instance-identifier mysql01 \--allocated-storage 20 \--db-instance-class db.t3.micro \--engine mysql \--master-username root \--master-user-password 'password' \--no-mu…