2021-08-27から1日間の記事一覧

{Neptune}Amazon Neptune バルクローダーを使用したデータの取り込み

AWS

-- 前提: Gremlin コンソールインストール済み -- 1. S3バケット作成 aws s3 mb s3://bucket123aws s3 ls -- 2. IAMロール作成vim role01.json { "Version": "2012-10-17", "Statement": [ { "Sid": "", "Effect": "Allow", "Principal": { "Service": [ "rd…

{Neptune}DB クラスターの起動

AWS

https://qiita.com/mksamba/items/c3fffca815da97600287 -- 1. DBクラスター作成 aws neptune create-db-cluster \--db-cluster-identifier cluster01 \--engine neptune \--engine-version 1.0.5.0 \--port 8182 \--no-storage-encrypted \--no-deletion-pr…

数字のみのレコード抽出

DB

MySQL (8.0.22)https://qiita.com/bezeklik/items/d8d74deece96cb446998 drop table tab1;create table tab1(col1 varchar(100));insert into tab1 values('0001');insert into tab1 values('A001');insert into tab1 values('00A1');insert into tab1 value…