-
I would like to update stored procedures on multiple connections at once using database task. The problem is that DB Task seem to not persist line brakes in SQL code. Example script:
When I check task log i see all the SQL code unformatted, on one line, which is exactly the same as I see using SHOW CREATE Log:
What should I do to persist line breaks? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I found the issue, it is caused by mix of Carrige Return and Line Feed in the script, CRLF works, but CR does not. See link |
Beta Was this translation helpful? Give feedback.
-
Resolved |
Beta Was this translation helpful? Give feedback.
I found the issue, it is caused by mix of Carrige Return and Line Feed in the script, CRLF works, but CR does not.
See link