- 论坛徽章:
- 0
|
本帖最后由 bcthe 于 2010-03-22 06:22 编辑
可以把贴图抓下来啊。贴上来。
renxiao2003 发表于 2010-03-20 19:49 ![]()
要請教你,Oracle certified master, 不會不用中字吧?
你那NLS_CHARACTERSET AS UTF8 AND NLS_NCHAR_CHARACTERSET as AL16UTF16.
是如何設定呢?
在那個file?
Last login: Mon Mar 22 01:31:19 on ttys000
macyl:~ macyl$ uname -r
9.7.0
macyl:~ macyl$ uname -a
Darwin macyl.local 9.7.0 Darwin Kernel Version 9.7.0: Sat May 16 12:00:42 AST 2009; Based on Voodoo : xnu-1228.12.14/BUILD/obj/RELEASE_I386 i386
macyl:~ macyl$ su - oracle
Password:
macyl:~ oracle$ sqlplus
SQL*Plus: Release 10.2.0.4.0 - Production on Mon Mar 22 06:17:43 2010
Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
Enter user-name: sys
Enter password:
ERROR:
ORA-01017: invalid username/password; logon denied
Enter user-name: system
Enter password:
ERROR:
ORA-28000: the account is locked
Enter user-name: ^C
macyl:~ oracle$ sqlplus /nolog
SQL*Plus: Release 10.2.0.4.0 - Production on Mon Mar 22 06:21:46 2010
Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
SQL> conn / as sysdba
Connected.
SQL> select * from tbl1;
INFO
--------------------
testing
??????
SQL> insert into tbl1 values ('可以把贴图抓下来');
insert into tbl1 values ('可以把贴图抓下来')
*
ERROR at line 1:
ORA-12899: value too large for column "SYS"."TBL1"."INFO" (actual: 72, maximum:
20)
SQL> insert into tbl1 values ('可以把贴');
insert into tbl1 values ('可以把贴')
*
ERROR at line 1:
ORA-12899: value too large for column "SYS"."TBL1"."INFO" (actual: 36, maximum:
20)
SQL> insert into tbl1 values ('可以');
1 row created.
SQL> select * from tbl1;
INFO
--------------------
testing
??????
SQL> |
|