2022-10-01から1ヶ月間の記事一覧

{Redshiftクラスタ}Amazon Redshift サーバーレス

AWS

https://docs.aws.amazon.com/ja_jp/redshift/latest/mgmt/working-with-serverless.html https://dev.classmethod.jp/articles/20220805-amazon-redshift-serverless-prd/https://dev.classmethod.jp/articles/20220805-amazon-redshift-serverless/ -- 1. …

{Aurora}Aurora Serverless v2 を使用する

AWS

https://docs.aws.amazon.com/ja_jp/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.htmlhttps://dev.classmethod.jp/articles/aurora-serverless-v2-ga/ -- 1. コマンド等のインストール -- 1.1 aws cli version 2 インストール curl "https://aws…

AWS残存リソース検知シェル

AWS

vim aws_check_resources.sh #!/bin/bash # リージョンR=(ap-northeast-1ap-northeast-3us-east-1us-east-2us-west-1us-west-2eu-north-1ap-south-1eu-west-3eu-west-2eu-west-1ap-northeast-2sa-east-1ca-central-1ap-southeast-1ap-southeast-2eu-central-…

{Azure Virtual Machine Scale Sets}チュートリアル:Azure CLI を使用して仮想マシン スケール セットを自動的にスケールする

https://learn.microsoft.com/ja-jp/azure/virtual-machine-scale-sets/tutorial-create-and-manage-cli https://learn.microsoft.com/ja-jp/azure/virtual-machine-scale-sets/tutorial-autoscale-cli オーケストレーション モード 均一 フレキシブル 推奨…

リレーションシップ設定ツール

DB

MySQL (8.0.29) drop procedure proc_makeER;delimiter //create procedure proc_makeER()begin -- ワーク変数declare wk1 numeric;declare wk2 numeric;declare wk3 numeric;declare wk4 numeric;declare wk5 numeric;declare wk6 numeric; declare va1 var…

連番更新

DB

MySQL (8.0.29)drop table tab1;create table tab1(col1 bigint,col2 bigint); set @i:=0; insert into tab1(col1) select row_number() over(order by table_catalog) from information_schema.columns limit 10;select * from tab1; set @i:=0; update tab…

Azure CLI(EC2)

https://learn.microsoft.com/ja-jp/azure/virtual-machines/ssh-keys-azure-clihttps://learn.microsoft.com/ja-jp/azure/virtual-machines/linux/multiple-nics?toc=%2Fazure%2Fvirtual-network%2Ftoc.json#add-a-nic-to-a-vm https://learn.microsoft.com…

Vagrant

OS

Ubuntu (22) https://katblog.manadream.net/index.php/2019/03/19/vagrant-install-hello-world/https://www.virtualbox.org/wiki/Linux_Downloadshttps://www.vagrantup.com/downloads 前提:起動オプション BIOSCPU ハードウェア仮想化 -> 有効化 -- 1. V…

CLOB最大サイズ

DB

MySQL (8.0.29)OSメモリ = 2GBディスク = 60GB select @@max_allowed_packet; vi /etc/my.cnf max_allowed_packet = 1073741824 longtext最大サイズ = 4GB drop table tab1 ;create table tab1(col1 longtext, col2 longtext); insert into tab1 values('A',…

{Azure Resource Manager}クイック スタート:仮想ネットワークを作成する - Resource Manager テンプレート

https://learn.microsoft.com/ja-jp/azure/virtual-network/quick-create-template -- 1. リソースグループ作成 az group create \--name rg01 \--location japaneast az group list -- 2. ARMデプロイ開始 vim a.json { "$schema": "https://schema.managem…

GCP CLI(VPC)

GCP

gcloud initgcloud auth list --------------------------------------------- プロジェクト作成 gcloud projects create project01-9999999 \--name="project01" gcloud projects list プロジェクト削除 gcloud projects delete project01-9999999 --------…

{Azure Load Balancer}Load Balancer 用の Azure CLI サンプル

https://learn.microsoft.com/ja-jp/azure/load-balancer/cli-samples -- 1. 前作業 az login --use-device-codeaz account show az version az configure --list-defaultsaz configure --defaults location=japaneastaz configure --list-defaults az group…

改行を含むデータの移送

DB

MySQL (8.0.29) tab1 -> 移行元(改行置換前)tab2 -> 移行元(改行置換後)tab3 -> 移行先(改行置換後)tab4 -> 移行先(改行置換前) drop table tab1 ;create table tab1(col1 int primary key ,col2 datetime(0) ,col3 datetime(6) ,col4 varchar(100) ); drop …

Azure CLI(VPC)

https://learn.microsoft.com/ja-jp/azure/virtual-network/manage-route-table https://learn.microsoft.com/ja-jp/azure/virtual-network/nat-gateway/quickstart-create-nat-gateway-cli https://learn.microsoft.com/ja-jp/azure/virtual-network/ip-ser…

varchar最大長

DB

MySQL : 16383文字Oracle : 4000バイト or 32767バイトPosgreSQL : 10485760文字SQL Server : 8000バイト MySQL (8.0.29) VARCHARはバイトでの上限が65535バイト。文字セットがutf8mb4の場合は、上限が16383文字となる。 VARCHAR カラム内の値は可変長の文字…

二重ループのexit

DB

MySQL (8.0.29) [1]ラベルによる方法 drop procedure proc1; delimiter //create procedure proc1()begin declare i int; declare j int; set i = 1; LOOP1: while i <= 3 do set j = 1; while j <= 5 do select i,j; if i = 2 and j = 2 then leave LOOP1; …

Arkimeインストール

OS: Amazon Linux2 ( ami-078296f82eb463377) インスタンスタイプ: t3.medium (2vCPU,4GiB) インストールするもの: httpdArkimeDockerDocker ComposeElasticSearch -- 1. EC2インスタンス作成 -- 2. セキュリティグループ設定下記通信を許可する TCP 22 MYIP…