NLS
我用下面的SQL(結構化查詢語言)查詢語句從Oracle數據庫中檢索數據
macdev::/mac/HAHTsite [
select * from tmpbo where no_inf_ad =
我運行查詢語句
sqlplus www/www < t
在該文件上執行more命令時
如何解決這個問題?
配置信息
操作系統
版本
硬件系統
系列
應用程序
解決方法
你可以用下面的腳本打開一個本地hpterm窗口
#!/bin/ksh
# Open a hpterm to use iso
LANG=fr_FR
export LANG
hpterm
由於Oracle輸出中沒有顯示控制字符
Problem Description
I am retrieving data from an Oracle database with this SQL (Structured
Query Language) query:
macdev::/mac/HAHTsite [
I run the query to send the output to a file:
sqlplus www/www < t
When I do a more on that file
How can I resolve this problem?
Configuration Info
Operating System
Version
Hardware System
Series
Application
Solution
You can resolve your problem by using the following script to open a localized hpterm window
#!/bin/ksh
# Open a hpterm to use iso
LANG=fr_FR
export LANG
hpterm
Since there are no display control characters in the Oracle output
From:http://tw.wingwit.com/Article/program/Oracle/201311/17788.html