Viewing 15 posts - 556 through 570 (of 726 total)
Glad to hear that localizing the lookup tables helped.
As for the lookups as joins, this is an intelligent guess at best, without knowing or having access to everything. As an...
April 6, 2007 at 1:24 pm
The table size is smaller than I was expecting, so that's a good thing. I still think that turning those lookups into joins with local tables will help. For example,...
April 6, 2007 at 10:58 am
I'm confused why this blows up on you. We use hidden parameters quite frequently, for things like userid, etc., and also dynamically build the datasets of the other dropdowns based...
April 6, 2007 at 10:26 am
If I'm understanding you correctly, then sure (untested, so likely a logic error or two):
DECLARE
@strSelectedCity varchar(50)
SET
@strSelectedCity = 'FairField'
SELECT
XCode
,City
FROM
City_Table
ORDER BY
CASE WHEN City = @strSelectedCity THEN 0 ELSE 1 END
,XCode
Edit: Note that...
April 6, 2007 at 10:20 am
I barely know where to start.
A couple of things.
How many rows are in [V_DM GM_Sales Primary Contact Info]?
Is your data,...
April 6, 2007 at 10:13 am
If I'm following you correctly, there are two basic options off the top of my head. You can write a big ol' CASE statement inline, to handle each of the...
April 6, 2007 at 9:56 am
Then just denormalize it. Join the tables together and create a group on employee in the report itself.
April 6, 2007 at 12:22 am
Magy, it depends (don't you love that answer?), as some things, such as aggregate functions, can safely deal with Nulls by ignoring them. But yes, 2 + Null = Null.
April 5, 2007 at 12:40 pm
Sure, but without knowing more about your data you'll need to build it yourself. You basically want to select from the archive table where there is no match in your...
April 5, 2007 at 12:37 pm
If Reporting Services, including Report Manager (the IIS portion) is installed on the same server as your production database, and if my memory doesn't fail me, I think you're fine....
April 5, 2007 at 9:42 am
Have you tried using SQL Logins in your datasource?
April 5, 2007 at 9:37 am
If I am understanding you correctly, I'd denormalize the results and then use grouping in the report to accomplish what you want. I am slightly confused though. Do you have...
April 5, 2007 at 9:25 am
Why do you want to raise an error if there is a value in the column? If you don't want that value, just don't bring it across. What are the...
April 3, 2007 at 8:50 pm
Jeff, that answer was detailed enough that I'll buy you a beer, if you're ever in the Atlanta area, even though it wasn't my question.
April 3, 2007 at 8:01 pm
Viewing 15 posts - 556 through 570 (of 726 total)