Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
pithhelmet
Posting Yak Master
183 Posts |
Posted - 2007-11-19 : 16:23:44
|
Hi everyone -I need to get a list of all files in a directory and put the list into a database table.Currently I am using a DOS command (dir) that executes from within the stored procedure via a xp_cmdshell commandThis works fine for the smaller number of items in the directories,but this one directory has 250k items, and just to do an interactive dos DIR command takes a little over 5 minutes to display all the filenames.Does anyone have any other ideas on how to get the actual filenames on the hard drive?thankstony |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2007-11-19 : 16:25:54
|
That is how you would do it inside T-SQL. You should reconsider displaying 250,000 items though. No human can process that amount of data very quickly without a program.Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/ |
 |
|
|
|
|