I have written a program in VB.NET, which connects to one of our SQL Server. The connection is needed, because on the database are some stored procedure, which have to be execute.
But the problem is, that I can't run any stored procedure. I think the reason of the problem is, that the user doesn't have permissions to run any stored procedure on the database.
I have create the database on the SQL Server without any permission configuration.
The connections string on my program is like:
Data Source=SQL01;Initial Catalog=DB;Integrated Security=True
My clients, which use my program are domain users.
Now my question: is there a possibility that I can define a this Active Directory user, which should have permission to execute any store procedure on to the database?
Thank you!