- 論壇徽章:
- 0
|
1> select @@version
2> go
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Adaptive Server Enterprise/15.0.3/EBF 16555 ESD#1/P/Linux Intel/Linux 2.6.9-42.
ELsmp i686/ase1503/2680/32-bit/FBO/Thu Mar 5 04:50:21 2009
1> sp_configure 'character'
2> go
Msg 17411, Level 16, State 1:
Server 'cms', Procedure 'sp_configure', Line 291:
Configuration option is not unique.
Parameter Name Default Memory Used Config Value
Run Value Unit Type
------------------------------ ----------- ----------- ------------
------------ -------------------- ----------
default character set id 1 0 190
190 id static
disable character set conversi 0 0 0
0 switch static
(1 row affected)
(return status = 1)
1> sp_configure 'sort'
2> go
Msg 17411, Level 16, State 1:
Server 'cms', Procedure 'sp_configure', Line 291:
Configuration option is not unique.
Parameter Name Default Memory Used Config Value
Run Value Unit Type
------------------------------ ----------- ----------- ------------
------------ -------------------- ----------
default sortorder id 50 0 52
52 id static
default unicode sortorder binary 0 binary
binary name static
default xml sortorder binary 0 binary
binary name static
enable sort-merge join and JTC 0 0 0
0 switch dynamic
number of sort buffers 500 0 500
500 number dynamic
(1 row affected)
(return status = 1)
1> insert into cs_test values('b如家a')
2> go
(1 row affected)
1> insert into cs_test values('a如家b')
2> go
(1 row affected)
1> insert into cs_test values('如家')
2> go
Msg 105, Level 15, State 2:
Server 'cms', Line 1:
Unclosed quote before the character string '如家')
'.
Msg 102, Level 15, State 1:
Server 'cms', Line 1:
Incorrect syntax near '如家')
'.
1> insert into cs_test values("如家")
2> go
Msg 105, Level 15, State 2:
Server 'cms', Line 1:
Unclosed quote before the character string '如家")
'.
Msg 102, Level 15, State 1:
Server 'cms', Line 1:
Incorrect syntax near '如家")
'.
1> insert into cs_test values("如家c")
2> go
(1 row affected)
1> select * from cs_test
2> go
name
--------------------
錦江
錦江
A錦江
a錦江
B錦江
b錦江
a如家a
b如家a
a如家b
如家c
(10 rows affected) |
|