Viewing 7 posts - 16 through 22 (of 22 total)
Of course, the devil's in the details. What they don't say is what they use each class of server for. Just because the NYSE has requirements of low...
April 21, 2010 at 9:10 am
I think to truly support walls in the middle of the grid, you'd need to change how you encode the maze. I thought of one such encoding using bit...
January 18, 2010 at 7:48 am
If it's a 10x10 grid and the robot gets 200 moves, wouldn't an optimal solution be to traverse the grid in a zig-zag pattern (i.e. left-to-right across row 1, go...
January 15, 2010 at 3:16 pm
I like the following a bit better as you don't have to find out how many rows you're going to affect before affecting them. YMMV.
declare @rowcount int
set @rowcount =...
July 3, 2008 at 5:48 am
I've had the same problem and got an answer from an MVP saying that it's the intended behavior. I don't understand that as this breaks the functionality of sp_...
August 28, 2007 at 9:59 pm
This should be what DENY is for. Because the user is a sysadmin, you shouldn't have to explicitly grant anything, but the DENY would, well, deny them the ability...
August 21, 2007 at 3:34 am
The following query should get you what you want:
select
role.name,
member.name
from
sys.server_role_members rm
inner join
sys.server_principals member
on
...
July 31, 2007 at 8:32 pm
Viewing 7 posts - 16 through 22 (of 22 total)