Viewing 15 posts - 2,236 through 2,250 (of 6,104 total)
As Ian indicates, a view defintion is stored in the user database. The master database stores information on the databases themselves and the logins to SQL Server (whether SQL Server...
K. Brian Kelley
@kbriankelley
March 16, 2006 at 10:48 am
The solution Greg gives works to identify the objects. It queries every database to see what objects the login actually owns.
The sp_change_users_login is used to reassociate disconnected user accounts with...
K. Brian Kelley
@kbriankelley
March 16, 2006 at 10:46 am
Per processor licensing means an unlimited # of users. Per seat is where you have to count heads.
K. Brian Kelley
@kbriankelley
March 16, 2006 at 10:43 am
Error string: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection."
This would indicate you're connecting with an account that is either untrusted (from a...
K. Brian Kelley
@kbriankelley
March 16, 2006 at 10:42 am
LiteSpeed has a command line utility which can expand a Lightspeed backup into a "normal" SQL Server backup. If you use it, is it able to read the backup file...
K. Brian Kelley
@kbriankelley
March 15, 2006 at 12:00 pm
You could do the local account, thing, yes. However, a more feasible solution might be to install an SSL certificate and force encryption on the connection. Is that an option?...
K. Brian Kelley
@kbriankelley
March 15, 2006 at 11:57 am
Looks like everything is okay on the permissions side. The job steps that are failing... are they making calls to the same SQL Server where the package is running (as...
K. Brian Kelley
@kbriankelley
March 15, 2006 at 10:57 am
Who is the job owner? If not sa, is that job owner in the sysadmin fixed server role?
K. Brian Kelley
@kbriankelley
March 15, 2006 at 10:03 am
By default, yes, but the method of "encryption" is very, very weak. Check the following:
SQL Server Security: Login Weaknesses
K. Brian Kelley
@kbriankelley
March 15, 2006 at 10:01 am
If you mean how do you return all rows where address2 is null, you can do something like:
SELECT address1 FROM yourTable WHERE address2 IS NULL
If you mean how can you get address1,...
K. Brian Kelley
@kbriankelley
March 15, 2006 at 7:49 am
When you log in as TestUser and go to the database, if you execute the following query, what user is returned?
SELECT USER_NAME()
K. Brian Kelley
@kbriankelley
March 2, 2006 at 9:43 pm
Not if the login to SQL Server is done using a SQL Server login. That's the issue at hand. When a SQL Server login is used, no Windows account information...
K. Brian Kelley
@kbriankelley
March 2, 2006 at 9:34 am
Is TestUser a member of any other group? If you look at the OS level, is TUsers a member of the local administrators group?
K. Brian Kelley
@kbriankelley
March 2, 2006 at 9:33 am
You know, when all is said and done, you should write this up as an article and submit it to Steve.... names omitted or changed to protect the innocent, of...
K. Brian Kelley
@kbriankelley
March 1, 2006 at 2:57 pm
Follow the principle of least privilege. Give the proxy account only what rights are absolutely necessary. If it needs access to a particular directory, grant it access to that directory,...
K. Brian Kelley
@kbriankelley
March 1, 2006 at 2:31 pm
Viewing 15 posts - 2,236 through 2,250 (of 6,104 total)