![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? |
#3
| |||
| |||
|
|
Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? |
#4
| |||
| |||
|
|
Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? |
#5
| |||
| |||
|
|
Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? |
#6
| |||
| |||
|
|
On Mar 4, 1:18*pm, "ame... (AT) iwc (DOT) net" <ame... (AT) iwc (DOT) net> wrote: Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? Had you taken the time to read the documentation on UTL_FILE you'd realize that the FOPEN call accepts a MAX_LINESIZE parameter, which, if not supplied, defaults to 1024: http://download.oracle.com/docs/cd/B.../b14258/u_file... Examining Example 2 on that page explains much. The problem, therefore, isn't with the PUT_LINE call but in how you opened the file. David Fitzjarrell |
#7
| |||
| |||
|
|
On Mar 4, 1:18*pm, "ame... (AT) iwc (DOT) net" <ame... (AT) iwc (DOT) net> wrote: Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? Had you taken the time to read the documentation on UTL_FILE you'd realize that the FOPEN call accepts a MAX_LINESIZE parameter, which, if not supplied, defaults to 1024: http://download.oracle.com/docs/cd/B.../b14258/u_file... Examining Example 2 on that page explains much. The problem, therefore, isn't with the PUT_LINE call but in how you opened the file. David Fitzjarrell |
#8
| |||
| |||
|
|
On Mar 4, 1:18*pm, "ame... (AT) iwc (DOT) net" <ame... (AT) iwc (DOT) net> wrote: Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? Had you taken the time to read the documentation on UTL_FILE you'd realize that the FOPEN call accepts a MAX_LINESIZE parameter, which, if not supplied, defaults to 1024: http://download.oracle.com/docs/cd/B.../b14258/u_file... Examining Example 2 on that page explains much. The problem, therefore, isn't with the PUT_LINE call but in how you opened the file. David Fitzjarrell |
#9
| |||
| |||
|
|
On Mar 4, 1:18*pm, "ame... (AT) iwc (DOT) net" <ame... (AT) iwc (DOT) net> wrote: Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). *I print it to a log file. *However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? Had you taken the time to read the documentation on UTL_FILE you'd realize that the FOPEN call accepts a MAX_LINESIZE parameter, which, if not supplied, defaults to 1024: http://download.oracle.com/docs/cd/B.../b14258/u_file... Examining Example 2 on that page explains much. The problem, therefore, isn't with the PUT_LINE call but in how you opened the file. David Fitzjarrell |
#10
| |||
| |||
|
|
On Mar 4, 1:18 pm, "ame... (AT) iwc (DOT) net" <ame... (AT) iwc (DOT) net> wrote: Does UTL_FILE.PUT_LINE have a limitation on the length of the string you are printing to file? I have a variable declares, VARCHAR2(4000). I print it to a log file. However, I have figured out that if I print more than 1000 characters, the procedure just stops...... Anyone? Had you taken the time to read the documentation on UTL_FILE you'd realize that the FOPEN call accepts a MAX_LINESIZE parameter, which, if not supplied, defaults to 1024: http://download.oracle.com/docs/cd/B...e.htm#i1005018 Examining Example 2 on that page explains much. The problem, therefore, isn't with the PUT_LINE call but in how you opened the file. David Fitzjarrell |
![]() |
| Thread Tools | |
| Display Modes | |
| |