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.
Author |
Topic |
Trudye
Posting Yak Master
169 Posts |
Posted - 2008-03-18 : 06:58:54
|
I am having a problem using the Bulk Insert task. I am getting the msg:SSIS package "Package.dtsx" starting.Error: 0xC002F304 at Bulk Insert Task, Bulk Insert Task: An error occurred with the following error message: "You do not have permission to use the bulk load statement.".Task failed: Bulk Insert TaskSSIS package "Package.dtsx" finished: Success.I have been granted ownership of the database. I also tried in one of my old databases that I just finisheddeveloping and I got the same msg.The file I am importing is comma delimited. I am importing it into a table that has 50 bytes allocation for each field (the max input field size is 40 bytes). The connection is solid;Format = “Specify”RowDelimiter = {CR}{LF}columnDelimiter = Comma {,}No other options are set. The data looks like:"tstLName","tstFname","000 N Tst DR","IDAHO sp","ID","00000000",Any ideas why I am getting this message? |
|
igorblackbelt
Constraint Violating Yak Guru
407 Posts |
Posted - 2008-03-18 : 09:21:13
|
I have been granted ownership of the database. I also tried in one of my old databases that I just finisheddeveloping and I got the same msg.You need sysadmin or bulkadmin permissions, refer to:http://msdn2.microsoft.com/en-us/library/aa225968(SQL.80).aspxOnly members of the sysadmin and bulkadmin fixed server roles can execute BULK INSERT. |
 |
|
Trudye
Posting Yak Master
169 Posts |
Posted - 2008-03-18 : 10:14:42
|
Thank you sooooo very much, you do good work at this site. Our whole crew is new to SQL Server so it's the blind leading the blind.Thanks again, |
 |
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2008-03-18 : 10:22:51
|
"Our whole crew is new to SQL Server so it's the blind leading the blind."Thats not good. You need to have atleast one Well-experienced DBA . |
 |
|
Trudye
Posting Yak Master
169 Posts |
Posted - 2008-03-19 : 16:41:38
|
I Agree |
 |
|
|
|
|