Forum Replies Created

Viewing 15 posts - 1,996 through 2,010 (of 3,489 total)

  • RE: ssrs 2008 sort data based upon parameter value

    Can't you just use Interactive Sorting? (I am pretty sure it's in SSRS 2008, but I haven't used 2008 in a long time, esp. R1)

    Right-click on column header row (with...

  • RE: How to get SQL job as a fresher?

    If you can, buy a copy of SQL Server Developer. It costs about $60 US, which is an absolute steal. While there is a cap on the size of...

  • RE: Slow as stored procedure, fast as T-SQL script in SSMS

    I would start by reading Kendra Little's article, which is here[/url].

    You might use the WITH RECOMPILE hint to force the generation of a new execution plan, but read her article...

  • RE: DAX for distinct value?

    "I have a model with two fact tables. There's a one to many relationship between them."

    Begging your pardon, but shouldn't the two fact tables just share common dimensions? I don't...

  • RE: Using JOINs with GROUP BYs

    So what was your question?

    From the looks of it, you have a typo... or several. You can use joins, but your SQL has some typos.

    customers <> custimers

    orders <> order

    SELECT...

  • RE: Ad hoc user reporting

    Apologies if I'm repeating myself. Here's one way of exploring what your best options are...

    Since your target users are already Excel folks, either PowerPivot or PowerBI sounds like the...

  • RE: sql and stored procedure

    ... that way I can tell my boss that second monitor really is required!

  • RE: Ad hoc user reporting

    You could always restore a read-only copy of your database and let your users connect to that... then at least the two databases would be separate... if you ran a...

  • RE: Why am I only getting zeros for a some of my columns?

    What if you change the formatting to some kind of decimal? If SSRS is rounding behind the scenes and the numbers are less than .5, then they may be rounding...

  • RE: SSRS Expression

    Young Jedi,

    A LEFT/RIGHT/OUTER join is "lossless". In other words, you'll get NULLs propagated on the "outside" table if you use an outer join. It's the way outer joins are...

  • RE: SSRS Expression

    oh, use "" instead.

  • RE: Ad hoc user reporting

    There are several options...

    If they're already good at Excel, you might try either PowerPivot or PowerBI Desktop. I would lean toward PowerBI Desktop. If you have something like...

  • RE: SSRS Expression

    I need =Parameters!FundId.Value if this equals Fields!Fund_Name.Value than show =Parameters!FundId.Value

    =IIF(Fields!Fund_Name.Value = Parameters!FundID.Value,Parameters!FundID.Value,NULL)

    ?

  • RE: how to export and import table single table in databe

    Since you're new, maybe this won't hurt... watching Grant Fritchey explain it and walk you through it...

  • RE: Is there a way to make the value entered in preview, be saved?

    Probably the easiest way is to (temporarily) set those values as the defaults for the respective fields. If you want the same values tested over and over again, because...

Viewing 15 posts - 1,996 through 2,010 (of 3,489 total)