|
请看:
E:\>sqlplus
SQL*Plus: Release 8.0.4.0.0 - Production on Fri Dec 7 15:44:58 2001
(c) Copyright 1997 Oracle Corporation. All rights reserved.
Enter user-name: tst
Enter password:
Connected to:
Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.0.0 - Production
SQL> create table tst(tt varchar2(9));
Table created.
SQL> insert into tst values('中文测试');
1 row created.
E:\>svrmgrl
Oracle Server Manager Release 3.1.5.0.0 - Production
(c) Copyright 1997, Oracle Corporation. All Rights Reserved.
Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.0.0 - Production
SVRMGR> connect tst
Password:
Connected.
SVRMGR> select * from tst;
TT
---------
╓╨╬─▓Γ╩╘r
1 row selected.
SVRMGR>
对了,我在SVRMGRL下不可选择输入法只有默认的EN,但在SQLPLUS下可以。 |
|