2023-04-01から1ヶ月間の記事一覧

{Denodo}Jisqlで接続

https://community.denodo.com/answers/question/details?questionId=9060g000000TRAeAAO&title=Accessing+Denodo+VDP+through+Linux+Shell https://community.denodo.com/docs/html/browse/latest/jp/vdp/developer/access_through_jdbc/access_through_jdbc…

{Denodo}スケジューラジョブ(ハンドラー + CSV exporter)

https://community.denodo.com/docs/html/browse/8.0/jp/scheduler/administration/creating_and_scheduling_jobs/configuring_new_jobs/handler_section https://learntutorials.net/ja/batch-file/topic/10693/%E7%89%B9%E6%AE%8A%E6%96%87%E5%AD%97%E3%82…

{Denodo}スケジューラジョブ(クエリ結果ソースのパラメータ化クエリ + CSV exporter)

https://community.denodo.com/docs/html/browse/8.0/jp/scheduler/administration/creating_and_scheduling_jobs/configuring_new_jobs/vdp_extraction_section# 前提: ソースデータベースで下記テーブルおよび基本ビュー作成済 drop table if exists input…

{Denodo}スケジューラジョブ(CSVソースのパラメータ化クエリ + CSV exporter)

https://community.denodo.com/docs/html/browse/8.0/jp/scheduler/administration/creating_and_scheduling_jobs/configuring_new_jobs/vdp_extraction_section# 前提: スケジューラのCSVデータソース作成済 -- パラメータ化クエリselect creation_vql from…

{Denodo}スケジューラジョブ(リストソースのパラメータ化クエリ + CSV exporter)

https://community.denodo.com/docs/html/browse/8.0/jp/scheduler/administration/creating_and_scheduling_jobs/configuring_new_jobs/vdp_extraction_section# LIST タイプの場合、値を割り当てることができるのは 1 つの変数のみです。 -- パラメータ化…

SSH自動ログインマクロ

https://www.j-oosk.com/teraterm/authorized_keys/307/https://www.j-oosk.com/teraterm/macro-command/683/ (1)SSH公開鍵認証 + listbox ;; 初期値設定USERNAME = 'ec2-user'KEY_FILE = 'H:\tmp\key1.pem';; 配列設定(接続先IPアドレスorホスト名を代入)st…

VBA(ファイル転送)

VBA

https://www.j-oosk.com/teraterm/file-transfer/224/https://www.j-oosk.com/teraterm/file-transfer/221/ 「Windows Script Host Object Model」を参照設定で追加して再起動 '''''''''''''''''''''''''''''''''''''''''''''' Sub ファイル送信() Dim wsh A…

AlloyDB Omni(preview)

https://cloud.google.com/blog/ja/products/databases/get-started-with-alloydb-omnihttps://cloud.google.com/alloydb/docs/omni https://arkgame.com/2022/03/24/post-306307/https://cloud.google.com/sdk/docs/install?hl=ja#rpm システム要件 2 CPUs …

{EC2}削除保護の有効化

AWS

https://docs.aws.amazon.com/ja_jp/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingDisableAPITerminationhttps://dev.classmethod.jp/articles/tsnote-ec2-disable-termination-001/ -- 1. EC2インスタンス起動(削除保護有効) aws ec2…

{GCP Compute Engine}VM の誤削除の防止

GCP

https://cloud.google.com/compute/docs/instances/preventing-accidental-vm-deletion?hl=ja#gcloud -- 1. 前作業 gcloud initgcloud auth list gcloud --version gcloud projects create project01-9999999 \--name="project01" gcloud config listgcloud …

{Python}OSコマンド実行

https://office54.net/python/basic/python-windows-command#section4-1 OS: Windows10バージョン: 3.7.9 想定シナリオ:ファイルからコマンドを取得して実行し、結果をファイルに書き込む import subprocess # テスト用ファイル作成 with open('a.txt', mode…

{Python}ファイル操作

https://note.nkmk.me/python-file-io-open-with/ OS: Windows10バージョン: 3.7.9 想定シナリオ:エクセルからデータを取得し、すべての列をスペースで連結してテキストファイルに書き込む 前提: python -m pip install openpyxl from openpyxl import Workb…

{Python}エクセル操作

https://gammasoft.jp/support/openpyxl-iter-rows/#:~:text=%E7%A9%BA%E8%A1%8C%E3%81%AE%E5%88%A4%E5%AE%9A%E3%81%AF,%E3%81%AA%E3%82%8B%E3%81%8B%E3%81%A7%E8%A6%8B%E5%88%86%E3%81%91%E3%81%BE%E3%81%99%E3%80%82 OS: Windows10バージョン: 3.7.9 想定…

ポートフォワーディング

https://www.wakuwakubank.com/posts/681-ssh-portforward-multistage/ Client -> EC2 -> Redshift リージョン: オレゴン us-west-2 -- 1. キーペア作成 aws ec2 create-key-pair \--key-name key123 \--query "KeyMaterial" \--output text > key123.pem ca…

{Redshift}システムテーブルとビュー

AWS

https://docs.aws.amazon.com/ja_jp/redshift/latest/dg/c_intro_system_tables.html https://dev.classmethod.jp/articles/20230310-amazon-redshift-rpu-8/ https://blog.serverworks.co.jp/amazon-redshift-serverless-overview#%E7%84%A1%E6%96%99%E5%88…

{Azure Event Grid}クイック スタート:Azure CLI を使用してストレージ イベントを Web エンドポイントにルーティングする

https://learn.microsoft.com/ja-jp/azure/storage/blobs/storage-blob-event-quickstart?toc=%2Fazure%2Fevent-grid%2Ftoc.json https://tech-lab.sios.jp/archives/22210 -- 1. 前作業 az login --use-device-codeaz account show az version az configure…