Forum Replies Created

Viewing 15 posts - 1,531 through 1,545 (of 2,905 total)

  • Reply To: problem in running total

    Can you post some DDL?  We have no sample data to go off of and your query that you have there doesn't have an end to it or a FROM...

  • Reply To: Indexing help

    It depends.  The order for the index is the order it is "ordered" in the table.  So if you order it by col1 and col2, it is REALLY by col1...

  • Reply To: SSMS not responding

    Do you have any 3rd party plugins installed (ApexSQL, RedGate, etc)?

    I had a weird conflict with ApexSQL Model + ApexSQL Refactor + RedGate SQL Prompt.  Had to remove the ApexSQL...

  • Reply To: Is RS 2019 compatible with MSSQL 2014?

    Something to note - if you don't have a visual studio subscription, I am pretty sure that SSRS is going to require a license to use, as will SQL Server. ...

  • Reply To: Is RS 2019 compatible with MSSQL 2014?

    Is there a reason you aren't installing SQL Server 2019 as the instance for SSRS 2019?

    But as for compatability, I can't see why it wouldn't work.  What error are you...

  • Reply To: Attempt to access expired blob handle occurred in tmpilb.cpp:2650

    My approach to this - what changed since this was working 100% of the time?  If this was always working until you installed CU21, then it is likely a bug...

  • Reply To: Getting the Remote URL in Git

    I like option 3 of blank.  And the fact some people picked that.

    But this is a good one to know if you don't have a Git GUI.

  • Reply To: Stuff xml path query

    Heh, I wouldn't say I am "smarter", I would say "I got lucky".  I took mrsiro's approach and just expanded on it.  A bad (or possibly good?) habit of mine...

  • Reply To: when to use Python in SQL Server

    I half agree with Jeff there.  Python may not be the best option for all use cases but, like cursors, there are cases where it is the best or only...

  • Reply To: when to use Python in SQL Server

    My opinion - I don't think there are that many use cases for using it.  Similar to R - you can access it externally, does it need to be baked...

  • Reply To: Stuff xml path query

    Possibly not the most efficient approach, but I think this should work:

    SELECT
    [job3].[TheDate]
    , REPLACE( [job3].[Security]
    , 'REMOVE:'
    , ''
    ) AS [Security]
    , REPLACE( [job3].[Driver]
    , 'REMOVE:'
    , ''
    ...
  • Reply To: Insert vs Update

    Are you updating the tables sequentially or are some being done at the same time?

    That being said, how many rows are being updated in tbl_people?  If on 2020-08-07 it updated...

  • Reply To: when to use Python in SQL Server

    My opinion - I would use it when I need to do analytics on the data; similar to when you'd use R.

    My approach though is to use these tools outside...

  • Reply To: SSMS not responding

    Alternately to Sue's approach, try matching your SSMS version to your SQL Server engine version.  I know some things behave strangely when you have mismatched versions.

  • Reply To: Insert vs Update

    It could be the disks.  It could be the data.  It could be the CPU or memory.  It could be blocking.  It could be none of those.  It could be...

Viewing 15 posts - 1,531 through 1,545 (of 2,905 total)