I think you require to check through which user your application is connected to the Application. And then accordingly give the rights to that user.Since the Application will be using completely different set of different connectionsyou can login to your application and run the following query you will come to know which user your application is taking for logining to the SQL SERVER SELECT Hostname 'Connected User', db_name(dbid) 'Database', Program_Name, Count(Program_Name) 'Connections',LoginameFROM master.dbo.sysprocesses Where HostName <> '' And db_name(dbid) <> 'master' Group By Hostname, db_name(dbid), Program_Name,loginame
Chiraghttp://chirikworld.blogspot.com/