|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
Replace Line Breaks?
I imported some data that includes a bunch of '[CR-LF]' strings where there should be line breaks. I know I can just use
UPDATE table SET column = REPLACE(column, '[CR-LF]', <something>); To get rid of them, but what is the syntax to insert a line break?? TIA. |
|
#2
|
|||
|
|||
|
UPDATE table SET column = REPLACE(column, '[CR-LF]', chr(13) );
|
|
#3
|
|||
|
|||
|
Thanks! It turns out I actually needed CRLFs in the data, so I used:
UPDATE table SET column = REPLACE(column, '[CR-LF]', chr(13)||chr(10) ); |
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > Replace Line Breaks? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|