Assuming you've got a table built to receive the text data, you can drop it in from QA like this:
BULK INSERT 'destinationtablename' FROM 'location of text file'
WITH (datafiletype = 'char',
fieldterminator = ',',
rowterminator = '\n')
You may have to tweak this a bit, depending on the datatype, terminators, etc.
Use the Books Online section covering Bulk Insert for specs.