Viewing 15 posts - 6,166 through 6,180 (of 13,469 total)
the solutions is fairly simple, but it varies a bit based on your specific setup. it all boils down to the group or login needs to be part of the...
December 27, 2011 at 4:51 pm
wait...everyone knows there's ten reindeer;
the original 8,
plus Rudolph,
plus Olive, the other reindeer!
December 27, 2011 at 1:10 pm
try this example, one line at a time; it should help you see how no permissions, all permissions, and then deny for a specific user will work.
USE [SandBox]
GO
--I'm currently logged...
December 27, 2011 at 12:35 am
I end up going to as many e programming or SQL Server related events as I can, like the SQL Rally not long ago, or some of the one day...
December 26, 2011 at 9:59 pm
offhand, i can think of three different ways so far.
ideally, you do it via permissions...if the only permissions you grant is SELECT, they cannot do anything else.
since DENY trumps other...
December 26, 2011 at 9:48 pm
i didn't se the specific error , just the "it fails" part even though it's set up right elsewhere;
typically that's due to permissions.
whever calls the sp_send_dbmail needs to be a...
December 26, 2011 at 8:44 pm
bitbucket-25253 (12/24/2011)
TallyCalendar_Complete_With_DST.txt
Lowell -Fantastic amount of work - from a IT standpoint thanks for sharing - Glad you were willing to...
December 26, 2011 at 1:00 pm
see if either of these extended stored procedure examples help:
EXEC master..xp_logininfo
@acctname = 'mydomain\lowell',
@option = 'all' -- Show all paths a user gets his auth from
go
EXEC master..xp_logininfo
@acctname = 'mydomain\authenticatedusers',
@option...
December 24, 2011 at 6:56 pm
ok, it's time to play...
NAME...THAT...VENDOR!
December 23, 2011 at 12:14 pm
this is really misleading, because when you click SSMS(NOT logging in to object explorer or a query window), you launch it as yourself...probably someone who certainly can stop and start...
December 23, 2011 at 11:26 am
perfect Gail, that was exactly the push i needed.
Thank you so much!
December 23, 2011 at 8:35 am
your are confusing the two possible presentation styles of SSMS with how the actual results end up in your other .NET application...they are not the same.
you get a record...
December 23, 2011 at 6:42 am
run sp_who2 again...based on the hostname column, is it all from a single machine, maybe even your own machine, since that's the only one you KNOW is running SSMS?
December 23, 2011 at 6:07 am
wierd, on my 2008 server all my connections from SSMS say "Microsoft SQL Server Management Studio - Query" or
"Microsoft SQL Server Management Studio" ...none reference intellisense.
do you have a...
December 22, 2011 at 5:27 am
try explicitly identifying a collation for the join criteria, like this:
SELECT Customers.dbo.Lead.Last_Evaluation_Product__c
FROM Customers.dbo.Product
INNER JOIN
Customers.dbo.Lead
ON Customers.dbo.Lead.Last_Evaluation_Product__c COLLATE SQL_Latin1_General_CP1_CI_AS
= Customers.dbo.Product.Name COLLATE SQL_Latin1_General_CP1_CI_AS
WHERE (Customers.dbo.Lead.IsConverted = 0)
AND...
December 21, 2011 at 3:01 pm
Viewing 15 posts - 6,166 through 6,180 (of 13,469 total)