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( “文字列” )
指定した文字列が後方に含まれているかを判 ...
Ubuntu 23.04 Samba Winbindの設定方法
環境
Ubuntu 23.04
SSL/TLS 有効
概要
ローカルネットワーク内に Windows Active Directory Domain Service が稼働していることが前提です。 ...
Apache2 WebDAV の設定方法
環境
Ubuntu 23.04
SSL/TLS 有効
操作例
例 ディレクトリ直下に、ユーザー認証が必要な という
フォルダーを作成し、WebDAV でアクセスできるように設定します。 ...
Kotlin Listの要素を指定した範囲で取得するサンプル
環境
windows11 home
java 19.0.1
kotlin 1.7.20-release-201
構文
Listの要素を指定した範囲で取得するには、「slice」を利用します。 ...
Excel 2019 FACTDOUBLE関数の使い方のサンプル
環境
Windows 11 Pro 64bit
Excel 2019
構文
FACT(数値)
引数の「数値」で、二重階乗を求めたい数値の指定を行います。
操作例
C2セル ...
Excel 2019 FACT関数の使い方のサンプル
環境
Windows 11 Pro 64bit
Excel 2019
構文
FACT(数値)
引数の「数値」で、階乗を求めたい数値の指定を行います。
操作例
C2セルに「 ...