xrealloc: cannot reallocate (23523666) bytes


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting xrealloc: cannot reallocate (23523666) bytes
# 1  
Old 02-09-2010
xrealloc: cannot reallocate (23523666) bytes

Hi,
I have a lengthy shell script and when I try to run it, It takes a lot of time and for about 25-30 mins and outputs this message xrealloc: cannot reallocate (23523666) bytes (0 bytes allocated). Along with this it is also displaying two other error messages. One is it is saying the (function name) command not found, even when I have the function defined with the same name. The other one says (file name) ambiguous redirect.

Thanks for your help,
Nagin.
# 2  
Old 02-09-2010
Operating System?
Shell?
Command (or cron) used to invoke the script?
Content of the script?
Exact error messages as displayed on the screen or in (which?) error log?
# 3  
Old 02-09-2010
Quote:
Originally Posted by methyl
Operating System?
The OS is 2.4.21-51.ELhugemem

Quote:
Shell?
/bin/zsh

Quote:
Command (or cron) used to invoke the script?
I am just kicking off the scripting at the prompt by passing parameters manually.

Quote:
Content of the script?
I have a few functions defined on top of the script, some of these functions have sqlplus calls to the database and at the bottom I am calling those scripts

Quote:
Exact error messages as displayed on the screen or in (which?) error log?
xrealloc: cannot reallocate 2514719488 bytes (0 bytes allocated)
Function 1: command not found
Function 2: command not found
${FILE_NAME}: ambiguous redirect
Function 3: command not found
Function 4: command not found
Function 5: command not found
# 4  
Old 02-09-2010
Not possible for me to diagnose this problem based on the information given. This is Linux not unix.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to reallocate the deleted logfile space?

Hi All, I know this is a simple question but i am not sure the exact answer it. Here is the question: There is a huge log file , if we delete the log file ,how the corresponding occupied file memory relocate to Hard Disk. Thanks Srinivas (3 Replies)
Discussion started by: Srinivas Gadi
3 Replies

2. What is on Your Mind?

Definition of Bytes

A byte is the smallest unit of storage which can be accessed in a computer's memory- either in RAM or ROM.It also holds exactly 8 bits.But its old view one byte was sufficient to hold one 8 bit character.Modern days especially on .NET or international versions of Win 32, 16 bits is needed. ... (2 Replies)
Discussion started by: stoudtLion
2 Replies

3. Shell Programming and Scripting

Get file's first x bytes

is there a better way to do this: head -c 10000k /var/dump.log | head -c 6000k unfortunately, the "-c" option is not available on sun solaris. so i'm looking at "dd". but i dont know how to use it to achieve the same exact goal as the above head command. this needs to work on both solaris... (5 Replies)
Discussion started by: SkySmart
5 Replies

4. Shell Programming and Scripting

Shell script - entered input(1-40 bytes) needs to be converted exactly 40 bytes

hello, suppose, entered input is of 1-40 bytes, i need it to be converted to 40 bytes exactly. example: if i have entered my name anywhere between 1-40 i want it to be stored with 40 bytes exactly. enter your name: donald duck (this is of 11 bytes) expected is as below - display 11... (3 Replies)
Discussion started by: shravan.300
3 Replies

5. UNIX for Dummies Questions & Answers

X bytes of 0, Y bytes of random data, Z bytes of 5, T bytes of 1. ??

Hello guys. I really hope someone will help me with this one.. So, I have to write this script who: - creates a file home/student/vmdisk of 10 mb - formats that file to ext3 - mounts that partition to /mnt/partition - creates a file /mnt/partition/data. In this file, there will... (1 Reply)
Discussion started by: razolo13
1 Replies

6. Programming

Copying 1024 bytes data in 3-bytes chunk

Hi, If I want to copy a 1024 byte data stream in to the target location in 3-bytes chunk, I guess I can use the following script. dd bs=1024 count=3 if=/src of=/dest But, I would like to know, how to do it via a C program. I have tried this with memcpy(), that did not help. (3 Replies)
Discussion started by: royalibrahim
3 Replies

7. Shell Programming and Scripting

Error PHP Fatal error: Allowed memory size of 67108864 bytes exhausted(tried to allocate 401 bytes)

While running script I am getting an error like Few lines in data are not being processed. After googling it I came to know that adding such line would give some memory to it ini_set("memory_limit","64M"); my input file size is 1 GB. Is that memory limit is based on RAM we have on... (1 Reply)
Discussion started by: elamurugu
1 Replies

8. Shell Programming and Scripting

Printing bytes

Hi, I have packed fields for which I am trying to print bytes. when I try cut -b2 it does print the 2nd byte besides that it also prints additional byte that I am not aware off:confused: data looks something like this Input: 135 246 when I try cut -b2 it gives me 30 4A but I... (12 Replies)
Discussion started by: ahmedwaseem2000
12 Replies

9. UNIX for Dummies Questions & Answers

Files with zero bytes

Hi All, I want to find zero byte files in the given folder for the given day. I know we can use find . -size 0 -mtime 0 But is there an option for file creation.? ls -lart | grep ' 0 Apr 24' will also work. Also is there any alternative using awk ? I want to know how to use awk in... (1 Reply)
Discussion started by: preethgideon
1 Replies

10. Shell Programming and Scripting

Remove first N bytes and last N bytes from a binary file on AIX.

Hi all, Does anybody know or guide me on how to remove the first N bytes and the last N bytes from a binary file? Is there any AWK or SED or any command that I can use to achieve this? Your help is greatly appreciated!! Best Regards, Naveen. (1 Reply)
Discussion started by: naveendronavall
1 Replies
Login or Register to Ask a Question