Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Bulk Import across servers

Author  Topic 

Looper
Yak Posting Veteran

68 Posts

Posted - 2008-04-29 : 10:10:21
I have an application (.Net 2.0) that bulk imports a comma separated file into sql 2000. The app is currently on the database server, but what I want to know is can I install the app on another server i.e. my web server and the bulk import will still work, as I have been told it needs to be on the database server?

bulk import code i am currently using:
'BULK INSERT t_TImport_Untyped FROM ''' + @FileLocation + ''' WITH (CODEPAGE = ''Raw'',FIELDTERMINATOR = '','', ROWTERMINATOR = '',\n'')'

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-04-30 : 11:30:29
This is the BULKINSERT available within sql server itself.

http://msdn.microsoft.com/en-us/library/ms188365.aspx
Go to Top of Page
   

- Advertisement -