Ruby rand関数 乱数を生成するサンプル
環境
Windows11 pro 64bit
ruby 3.0.3p157
構文
rand(数値)
# 乱数範囲は 0 ~ 数値 – 1
randを使用すれば、乱数を生成 ...
MariaDB INET_NTOA ビッグ・エンディアンからIPアドレスを抽出するサンプル
環境
CentOS Stream release 9
MariaDB 10.10.2
構文
INET_NTOA()
ビッグ・エンディアンからIPアドレスを抽出するには、「INET_NTOA( ...
MariaDB ANALYZE TABLE テーブルのindexの最適化を行うサンプル
環境
CentOS Stream release 9
MariaDB 10.10.2
構文
ANALYZE TABLE table_name
indexの最適化を行うには、「ANALYZE ...
MariaDB JSON_ARRAYAGG 各レコードのデータをjson配列で取得するサンプル
環境
CentOS Stream release 9
MariaDB 10.10.2
構文
JSON_ARRAYAGG(カラム名)
各レコードのデータをjson配列で取得するには、「JSON ...
MariaDB COUNT関数の使い方のサンプル
環境
CentOS Stream release 9
MariaDB 10.10.2
構文
SELECT
COUNT(カラム名), COUNT(カラム名 = 条件 or null)
MariaDB buffer poolのpage情報を取得する方法
環境
CentOS Stream release 9
MariaDB 10.10.2
構文
select *
from information_schema.INNODB_BUFFER_PA ...
Oracle21c ALTER USER ユーザーのパスワードを変更するサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
ALTER USER ユーザー名
IDENTIFIED BY ...
Oracle21c RENAMEシノニムをリネームするサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
RENAME シノニム名 TO 変更後シノニム名;
シノニムをリネ ...
Oracle21c ORA-12541: TNS: リスナーがありませんの解決方法
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
エラー現象
> sqlplus cft/pwd@SAMPLEPDB
Oracle21c GREATEST 最大値を取得するサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
GREATEST(値1,値2, …)
最大値を取得する ...
Oracle21c ORA-04043: オブジェクトxxxは存在しませんの解決方法
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
エラー現象
次のコマンドの開始中にエラーが発生しました : 行 1 – ...
Oracle21c サーバーの停止と起動を実行する方法
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
# 停止
shutdown immediate
# 起 ...
Oracle21c 表領域を読み取り専用にするサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
ALTER DATABASE 表領域名 READ ONLY;
表領 ...
Oracle 21c マテリアライズドビューを即時更新するサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
CREATE MATERIALIZED VIEW LOG ON 対象テーブ ...
Oracle 21c 既存テーブルの列を追加するサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
ALTER TABLE テーブル名
ADD (列名 データ型,列名 ...
Oracle 21cユーザー一覧を確認するサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
SELECT * FROM ALL_USERS;
ユーザー一覧を確 ...
Oracle 21c 絶対値を取得するサンプル
環境
Windows11 pro 64bit
Oracle Database 21c Express Edition
構文
ABS( 数値 )
絶対値を取得するには、「ABS」関数を使用しま ...
java endsWith指定した文字列が後方に含まれているかを判定するサンプル
環境
Windows11 Pro 64bit
java 19.0.1
構文
対象の文字列.endsWith( “文字列” )
指定した文字列が後方に含まれているかを判 ...