Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 2,497 total)

  • RE: best size for TEMPDB

    If the log file fills up you need to increase the size of the log file.  If the data file fills up you need to increase the size of the...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: Default NULL not working

    I think you should look at your application code, to see what happens when the form is processed prior to updating the database.  To me, it looks very likely that...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: changing service account password after it has expired

    Changing the service account PASSWORD using control panel/services should never cause you a problem.  The only thing that EM does with the password is to store it in the same registry...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: best size for TEMPDB

    You need tempdb to be big enough for your daily and peak workload, without it needing to grow while the work is running.  You should not plan to shrink tempdb...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: Error: 17803, Severity: 20, State: 12 Insufficient memory available.

    You can get an update to SP4 that just includes the 2040 hotfix.  However you should also consider moving to the latest post SP4 hotfix rollup (build 2187).  Google will...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: using xp_sendmail with SQL Agent Operator

    As far as I know, @recipient must refer to a e-mail address, not to a SQL operator.

    If you want to put a layer of indirection into the process, you can...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: Error: 17803, Severity: 20, State: 12 Insufficient memory available.

    Your problem appears to be lack of memory for client connections.  How many concurrent connections do you need to support?  You may be able to fix this by changing some of...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: freeing up log space on a database

    It seems that some people are confusing two completely different things.

    a) Realeasing space in a log file via a log backup

    b) Reducing the size of a log file via a...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: running xp_cmdshell but cmd window opens on a different server

    If you use PSExec, be aware that it requires that the caller (on server A) be a member of the local Administrators group on the targer (server B).  Before building an...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: using xp_sendmail with SQL Agent Operator

    If you are thinking of using the job completion notification functionality in Agent, then you are stuck with the standard mail format used by Agent.

    The best you can do is...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: Patching query (8.00.2042 -> 8.00.2187)

    We run the 2187 level in production without the -T3625 flag.  As described in KB 900625, the 3625 flag masks potentially sensitive user data.  It is up to you to...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: SP2 Installation problem.

    I had the same issue.  It looks like the SP2 install places a new version of the Resource DB and distmdl in the same folder where master.mdf is located.  BOL...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: sp3a and sp4 coexist?

    It should work, but I have experienced the following problem...

    When SQL Server installs the SQL services, some of the path names are in 8.3 format (e.g. mssqls~1, mssqls~2, etc).  I...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: Insert into a Linked Server DB

    I think you are saying server A is Teradata, server B is Teradata, these are linked to server C which is SQL.  You want to join data in server A...

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

  • RE: SQL 2005 on new server performance issues

    I would only put SQL on a domain controller if it was the only machine in the domain.  It seems you have at least 35 other machines in the domain......

    Original author: https://github.com/SQL-FineBuild/Common/wiki/ 1-click install and best practice configuration of SQL Server 2019, 2017 2016, 2014, 2012, 2008 R2, 2008 and 2005.

    When I give food to the poor they call me a saint. When I ask why they are poor they call me a communist - Archbishop Hélder Câmara

Viewing 15 posts - 2,071 through 2,085 (of 2,497 total)