Viewing 15 posts - 826 through 840 (of 6,105 total)
This is will tell you what SQL Server logins have either turned off:
SELECT name
FROM sys.sql_logins
WHERE is_policy_checked = 0
OR is_expiration_checked = 0
November 18, 2008 at 2:31 pm
If you grant their Windows user account a login directly (not through the group), do you see the same issue?
November 18, 2008 at 12:41 pm
Are you able to connect from a remote system using your account (I'm assuming you're running as a sysadmin level account)? The reason I ask is that Developer Edition for...
November 18, 2008 at 11:21 am
Greg Edwards (11/18/2008)
November 18, 2008 at 11:18 am
Sandesh (11/18/2008)
November 18, 2008 at 11:15 am
I'm guessing you're using xp_cmdshell to access the folder? If so, it'll be the SQL Server service account which needs privileges if this procedure is called by someone with sysadmin...
November 18, 2008 at 9:09 am
Greg Edwards (11/17/2008)
We have port on MSSQLsvc with both netbios and FQDN and are running fine.What are the SPN's without the port for?
We have MSOLAPsvc.3 setup without port numbers.
Greg E
If...
November 17, 2008 at 4:25 pm
Greg Edwards (11/17/2008)
Note that to create an SPN,...
November 17, 2008 at 4:17 pm
Yes, you can. You can grant a Windows user or group access to SQL Server as a login. This is a good starting point from Books Online:
I know...
November 17, 2008 at 4:07 pm
If there aren't any changes to the port configuration, then there are basically 4 SPNs you have to have set up (I'm assuming no changes to the port configuration):
MSSQLSvc/*NetBIOS Name*...
November 17, 2008 at 9:52 am
As previously indicated, if you have any logins which are a member of the sysadmin fixed server role, those logins can reset the password either by using sp_password or ALTER...
November 17, 2008 at 9:49 am
Erin (11/17/2008)
I'm not sure how...
November 17, 2008 at 9:45 am
No, I got that point, I think you might be missing mine. I'm not debating which method to use. The tally table/set-based one is clearly superior. I was speaking to...
November 15, 2008 at 7:52 pm
Jeff Moden (11/15/2008)
November 15, 2008 at 7:08 pm
Viewing 15 posts - 826 through 840 (of 6,105 total)