Forum Replies Created

Viewing 15 posts - 1,111 through 1,125 (of 2,905 total)

  • Reply To: Restricting DB storage growth within AWS instance

    I expect that auto-scaling would make the AWS space grow, but it shouldn't make TEMPDB grow past the limits you put in place.

  • Reply To: How to get mask related with every part on same row ?

    Does this work:

    SELECT
    [finalDatapc].[familyid]
    , [finalDatapc].[PartNumber]
    , [finalDatapcMask].[MaskNumber]
    FROM[getfinaldatapc] AS [finalDatapc]
    JOIN[getfinaldatapcmask] AS [finalDatapcMask]
    ON [finalDatapcMask].[familyid] = [finalDatapc].[familyid]
    AND
    (
    LEFT([finalDatapc].[PartNumber], LEN([finalDatapc].[PartNumber]) - 1) = LEFT([finalDatapcMask].[MaskNumber], LEN([finalDatapcMask].[MaskNumber]) - 1)
    AND RIGHT([finalDatapc].[PartNumber], 1)NOT LIKE...
  • Reply To: UPDATE query performance tuning

    Are you able to capture the execution plan for these?  That could help determine what is actually happening.  Do the queries run just as slow if you run them in...

  • Viewing 15 posts - 1,111 through 1,125 (of 2,905 total)