I have a BULK INSERT command as below
BULK INSERT slave_tab
FROM 'C:\Documents and Settings\INTEL1\Desktop\exampledata.txt'
WITH
(
FIELDTERMINATOR ='^',
ROWTERMINATOR ='^$'
its working fine...
I need to pass the file 'C:\Documents and Settings\INTEL1\Desktop\exampledata.txt' as the parameter of an Stored Procedure...how can I do it...
exampledata.txt' contains a string of data as below...
677^5678^hhh^44^$5566^5678^hgg^33^$777^5678^fg^55^$666^5678^ff^333^$
Thanks!