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
 General SQL Server Forums
 New to SQL Server Programming
 BULK INSERT

Author  Topic 

avmreddy17
Posting Yak Master

180 Posts

Posted - 2007-09-12 : 18:39:47
I have a SQL Server Login and I added this User to the
BULK Insert Administrators Server Role , but still I get the
following error

Server: Msg 4834, Level 16, State 1, Line 1
You do not have permission to use the BULK INSERT statement.

Any thoughts

Thx
Reddy

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2007-09-12 : 18:52:07
From SQL Server 2005 BOL:

quote:

Permissions
Requires INSERT and ADMINISTER BULK OPERATIONS permissions. Additionally, ALTER TABLE permission is required if one or more of the following is true:

Constraints exist and the CHECK_CONSTRAINTS option is not specified.

Note:
Disabling constraints is the default behavior. To check constraints explicitly, use the CHECK_CONSTRAINTS option.



Triggers exist and the FIRE_TRIGGER option is not specified.

Note:
By default, triggers are not fired. To fire triggers explicitly, use the FIRE_TRIGGER option.



You use the KEEPIDENTITY option to import identity value from data file.




Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/
Go to Top of Page
   

- Advertisement -