Hi,
Am having, some doubt, please clarify this?
1. Using Import/Export wizard, can i able to import the excel data into the temporary table ? How ?
2. The following TSQL is working fine. Can i able to do this, from the CLIENT Machine itself. I don't want to login to my server and going to the D drive, copying this CSV file to get the work done. I don't want this steps.
[B] BULK INSERT ##Updation FROM 'd:\Types.csv' WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n',
KEEPIDENTITY
)
[/B]
Please clarify my two doubt. Thanks in advance.