Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 2,857 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...

  • Reply To: hardening of SA account causes failed login found in error logs

    I don't have ALWAYS ON configured on any of my instances as we have a different tool for handling failover.

    We also have some 3rd party tools that don't support windows...

  • Reply To: Restricting DB storage growth within AWS instance

    My guess here is that you didn't configure TEMPDB correctly because if you set a MAX SIZE on TEMPDB, that's as big as it will go.

    Even the AWS documentation indicates...

  • Reply To: Database Mail items stuck in unsent status

    Also, Microsoft has some documentation on what to try:

    https://docs.microsoft.com/en-us/sql/relational-databases/database-mail/database-mail-mail-queued-not-delivered?view=sql-server-ver15

    The important tip they offer is:

    If the last attempt did not start the external program, verify that the Database Mail External Program...

  • Viewing 15 posts - 1,066 through 1,080 (of 2,857 total)