Forum Replies Created

Viewing 15 posts - 2,251 through 2,265 (of 2,497 total)

  • RE: Uninstall SP4 or solve problem???

    I have had situations where the Exchange account name is case sensitive.  Normally this case is not an issue, but for some of our mail profiles they only work if...

    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: DBCC Shrinkfile

    Most of your time will be spent in I-O, so your 8 processors will not get overworked.

    The time will depend on the I-O rate of your disk system, and how...

    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: Any reason to start out with a version other than SQL Server 2005?

    SQL2005 skills are still a bit hard to find this year.  By next year it will become hard to find people willing to work on SQL2000.  Likewise with VS2005 and...

    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: URGENT: Difficulties upgrading instance to clustered instance

    You need to uninstall SQL, then reinstall it using the Cluster name.

    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: Clustered Index and Page Level I/O

    Apart from the bottom-level leaf pages, clustered and non-clustered indexes are the same.  Therefore any discussion of I-O load should focus on what happens when pocessing the bottom-level only.

    In 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: Automate shrinking of transaction logs?

    Automatic shrinking of database files is a great way to get really bad windows disk fragmentation and slow server performance.  My advice is to turn off autoshrink, and stop running...

    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: Clustered Index and Page Level I/O

    rhunt,

    Scenario 1 and scenario 2 have identical I-O until you want to access the Description column.  Scenario 1 means the page with the description may be in the same extent...

    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: iJacking

    If you are going to take your laptop outside of a secure environment, you should consider encrypting the hard disk so that any confidential data cannot be freely read.

    Ther are 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: iJacking

    Yes this sucks, but why should IT people think they would be immune from theft.  Bags have been stolen from tables in drinking establishments from the time that bags, tables...

    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: Disaster Recovery Documentation - Lots of Screen Prints or Not???

    If you are doing all your DR processes manually you really need to look at scripting most of the activities.  Your failover plan then reduces significantly to 'run scripts 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 Server Move to SAN

    There are no issues detaching/attaching (or restoring) SQL2000 database files across different operating systems.  The internal format of the database files is the same regardless of operating system or bit-level 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: Clustered Index Strategies

    The real answer is: 'it depends'

    Always remember that a clustered index gives you the opportunity to give best possible performance to a range query that uses the index columns.  If...

    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: Clustered Index Strategies

    Re Eric's problem about losing long posts...  I have had this problem a few times.  There is a timeout limit on creating a new post, and if you exceed this your...

    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: Abbreviate PathName ''''C:\Program Files\Microsoft SQL Server\MSSQL\Backup''''

    Be aware that using the short form name such as C:\Progra~1\Micros~1\ is taking advantage of wha are known as DOS 8.3 file names.  The generation of 8.3 names can be...

    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 defragmenter on data drives

    I have used the built-in Windows Disk Defrag tool a number of tims on our non-production boxes while SQL is dealing with user queries.  I have had no problems.

    Although this...

    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,251 through 2,265 (of 2,497 total)