difference between datasetstage and sequential file stage

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
bhaggu
Participant
Posts: 14
Joined: Tue Jan 23, 2007 10:04 pm

difference between datasetstage and sequential file stage

Post by bhaggu »

hi can any one tell me the difference between dataset stage and sequential stage?
vmcburney
Participant
Posts: 3593
Joined: Thu Jan 23, 2003 5:25 pm
Location: Australia, Melbourne
Contact:

Post by vmcburney »

The dataset is the fastest way to save data from a parallel job to disk as it maintains the partitioning and metadata of the data. This makes it a good choice for staged data or reference data but they can only be written, read or used by DataStage jobs. Sequential files are plain text files with either delimited or fixed width columns that need to be imported from text to parallel data types and partitioned, so they are slower to read or write but they are a common format for exchanging data with other systems and other products.
dspxlearn
Premium Member
Premium Member
Posts: 291
Joined: Sat Sep 10, 2005 1:26 am

Post by dspxlearn »

This topic was discussed many times in this database and answered by the Gurus of Dsxchange.
Please search before posting. Personally, i learn't many thing by a 'simple' search.
Thanks and Regards!!
dspxlearn
bhaggu
Participant
Posts: 14
Joined: Tue Jan 23, 2007 10:04 pm

Post by bhaggu »

vmcburney wrote:The dataset is the fastest way to save data from a parallel job to disk as it maintains the partitioning and metadata of the data. This makes it a good choice for staged data or reference data but they can only be written, read or used by DataStage jobs. Sequential files are plain text files with either delimited or fixed width columns that need to be imported from text to parallel data types and partitioned, so they are slower to read or write but they are a common format for exchanging data with other systems and other products.
thank you very much
Post Reply