Viewing 15 posts - 331 through 345 (of 6,105 total)
Let's take these in order:
1. Yes, using triggers you can enforce encryption on the fields without modifying the application. However, as Seth has pointed out, you get stuck trying to...
July 15, 2010 at 9:02 am
Denesh Naidoo (6/24/2010)
I have a SQL 2008 Enterprize Edition server on a Domain.
I have certain Doamin users that are added to the Local Administrator group on this server. When...
July 15, 2010 at 8:53 am
Nice Marmot (7/7/2010)
July 15, 2010 at 8:49 am
The issue that you're facing is something called ownership chaining. Normally it's a good thing because it means I can use a stored procedure to reference a base table and...
July 15, 2010 at 8:43 am
There is nothing specific at the database level which can be used to restrict such access. Within SQL Server (and only 2005 SP2 and up) you're limited to a LOGON...
July 15, 2010 at 8:37 am
I don't believe so from the server's perspective, but that doesn't mean some other process isn't.
I'd do this in development first:
- Use file permissions to block access to osql
-...
June 9, 2010 at 9:37 am
This is a name resolution issue (networking configuration related). Give him the IP address and have him try to connect via IP,port. If he's able to do so, then he...
June 9, 2010 at 7:52 am
No.
When the connection is made to SQL Server, based on the way the login packet is structured, only the SQL Server login information is passed. There's no support for...
June 8, 2010 at 8:24 am
Do you have a PKI infrastructure within your organization? If not, what might be a better option is to use an IPSEC policy to configure a secure channel on the...
May 21, 2010 at 7:10 pm
Try this... create a SQL login that has access to both databases. Give it specific access to what it needs in both database #1 and database #2. You can even...
May 21, 2010 at 7:08 pm
securitypanda (5/21/2010)
u need a proxy.
Credentials are a better solution in SQL Server 2005/2008. They can be tightened down per actual login.
May 21, 2010 at 7:54 am
What was tried?
May 11, 2010 at 7:07 pm
If your account is a member of the sysadmin fixed server role, here are the execution contexts:
- Stored procedure run from SSMS -> your user context
- Stored procedure run by...
May 11, 2010 at 7:06 pm
box4garbage (5/11/2010)
May 11, 2010 at 2:20 pm
The securityadmin fixed server role only has the ability to grant permissions at the database level, which roughly corresponds to CONNECT DATABASE and the like. Assigning users to roles is...
May 11, 2010 at 1:34 pm
Viewing 15 posts - 331 through 345 (of 6,105 total)