top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How can one dump/ examine the exact content of a database column?

0 votes
193 views
How can one dump/ examine the exact content of a database column?
posted Jun 23, 2015 by Vidhya Sagar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
    SELECT DUMP(col1)
    FROM tab1
    WHERE cond1 = val1;

    DUMP(COL1)
    -------------------------------------
    Typ=96 Len=4: 65,66,67,32

For this example the type is 96, indicating CHAR, and the last byte in the column is 32, which is the ASCII code for a space. This tells us that this column is blank-padded.

answer Jun 24, 2015 by Arun Gowda
...