![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
is there way to 'dump' a string (varchar2) to the screen in hex? "this is a string" *would print something like "33 44 23 64 345 43 34 ..." *(I just made that up) We started using unicode and there are a few fields that should match but do not. *We have to see below the characters printed to the screen. *Something snuck in there. We tried using Toad's grid editor to look at this field, but it crumps. *Strange. select char_to_hex(field) from table; Thank you. 10g |
#3
| |||
| |||
|
|
is there way to 'dump' a string (varchar2) to the screen in hex? "this is a string" would print something like "33 44 23 64 345 43 34 ..." (I just made that up) We started using unicode and there are a few fields that should match but do not. We have to see below the characters printed to the screen. Something snuck in there. We tried using Toad's grid editor to look at this field, but it crumps. Strange. select char_to_hex(field) from table; Thank you. 10g |
#4
| |||
| |||
|
|
SQL> select dump('michel',16) from dual; DUMP('MICHEL',16) ------------------------------- Typ=96 Len=6: 6d,69,63,68,65,6c |
#5
| |||
| |||
|
|
is there way to 'dump' a string (varchar2) to the screen in hex? "this is a string" would print something like "33 44 23 64 345 43 34 ..." (I just made that up) We started using unicode and there are a few fields that should match but do not. We have to see below the characters printed to the screen. Something snuck in there. We tried using Toad's grid editor to look at this field, but it crumps. Strange. select char_to_hex(field) from table; Thank you. 10g select dump(column1,16) from tablea; |
#6
| |||
| |||
|
|
"okey"<oldyork90 (AT) yahoo (DOT) com> a écrit dans le message de news: 65276a89-c87b-408c-8975-abde2b69a1e4...oglegroups.com... | is there way to 'dump' a string (varchar2) to the screen in hex? | | "this is a string" would print something like "33 44 23 64 345 43 | 34 ..." (I just made that up) | | We started using unicode and there are a few fields that should match | but do not. We have to see below the characters printed to the | screen. Something snuck in there. | | We tried using Toad's grid editor to look at this field, but it | crumps. Strange. | | select char_to_hex(field) from table; | | Thank you. | 10g SQL> select dump('michel',16) from dual; DUMP('MICHEL',16) ------------------------------- Typ=96 Len=6: 6d,69,63,68,65,6c Regards Michel Oops - replied before reading all of the thread |
![]() |
| Thread Tools | |
| Display Modes | |
| |