You have several options, depending upon your performance, ease-of-use, and maintainability requirements.
If you have LabVIEW 7.0 or greater, the easiest thing to do is use the LVM Express VI to stream data to disk. You can also read it back using the LVM Read VI. LVM is a text spreadsheet format, so is very slow and very compatible with just about anything for reading it. You won't lose your data by forgetting the format. However, from your brief description, I would not recommend this due to the low performance and difficulty to read single columns back in (LVM caches the whole data file in memory when reading for performance reasons - it assumes low point counts).
Option two is to stream data to disk as an interleaved string of binary values. This is your highest performance write option, but readback of a single column is somewhat difficult since the data is interleaved. A variant on this is to stream to 10 separate files at once. It will be slower, but read back is much simpler.
Option three, if you have access to it, is to use NI-HWS. This is probably your best option, since it allows you to store 10 independent waveforms in the same file at high speed and retrieve them by name. Unfortunately, it is only distributed with the computer-based instruments (scopes, arbs, and high-speed digital), so you may not have it.
Option four, if you are into pain, is to use the precurser to NI-HWS - sfpFile. You can get this from ni.com by searching for it. It offers more functionality than NI-HWS, but is much harder to use. Both it and NI-HWS are based on HDF5, a self-describing, cross-platform, binary file format developed by the National Center for Supercomputing Applications specifically for fast, hierarchical data storage.
What you pick will depend on what you really need. Answer these questions and you will be on your way. What speed do you need to save data? Are you constantly streaming or taking the data, then saving it? How do you need to access it when you are done? Will you need to access it several months from now when you have forgotten how you saved it?
If you need more help, post more info and we can move you in the right direction.