> -----Original Message----- > From: Tony [mailto:[EMAIL PROTECTED] > Sent: Monday, November 14, 2005 12:54 PM > To: CF-Talk > Subject: Re: big reports, 13k lines > > hmmmm, not sure how to do the one thing you said, > > > SELECT A.Col1 + "," + A.Col2 + "," + A.Col3 AS Row
This just selects all those columns as a single column, already comma-seprated. Then your conversion just loops once over the rows rather than over each row. > but, the problem is, the data comes to cf, for some processing, some logic > and other stuff, it isnt just a straight dump :( Yeah - then you can't do much... but you MIGHT get better performance using Query of Query (using the above) rather than loops. Just building a very specific conversion routine for this query (eliminating all the loops) would also help a lot - but it wouldn't be as portable. I'm not sure tho'. > see, one of the problems im having is the server is very busy while this > is all > happening. I guess it all depends on the resources available... if you've got the scratch setting up a reporting server to do just that task would definitely help! Jim Davis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:224109 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

