How are you gonna convert 8000k of text into a text file?Is this an MS Word Merge?OK, Do thisCREATE a View of the columns you want from the tableWhen you get to the description column do thisCREATE TABLE myTable99(Col1 int IDENTITY(1,1), [description] text)GO INSERT INTO myTable99([description])SELECT REPLICATE('x',8000) UNION ALLSELECT REPLICATE('y',8000) UNION ALLSELECT REPLICATE('z',8000)GOSELECT * FROM myTable99GOCREATE VIEW myView99AS SELECT Col1 , SUBSTRING(description,1,8000) AS description FROM myTable99GOSELECT * FROM myView99GODECLARE @cmd varchar(8000)SET @cmd = 'bcp northwind.dbo.myView99 OUT d:\myView99.txt -c -T -S<your server name>'EXEC master..xp_cmdshell @cmdGO-- Go to the D Root and look at your text file...DROP VIEW myView99DROP TABLE myTable99GOBrett8-)Hint: Want your questions answered fast? Follow the direction in this linkhttp://weblogs.sqlteam.com/brettk/archive/2005/05/25/5276.aspxAdd yourself!http://www.frappr.com/sqlteam