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

{Redshiftクラスタ}別の AWS リージョンにスナップショットをコピーする

AWS

-- 1. クラスターの作成redshift01 <-- 暗号化なしredshift02 <-- 暗号化有 aws redshift create-cluster \--db-name test \--cluster-identifier redshift01 \--cluster-type single-node \--node-type dc2.large \--master-username test \--master-user-p…

UNIXタイムと時刻の変換

DB

MySQL (8.0.22)https://qiita.com/reneice/items/b385e143fcbb144f4f3e -- 時刻→UNIXタイムselect unix_timestamp('2021-09-19 12:34:56');select unix_timestamp(now()); -- UNIXタイム→時刻 select from_unixtime(1632036429); Oracle (19c)http://kazemat…

{Aurora}DB クラスターsnapshotのコピー

AWS

手動 DB クラスタースナップショットを共有すると、暗号化されているかいないかに関係なく、権限を持つ AWS アカウントが DB クラスターをコピーしてそこから復元するのではなく、スナップショットから DB クラスターを直接復元できるようになります。 -- 1.…