SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 

Get list of files from dir and put in table

By Neil Jacobson, 2002/02/01

Total article views: 1673 | Views in the last 30 days: 10

This stored procedure reads the file names from a directory and stores just the names in a given table. It returns also the number of files present. The sp uses xp_cmdshell and so permissions are restricted to sysadmins and SQLAgentCmdExec. You can test with the following: Create Table ##tmp2 ( fldx nvarchar(255) ) Declare @FilePath nvarchar(2048) , @tblName nvarchar(255) , @FileCount int Set Nocount on Select @FilePath = 'C:\Test1' , @tblName = '##tmp2' , @FileCount = 0 EXEC master.dbo.sp_DirFiles @FilePath , @tblName , @FileCount OUTPUT Select * From ##tmp2 select 'Filecount = ', @FileCount drop table ##tmp2

By Neil Jacobson, 2002/02/01

Total article views: 1673 | Views in the last 30 days: 10
Your response
 
 
Related tags
 
Already registered?  

Free registration required

To read the rest of this article, and access thousands of other articles, we ask you to register on the site and subscribe to our newsletters.

Register

E-mail address:
Password:
Password (confirm):

  

Subscriptions

We ask you to register on the site and subscribe to our newsletters. Subscribing to our newsletters gets you:

  • ALL of our content (thousands of articles, scripts, and forum postings)
  • A daily newsletter (example)
  • A weekly news round up (example)
  • The opportunity to ask and answer questions in our forums
  • A daily Question of the Day to test and help you increase your knowledge of SQL Server.

We ask that you give the newsletter a try for a week. Over 200,000 SQL Server Professionals a day find it entertaining and useful. If not, you are welcome to unsubscribe at anytime.

Steve Jones
Editor, SQLServerCentral.com