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

テーブルリネームの権限への影響

DB

MySQL (8.0.22) drop table tab1;create table tab1(col1 int);grant select on tab1 to user1@'%'; show grants for user1@'%'; alter table tab1 rename to tab1_new; テーブル権限は継承されない★ Oracle (19c) drop table tab1 purge;create table tab1(…

アイドルタイムアウト

DB

MySQL (8.0.22)https://gihyo.jp/dev/serial/01/mysql-road-construction-news/0075 show variables like 'wait_timeout'; SET @@session.wait_timeout=3; 指定する単位は秒 Oracle (19c) https://qiita.com/plusultra/items/3622ac81e57617ef7b9f (1)初期化…