sayeed BAGBAN

sayeed BAGBAN

  • NA
  • 34
  • 8.2k

insert text files data in server using stored procedure c#

Mar 22 2013 12:59 AM
BULK INSERT dbo.Employees
FROM 'C:\Data\Employees.txt'----------select Dynamic Path--------
WITH
(
FIELDTERMINATOR = '|',
CHECK_CONSTRAINTS,
KEEPIDENTITY,
BATCHSIZE = 50
)

but how to add parameters and i should browse for any other selected path 

Can please any one help me out


Answers (1)