If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > Output spooling

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-07-06, 23:59
nandinir nandinir is offline
Registered User
 
Join Date: Jul 2005
Posts: 276
Output spooling

Can anyone please give me an idea as to what Output spooling is. I tried looking up online but not clear about the concept yet. Any help in this regard is greatly appreciated.

Thanks,
Asmitha
Reply With Quote
  #2 (permalink)  
Old 09-08-06, 03:43
Tyveleyn Tyveleyn is offline
Registered User
 
Join Date: Aug 2006
Location: The Netherlands
Posts: 248
Hi, since SPOOL stands for "Simultaneous Peripheral Operations On-Line" it implies that jobs have to be buffered (in memory or on disk) first to be able to be executed correctly. Usually it's associated with IO from/to devices because these things operate a lot slower of course than the 'executioner', i.e print spooling (on disk) in a printer queue.
I would take 'output spooling' as a general form of buffering (in memory), which also can take place between processes, like in this series of commands
Code:
cat textfile | sort
where the output of 'cat' has to be buffered first before 'sort' can operate on it's data.

Regards
Reply With Quote
  #3 (permalink)  
Old 09-08-06, 12:32
nandinir nandinir is offline
Registered User
 
Join Date: Jul 2005
Posts: 276
Thank you so much Tyveleyn.

Regards,
Asmitha
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

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