Forum Replies Created

Viewing 15 posts - 2,221 through 2,235 (of 2,497 total)

  • RE: Pages/Extents: Clustered vs. Heap

    I am not sure about the answer to some of your questions, but yes - heaps could be defragmented in the way you suggest, it is just the Microsoft has...

    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: Need Help

    As Arun says, check the SQL Errorlogs.  Also check the Windows Event Logs.  Try to narrow down what caused the problem, and see if you can identify the root cause.

    Ultimately,...

    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: IIS ans SQL server on the same server

    One of the main issues in putting SQL and IIS on the same box is that they are both heavy users of I-O and memory, and end-user response suffers badly...

    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: Pages/Extents: Clustered vs. Heap

    In a heap, the data and indexes are processed independently. 

    When you are doing any DML on a heap table, you will get I-Os to any index you use, and then 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: Memory Usage and general tuning

    Apart from the anti-virus and intruder detection software our security people require, we run nothing else on the SQL Server box.  ...except for backups, integrity checks, etc.  ...and sometimes 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: SP4 issues

    I recently did an investigation about SP4, which I have summarised below.  In the end we have decided to stick with our SP3 + HF 928 build until next year when we...

    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: Memory Usage and general tuning

    1) Windows Task Manager does not properly report usage of memory above the 4GB line.  Your AWE memory usage is not shown in Task Manager.  You can track AWE usage by...

    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: Reoccuring I/O Problems.

    We have had a similar issue on a server that is SAN connected.  However all of our I-O errors were in tempdb which uses the only local disks on 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: Memory Management - awe /3gb /pae

    I mis-read the original post.  On a 8GB box server 2 would have access to 7GB with AWE enabled.

    Note that only the database bufferpools can go into AWE memory.  All...

    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 Server and SAN questions

    There are a lot of questions here.  I can only answer some of them.

    If all the servers you want to replicate to will be SAN-attached, you should look at SAN...

    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: Cannot delete jobs created from MSX

    If all else fails, run

    UPDATE msdb..sysjobs SET originating_server = @@SERVERNAME

    You can now manage the jobs locally

    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: Memory Management - awe /3gb /pae

    Server 1 will never use AWE because there is not enough memory on the machine.  SQL will have access to 3GB memory due to the /3GB switch.   It will do...

    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: restoring master database

    If I understand you correctly, you want to restore an old copy of master but call it something else, such as FRED.  If you do this there will be no...

    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: help!!! tempdb detached

    If you have access to a 'Crash & Burn' server it is worth trying out some of these tricks. 

    Recently I was asked to get SQL working on a server...

    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: growing IN clauses problem

    The problem of a large IN list is not confined to SQL Server.  If I was doing this work in DB2 or Oracle I would not want to see 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

Viewing 15 posts - 2,221 through 2,235 (of 2,497 total)