Hi,
I am tryin to run the store procedure which has bulk insert command.when i run the code,it says you don't have permission to use bulk insert command. This query/storeprocedure is running succesfully in the backend(sqlserver2000).
solution is only user in Bulkadmin role has permission for bulk insert .But i don't know how to create one and use it in asp.net.
Can anyone help me in this. ..Here is the code.
string conn_string1 =@."Data Source=SENTHIL\TEST;Initial Catalog=EMPLOYEE;Integrated Security=SSPI";SqlConnection objconn1=
new SqlConnection(conn_string1);objconn1.Open();
SqlCommand command1=
new SqlCommand("bulkinsert",objconn1);command1.CommandType=CommandType.StoredProcedure;
command1.ExecuteNonQuery();
Response.Write("Stored procedure excecuted");
objconn1.Close();
thanks,
kar
In http://msdn2.microsoft.com/en-us/library/ms188365.aspx
Requires INSERT and ADMINISTER BULKOPERATIONS permissions. Additionally, ALTER TABLE permission isrequired if one or more of the following is true:
Constraints exist and the CHECK_CONSTRAINTS option is not specified.
No comments:
Post a Comment