1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

LANG環境変数(文字コード)を変更する

Last updated at Posted at 2021-10-19

###シェルの文字コードを変更する

# 日本語表記にする
export LANG=ja_JP.utf8

# 英語表記にする
export LANG=C

###SQLPLUSの文字コードを変更する

※oracleユーザーで以下を実行する

# UTF8にする
export NLS_LANG=Japanese_Japan.AL32UTF8

# SJISにする
export NLS_LANG=Japanese_Japan.JA16SJISTILDE

※exportをつけなくてもよいが、子プロセスまで反映させたい場合はexportをつける。
※再起動しても設定を保持したい場合は「.bash」か「.bash_profile」にこれを追記する

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?