Viewing 15 posts - 391 through 405 (of 6,105 total)
I agree with George here. Create a Windows group strictly for the DBAs. Use that group to manage the SQL Servers. That prevents anyone from having to know the sa...
March 17, 2010 at 12:06 pm
As per the article, the SQL Server Integration Services service does not support Kerberos delegation. Therefore, there is no SPN available for the SSIS side. For configuring a SQL Server...
March 17, 2010 at 12:03 pm
TravisDBA (2/10/2010)
Restoring backups or copying and attaching files as a way of gaining access to someone's data has been virtually eliminated through TDE. If you attempt either operations on an...
February 10, 2010 at 8:54 am
TravisDBA (2/9/2010)
February 9, 2010 at 7:53 am
Steve Jones - Editor (2/9/2010)
February 9, 2010 at 7:51 am
Keep in mind that with securables, permissions are inherited. So if I grant EXECUTE at the schema level, then the user has EXECUTE rights on all stored procedures within that...
January 5, 2010 at 12:29 pm
INNER JOIN is going to filter out data. This should do it:
January 5, 2010 at 11:11 am
There should be no restriction from an xp_cmdshell perspective. Can you get other xp_cmdshell commands to run, like dir c:\, and the like? Also, are you using the exact same...
January 5, 2010 at 7:57 am
Yes. Take a look at sys.database_permissions.
January 5, 2010 at 7:53 am
Then you will need to use sp_changeobjectowner to change the ownership of the object, if that's the case. A simple script will do this. Something like this should build the...
December 5, 2009 at 10:15 am
Do you mean it's a member of the db_owner role?
If that's the case, you must specify the owner during object creation. For instance:
CREATE TABLE dbo.Foo (Moo int);
GO
December 4, 2009 at 12:33 pm
Server side trace is your only option. My recommendation is to schedule the downtime, make the password change, and update the systems. You'll spend a whole lot less time doing...
November 24, 2009 at 9:15 am
If you have locked yourself out of SQL Server, look at single-user mode. As far as retrieving passwords? Can't be done. SQL Server stores a hash of the password, not...
November 24, 2009 at 9:13 am
Unless you go to a situation where Windows services like SQL Server Agent can use SQL Server-based logins, Windows authentication is going to be required. Sorry, that's the way it...
November 20, 2009 at 12:16 pm
Gary Istvan Varga (11/10/2009)
November 10, 2009 at 9:42 am
Viewing 15 posts - 391 through 405 (of 6,105 total)