Forum Replies Created

Viewing 15 posts - 31 through 45 (of 55 total)

  • Reply To: Are the posted questions getting worse?

    Steve Jones - SSC Editor wrote:

    I wonder if more of us ought to be using UTC or at least datetimeoffset for applications. There are more and more that are crossing time zones and it...

  • Reply To: Conditional Stop of Azure SSIS Integration Runtime

    You should be able to do this from a Logic App which would allow you to handle the error that the IR is already stopped.  The Logic App could use...

  • Reply To: Trying to see all records

    Reading your original post again and assuming something from the view names, I suspect that you want to swap the tables and put all_clients_view first.  I am guessing that you...

  • Reply To: Trying to see all records

    Try 'left outer join' instead of 'inner join'

  • RE: Issue with midnight in stored procedure

    lucaskhall - Friday, December 14, 2018 12:38 PM

    This is the application code that is generated when the stored procedure is called and...

  • RE: Concurrency in System Versioned Temporal Tables

    Interesting to come across this today, little behind on these emails.  Easy to answer because we just ran into this in our production application a couple of weeks ago and...

  • RE: Transaction Replication Collation error

    An update: I went back and created a subscriber to another SQL Server 2012 instance (so both Publication and Subscription were on the same version of SQL Server) and everything...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (10/10/2016)


    And then there's this golden nugget:

    When there are extra columns within the database, the system will perform poorly.

    Ummm. Hrrrr. So how do I remove those pesky extra...

  • RE: Link Server with AS400 Data Issue

    Have the AS/400 developers look at the field definitions with DSPFFD command. It sounds like they may be defined with a CCSID of 65535 which means it is hex...

  • RE: SSRS - Creating subscription is slow

    Does the report have parameters that get their available values from datasets? If so, those datasets have to be populated when it loads. That could explain why it...

  • RE: NaN Value in SSRS Report

    Maybe it really isn't 0 in that textbox. You might have to use IsNothing instead of comparing to zero. Just adjust the IIf based on what is really...

  • RE: NaN Value in SSRS Report

    Then just wrap it with IIf as so

    =IIf(reportitems!Textbox103.Value = 0, 0, CDBL(reportitems!Textbox33.Value) / CDBL(reportitems!Textbox103.Value)

    +CDBL(reportitems!Textbox34.Value) / CDBL(reportitems!Textbox103.Value)

    +CDBL(reportitems!Textbox35.Value) / CDBL(reportitems!Textbox103.Value)

    +CDBL(reportitems!Textbox36.Value) / CDBL(reportitems!Textbox103.Value))

    Untested syntax but I think correct, It puts 0 is the...

  • RE: NaN Value in SSRS Report

    Are you getting that because reportitems!Textbox103.Value is zero? You should us IIf to make sure that value is not zero before doing the calculation do you don't divide by...

  • RE: maximum request length exceeded 2012

    Siten0308 (12/23/2015)


    <httpRuntime executionTimeout="9000" maxRequestLength="900000" />

    Are you changing this in the Report Manager or Report Server Web.config file, I think you want the Report Manager one which would be at...

  • RE: Conditional visibility of parameters

    That is still true. The closest I have been able to do, when the parameters are drop-downs is to use a query to populate the values. When they...

Viewing 15 posts - 31 through 45 (of 55 total)