Hi All
I have a table with one column :
CREATE TABLE test2
( a char(15)
primary KEY CLUSTERED )
The column a is filled with encrypted data
(contains control and extended characters).
On my test, the select statement for one row
in table test2 does not always work sucessfully.
Below is my unsucessful statement for the second
row followed by 9 rows data. Each row is displayed
in 2 versions, text and VB ascii code.
select * from test2
where a = '\0<[\
|^[\]}{;\'
----------
Row-1
%;>.[
,)]/\-,=/
37;59;62;46;91; 10;44;41;93;47; 92;45;44;61;47;
Row-2
\0<[\
|^[\]}{;\
92;48;60;91;92; 10;124;94;91;92 ;93;125;123;59; 92;
Row-3
\0<[\,)?{=\?
92;48;60;91;92; 11;44;41;63;3;1 23;127;61;92;63 ;
Row-4
\0<[\\%:_`-]_
92;48;60;91;92; 11;92;37;58;95; 96;45;5;93;95;
Row-5
\0<[\\^:&}{;\
92;48;60;91;92; 11;92;94;58;38; 7;125;123;59;92 ;
Row-6
\0[*_1>\_\}{@+
92;48;91;42;95; 49;62;92;95;92; 7;125;123;64;43 ;
Row-7
].>^/.]-=}<)^&
93;46;62;94;47; 46;8;93;45;61;1 25;60;41;94;38;
Row-8
]0_^{
}^~_|~{^_
93;48;95;94;123 ;10;125;94;126; 95;124;126;123; 94;95;
Row-9
{
}{31{2|02~||
123;10;125;123; 127;51;49;123;5 0;124;48;50;126 ;124;124;
-------------
I have 3 questions for all of you :
- Why SQL2000 can not find the second row (certain row)?
- Can SQL2000 handle character 0 to 255 ?
- Does my encrypted method produce bad data for SQL2000?
Thanks in advance
Anita Hery
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
I have a table with one column :
CREATE TABLE test2
( a char(15)
primary KEY CLUSTERED )
The column a is filled with encrypted data
(contains control and extended characters).
On my test, the select statement for one row
in table test2 does not always work sucessfully.
Below is my unsucessful statement for the second
row followed by 9 rows data. Each row is displayed
in 2 versions, text and VB ascii code.
select * from test2
where a = '\0<[\
|^[\]}{;\'
----------
Row-1
%;>.[
,)]/\-,=/
37;59;62;46;91; 10;44;41;93;47; 92;45;44;61;47;
Row-2
\0<[\
|^[\]}{;\
92;48;60;91;92; 10;124;94;91;92 ;93;125;123;59; 92;
Row-3
\0<[\,)?{=\?
92;48;60;91;92; 11;44;41;63;3;1 23;127;61;92;63 ;
Row-4
\0<[\\%:_`-]_
92;48;60;91;92; 11;92;37;58;95; 96;45;5;93;95;
Row-5
\0<[\\^:&}{;\
92;48;60;91;92; 11;92;94;58;38; 7;125;123;59;92 ;
Row-6
\0[*_1>\_\}{@+
92;48;91;42;95; 49;62;92;95;92; 7;125;123;64;43 ;
Row-7
].>^/.]-=}<)^&
93;46;62;94;47; 46;8;93;45;61;1 25;60;41;94;38;
Row-8
]0_^{
}^~_|~{^_
93;48;95;94;123 ;10;125;94;126; 95;124;126;123; 94;95;
Row-9
{
}{31{2|02~||
123;10;125;123; 127;51;49;123;5 0;124;48;50;126 ;124;124;
-------------
I have 3 questions for all of you :
- Why SQL2000 can not find the second row (certain row)?
- Can SQL2000 handle character 0 to 255 ?
- Does my encrypted method produce bad data for SQL2000?
Thanks in advance
Anita Hery
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Comment