select replace(CN_QUESTION_OR_TXT, chr(0), )
from somedb.test_small_table
Toreplace the end-of-data characters with line breaks:
select replace(CN_QUESTION_OR_TXT, chr(0), chr(10))
from somedb.test_small_table
This will give you an indication of the number of end-of-data characters within the data.
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center