Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 5,109 total)

  • RE: SSRS Report does NOT Build or RUN

    Are you trying to run the report, or preview it (you state "RUN", however, the dialogue says preview, which is confusing)? Generally, with SSRS, you use Preview on a report;...

  • RE: Why Haven’t You Upgraded SQL Server?

    Jeff Moden - Wednesday, March 7, 2018 7:48 AM

    I still want to know why Mr. Britton has 100,000 instances. 😉

    Obviously more money...

  • RE: Substitute for HTML-tables

    I really don't know what you're trying to say here I'm afraid.

    You need to (probably) provide some sample data here (Saying my data is "like" this doesn't mean...

  • RE: Run an FTP package from stored Procedure

    On it's own, error message 31089 doesn't mean a lot. As you're running this in the SSISDB, the logs will tell you far more information. Have a look at these...

  • RE: SQL Server Table Corruption Error

    What do you mean my "tried to open"? You don't open a .mdf file, you have to attach it to the Instance. What steps did you take to get the...

  • RE: Run SSIS from SSMS

    SSIS tasks have to be run using Windows Authentication; they cannot be run by SQL Logins. EXECUTE AS does not even get around this; as that is impersonation it's not...

  • RE: Are the posted questions getting worse?

    jasona.work - Monday, February 19, 2018 6:16 AM

    Well, get ready for a bunch of new vulns in computers this year...
    Someone leaked a...

  • RE: Catch custom error:

    There's no logic to cause that error, that's why. you're setting the value of the error message, but you're not raising one; and your INSERT statement (as far as we...

  • RE: SQL Server fior Windows 7

    Also depends what you're trying to do. Developer edition is for, as the name suggests, development. The licence agreement means you can't use it for any production/live work. If you...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor - Friday, February 16, 2018 8:48 AM

    I bet it was. Lots of work being done at MS...

  • RE: Are the posted questions getting worse?

    Hmm, another interesting tool they've added to SSMS 17.5. SQL Data Discovery and Classification.

    Data Discovery & Classification introduces a new tool built into SQL Server...

  • RE: Help me with for Xml path()

    JoNTSQLSrv - Thursday, February 15, 2018 11:41 AM

    Hi Thom A ,

     I am getting below error 

    Msg 208, Level 16, State 1,...

  • RE: Help me with for Xml path()

    Little more ugly (well, a lot more), someone might have a better answer, however, this works XML_1_3 logic:

    WITH StartEnd AS(
      SELECT t.[TYPE], t.BATCH_NO, t.Xml_name,
       ...

  • RE: Help me with for Xml path()

    JoNTSQLSrv - Thursday, February 15, 2018 10:03 AM

    Hi Thom A, 

     Actually it is like ID 1 and 2 into 1 xml_name so...

  • RE: Help me with for Xml path()

    There a lot of guesswork on this, but, perhaps...

    WITH Groupings AS(
      SELECT DISTINCT s.ID, t.[TYPE], t.BATCH_NO, t.Xml_name, s.bank, s.[name]
      FROM #temp t
        CROSS APPLY...

Viewing 15 posts - 2,206 through 2,220 (of 5,109 total)