Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

importing external data

Status
Not open for further replies.

Dimitrie1

Programmer
Jan 5, 2007
138
CA
I need to import external data - daily for about 6 months. I'd like to automate this process.

I've tried bulk insert, openqueryrow, ssis --- nothing is working - any ideas.
 
We do many many imports daily with SSIS, that is one of it's main jobs.

I think it will be hard to help you without more detail. What is the error you are getting?

"NOTHING is more important in a database than integrity." ESquared
 
I'm trying to use a bulk insert
it doesn't error it just says 0 rows affected.

when I used SSIS I couldn't find the package in SQL Management Studio. If I saved it to my desktop it errored when trying to run - sorry I don't remember the msg, something about permissions
 
thanks

this is my current code
Code:
BULK INSERT  .
#morecheques    FROM '\\server\path\Test_Subsequent.csv'
with
(
firstrow = 2,
fieldterminator = '\t',
rowterminator = '\n'
)
[\code]

it doesn't error but it tells me 0 rows affected.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top