Friday, June 3, 2016

How to create directory (Folder ) using SOL Server?

//Create Folder in SQLServer command

declare @Path varchar(100)
set @Path = 'c:\test'
EXEC master.dbo.xp_create_subdir @Path

No comments: