Viewing 11 posts - 1 through 11 (of 11 total)
Thanks, this does exactly what I was looking for.
October 21, 2013 at 5:31 am
select'account name' = domain+N'\'+name,
'type' = convert(varchar(8), case when sidtype = 1 then 'user' else 'group' end),
'privilege' = 'admin',
'mapped login name' = domain+N'\'+name,
'permission path' = 'DOMAIN\GROUPNAME'
from OpenRowset(NetGroupGetMembers, 'DOMAIN\GROUPNAME')
That is the code.
October 4, 2013 at 5:45 am
Yea, it is not performing so well. I wanted to at least give it a try and see how it affects the performance. I don't know if the...
August 28, 2013 at 9:45 am
I like synonyms over views. They can be fully automated for remote servers during a restore process. Since they have a standardized form and their data is in...
May 24, 2013 at 7:36 am
Yea, that'll be a problem. It's going to run slower in SSRS than in management studio. I think you are going to have to fix your query before...
January 5, 2013 at 10:51 am
I would suggest you try running the query in management studio first. See how long it takes, how many records it returns, how many columns, how wide is the...
January 5, 2013 at 10:23 am
The report has 31 million records? Or the database? If the report has 31 million records, I would suggest you either figure out a way to filter it...
January 5, 2013 at 9:35 am
I have written an article solving exactly this problem with a nice UDF. It is here: Nth Weekday of the Month
[/url]
December 14, 2012 at 7:59 am
What did you do? We are working on getting the enterprise edition setup, but in the meantime, we do not have data driven subscriptions :ermm:
December 3, 2012 at 11:10 am
I have also found that if you're having problems with headers (text boxes above the tablix(s)), you can just add rows above the tablix header row. Then you can...
November 19, 2012 at 11:55 am
Viewing 11 posts - 1 through 11 (of 11 total)