Forum Replies Created

Viewing 15 posts - 3,661 through 3,675 (of 5,111 total)

  • RE: SSRSColoring

    Considering you only have one criteria for red, otherwise Green:
    =iif(Fields!ColumnA.Value <> "tempdb" AND Fields!ColumnB.Value = "y" AND IsNothing(Fields!ColumnC.Value), "Red", "Green")
    You'll need to put this expression in each cell's...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor - Friday, June 16, 2017 9:30 AM

    Ed Wagner - Friday, June 16,...

  • RE: SFTP ERROR:

    SFTP isn't a standard task in SSIS. This sounds like you're using a custom task item, which has likely been built by a 3rd party. I would guess that the...

  • RE: Are the posted questions getting worse?

    Ed Wagner - Friday, June 16, 2017 5:27 AM

    It sounds so familiar.  A number of years ago, we has Toshiba laptops...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin - Friday, June 16, 2017 4:36 AM

    What type of machine are you using? Have you checked the brand's support...

  • RE: SSIS Precendence constraint question

    The flow to the SFTP File task doesn't need to be an OR, as only one task is flowing to it. If that flow doesn't evaluate to TRUE then the...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin - Friday, June 9, 2017 4:11 AM

    Thom A - Thursday, June 8, 2017 12:14 PM

  • RE: Are the posted questions getting worse?

    I feel totally foolish for posting this, but does anyone know where the touchpad scroll settings are in Windows 10?

    My touchpad has suddenly decided it wants to be...

  • RE: Wrong Alert?

    If you run the following, what do you get?
    DECLARE @Free_MB int;

    CREATE TABLE #Free
      (Drive char(1),
      Free_MB int);

    INSERT INTO #Free EXEC...

  • RE: Custom report timeout

    Just providing your query isn't going to tell us much. To list a "few" reasons it could be:

    • Your query is slow
    • The server is "busy" when you're trying to run the...
  • RE: Graph Tables - Thoughts?

    jonathan.crawford - Wednesday, May 24, 2017 1:42 PM

    Thom, I'm not sure I'm totally following you, and you are just now clueing me...

  • RE: how can i open .mdf files?

    You don't "open" an mdf file. you attach it to your SQL Server instance. Then you can access the data, functions, stored procedures, etc, etc via SQL.

  • RE: link to a mdf database

    Sounds like the Service Account SQL Server is running on does not have permission to access the folder. Check the Service accounts permissions, and grant it control of the folder...

  • RE: Check multiple condition in sql query

    Am I correct in reading that you have a datetime field for every column to store the datetime a field was last updated? So you have a table along the...

  • RE: Create a dataset from an existing dataset

    pietlinden - Tuesday, May 23, 2017 12:28 PM

    Don't think you need a new dataset. What you're describing sounds like you need a...

Viewing 15 posts - 3,661 through 3,675 (of 5,111 total)