Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
bhavna
Starting Member
6 Posts |
Posted - 2008-12-12 : 14:43:48
|
| Hi,I have following query to replace : with carriage return.Can anybody help me?select CALL_ID ,IVR_DNIS, REPLACE(IVR_ADMIN.fnParseArray(MAPPING,':'),':',CHAR(13) + CHAR(10)) "MAPPING"from IVR_ADMIN.IVR_CALL_DATA cdorder by cd.IVR_DNIS, cd.IVR_ANI-Bhavna |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
bhavna
Starting Member
6 Posts |
Posted - 2008-12-12 : 15:12:55
|
| Hi,I am not using any other application to represnt. I am using this SQL Query which uses the fnParseArray function. So, I have to represent either using the function or this SQL query and need of Carriage return in place of :-Bhavna |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-13 : 00:35:34
|
| what does this give you?SELECT REPLACE(MAPPING,':',CHAR(13) + CHAR(10)) FROM table... |
 |
|
|
|
|
|