Hello everyone,
I am using DB2 SOUNDEX function, it works fine for me except in case i am passing a single character numeric value such as in following example
Select SOUNDEX('1') from SYSIBM.SYSDUMMY1;
Output Values are random such as
'.121' -- Execution 1
'.122' -- Execution 2
'.621' -- Execution 3
I get different values on executing the same statment multilpe times.
Please help me in ensuring that result always comes out same for above query. Also i am very interested in finding out why DB2 is behaving this way?
Appreciate any help
Much Thanks,
AB