Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Database Server Software > Oracle > Error buffer overflow when select the source from the database.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-18-03, 21:31
lynxee lynxee is offline
Registered User
 
Join Date: Sep 2003
Posts: 2
Red face Error buffer overflow when select the source from the database.

currently I am using the SQLPLUS:

Here i follow some of the archive article from this dbforums.

to see the source code directly from the database, type
SQL> SELECT * FROM USER_SOURCE WHERE OBJECT_NAME = 'PART_INSERTING870_PR';

then i encounter this error message;
ERROR at line 1:
ORA-00904: invalid column name

Then i describe the user_source;
SQL> desc USER_SOURCE;
Name Null? Type
------------------------------- -------- ----
NAME NOT NULL VARCHAR2(30)
TYPE NOT NULL VARCHAR2(12)
LINE NOT NULL NUMBER
TEXT VARCHAR2(4000)

After that i reselect again the source code:
SQL> SELECT * FROM USER_SOURCE WHERE NAME = 'PART_INSERTING870_PR';

then it prompt me this message;
buffer overflow. Use SET command to reduce ARRAYSIZE or increase MAXDATA.

I try set arraysize 100, but still got the same error message buffer overflow.

What should i do next in order for me to see this source code? Anyone can help me here.

Regards

Last edited by lynxee : 09-18-03 at 21:33.
Reply With Quote
  #2 (permalink)  
Old 09-18-03, 21:59
anacedent anacedent is offline
Registered User
 
Join Date: Aug 2003
Location: Where the Surf Meets the Turf @Del Mar, CA
Posts: 3,570
set arraysize 1
Reply With Quote
  #3 (permalink)  
Old 09-18-03, 22:31
lynxee lynxee is offline
Registered User
 
Join Date: Sep 2003
Posts: 2
Cool

i've done the arraysize 1 but still the same.

Nevermind i got the answer already after i try the command below:
set line 200
set pagesize 1000
set arraysize 1

Thanks
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On