1
Reply

insert text files data in server using stored procedure c#

Ask a question
sayeed BAGBAN

sayeed BAGBAN

11y
1.6k
1
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)