0
votes
1answer
72 views
SQL Server: Find out which users have write access to which tables?
In SQL Server 7.0, I need to find out which users have write access to which tables in a particular database.
I know that I can do this in Enterprise Manager by going through each …
0
votes
3answers
636 views
Hibernate: Is there a way to programatically create new tables that resemble an existing one?
I have a web app that have many tables (each represents a POJO). I wrote mapping files for each class and then use Hibernate's SchemaExport to generate the tables in my database. N …
3
votes
2answers
81 views
What permissions should SQL Server User be granted for LinqToSql?
I am using LinqToSQL and a trusted connection to handle database selects/updates/inserts/deletes. In the past I have always used stored procedures and only granted execute permiss …
1
vote
3answers
128 views
Database Permission Structure
Many of my employers applications share a similar internal permission structure for restricting data to a specific set of users or groups. Groups can also be nested.
The problem w …
0
votes
1answer
185 views
how to set permissions for sql database?
I'm trying to host an asp.net website using iis 5.1 on my computer using xp pro.
I'm using windows authentication in iis.
Folder permissions for the site are set to allow authenti …
0
votes
2answers
236 views
Is Oracle DBA Privilege include “CREATE ANY TABLE” role???
I Just need to create table from a user to any user under the same DB.
letz consider 3 Schemas.
Schema_1,Schema_2 and Schema_3.
schema 1 had DBA Privilege.
Is it possible to tab …
3
votes
2answers
591 views
The error “Login failed for user ‘NT AUTHORITY\IUSR’” in ASP.NET and SQL Server 2008
My ASP.NET v3.5 web application is throwing the following exception when it attempts to open a connection to a SQL Server 2008 database:
System.Data.SqlClient.SqlException:
C …
0
votes
1answer
186 views
How do I check which schemata have been granted EXECUTE permission on an Oracle object?
I need to find out which schemata have already been granted execute permission on a certain object in an Oracle 10g db (in this case, a package). What's the simplest way for me to …
2
votes
4answers
399 views
Postgresql: is better using multiple databases with 1 schema each, or 1 database with multiple schemas?
After this comment to a my question, im thinking if is better using 1 database with X schemas or viceversa.
My situation: im developing a web-app where, when people do register, i …
0
votes
2answers
78 views
what is the minimum access level on a sql server the asp.net membership need?
for security reason, what is the minimum access level the asp.net membership user could have?
0
votes
3answers
208 views
SQL Permissions to Add data and how to verify?
Hi All,
I'm looking for a good way to maintain permissions on who can add data to a database in a C# app and SQL Server 2005.
I need to explain though to make this clear. So let' …
3
votes
6answers
770 views
ASP.Net Membership.DeleteUser
In testing, the user on a db i've used was a big jefe. in production, he only has Execute.
When i called
Membership.DeleteUser(user)
in testing, it worked.
I try the same in …
0
votes
3answers
264 views
Grant permission to only a view
Hello everyone.
I have one user in my database, and I want to grant to him permission to read only one view, nothing more, no tables, nothing.
How can I do this?
Thanks a lot.
…
1
vote
3answers
218 views
How do you store database credentials in typical CMS build on PHP?
What's the best practice to store database credentials in a CMS? Now i declare them in my Database singleton class:
$this->credentials = array("hostname"=>"hostname", "username"=> …
0
votes
1answer
472 views
Permission rights for SQL login accessing Database for ASP.Net Application
I always wonder what are the exact access rights and permissions I need to give to a sql login which I use from my asp.net application to access database. The application execute s …
