Viewing 15 posts - 8,176 through 8,190 (of 18,926 total)
I don't know what else to tell you... same plan should give same results and pathway to results.
I've never seen that outside of having 2 plans cached.
Anyway you can reproduce...
March 3, 2010 at 6:39 am
please post the exact code you are using to call the sps.
...if one calls the sp like this exec usp_whatever
while the second one uses any variation dbo.usp.. Usp_
that will...
March 2, 2010 at 8:34 pm
from bol 2008
COUNT(ALL expression) evaluates expression for each row in a group and returns the number of nonnull values.
COUNT(DISTINCT expression) evaluates expression for each row in a group and returns...
March 2, 2010 at 11:52 am
well 1/ null will surele give null if not an error.
also count(null) has a different behavior than you might expect... please read bol for the full details.
March 2, 2010 at 10:22 am
I would consider using the report viewer control since I've seen an app that we couldn't copy the data (other than typing it out).
I don't know how secure you need...
February 25, 2010 at 5:36 am
Do a search for concatenation in the scripts sections and you'll find what you need for that.
Now another problem you'll face is that you'll need to sort before you concatenate......
February 24, 2010 at 8:21 pm
or another more manual way
step one.
Select username, MAX(CASE WHEN Permissions = 'user' THEN 'User' ELSE NULL END) As User, , MAX(CASE WHEN Permissions = 'reporter' THEN 'reporter' ELSE NULL END)...
February 24, 2010 at 7:11 pm
Check out pivot in BOLs.
Once you've pivoted the data your resultset would look like
user, perm1, perm2, perm3....
Then it's only a matter of doing a group by all perms and counting...
February 24, 2010 at 7:08 pm
First time I ever hear of that. Any article on how to do this?
February 24, 2010 at 12:28 pm
What do you mean by deploy remotely?
I guess plan B would be to host the reports on our own servers but then we have to download the databases to our...
February 24, 2010 at 6:19 am
I was personally talking about the rdl definition... protecting against intellectual property theft. I know the data belongs to the client so I want him to be able to...
February 23, 2010 at 10:18 am
Paul White (2/18/2010)
Oh for the sake of small fluffy bunnies!!!!I've blanked my post - can I get on with my life now?
Thanks
:w00t:
Who am I to decide that for you?
Why do...
February 18, 2010 at 10:39 am
That post from bru as the first reply would have taken the edge off my *** feeling :
Can I forward the links in the interview ?
There are a dozen...
February 18, 2010 at 7:46 am
It makes me laugh too because I now know he's kidding and that the poster is trying to screw with the system.
However if I'm a propfessional googling for an answer...
February 18, 2010 at 7:17 am
...maybe but the fact still remains, when you read that thread without knowing what's going on you look like jerks and it's not inviting at all.
I know you're totally right...
February 17, 2010 at 8:16 am
Viewing 15 posts - 8,176 through 8,190 (of 18,926 total)