Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Dynamic Sql based on Parameter in SSRS

    Why not use something like this:

    ="Select * FROM blablabla WHERE" + IIF(@region = null, " (employee = " + @employee + ")", IIF(@employee = null, " region = "...

  • RE: A query which has 16 joins

    Did you try to update the appropriate statistics for the columns used in the query.I'm sure that will help your query to be faster by 5 times atleast.

Viewing 2 posts - 1 through 2 (of 2 total)