InfoSphere DataStage File Set, DataSet and Sequential File Are they Same?

InfoSphere DataStage has 3 different Stages which can be used to create files on the System. File Set Stage, DataSet and Sequential File Stage.

Fileset:  InfoSphere® DataStage® can generate and name exported files, write them to their destination, and list the files it has generated in a file whose extension is, by convention, .fs. The data files and the file that lists them are called a file set. This capability is useful because some operating systems impose a 2 GB limit on the size of a file and you need to distribute files among nodes to prevent overruns. The amount of data that can be stored in each destination data file is limited by the characteristics of the file system and the amount of free disk space available. The number of files created by a file set depends on:
Sequential File Stage: It is a file stage which allows you to read data from or write data one or more flat files. The stage can have a single input link or a single output link, and a single rejects link.
The stage executes in parallel mode if reading multiple files but executes sequentially if it is only reading one file. By default a complete file will be read by a single node (although each node might read more than one file). For fixed-width files you can configure the stage to behave differently:
The stage executes in parallel if writing to multiple files, but executes sequentially if writing to a single file. Each node writes to a single file, but a node can write more than one file.When reading or writing a flat file, InfoSphere® DataStage® needs to know something about the format of the file. The information required is how the file is divided into rows and how rows are divided into columns.

Dataset Stage: It is also a file stage which allows you to read data from or write data to a data set. The stage can have a single input link or a single output link. It can be configured to execute in parallel or sequential mode. The Data Set stage allows you to store data being operated on in a persistent form, which can then be used by other InfoSphere® DataStage® jobs. Data sets are operating system files, each referred to by a control file, which by convention has the suffix .ds. Using data sets wisely can be key to good performance in a set of linked jobs.
-Ritesh
Disclaimer: The postings on this site are my own and don't necessarily represent IBM's positions, strategies or opinions