Forum Replies Created

Viewing 15 posts - 1,561 through 1,575 (of 2,497 total)

  • RE: Need to revoke the sysadmin role?

    If the biztalk jobs are failing, you may need to set up a SQL Agent proxy for the biztalk account. See BOL for details of how to do 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

  • RE: Moving master database mdf and ldf to different location

    Move master and mssqlsystemresource if you wish, but be prepared for future Service Pack and even CU updates to fail. Also don't expect an upgrade in place to 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: T-SQL Code Optimizers

    A lot of the comments I have seen on this thread warn about the pitfalls of adding hints to T-SQL code. I agree that if you try to optimise...

    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: Activity monitor for non sys admins?

    At my place we have a specific Windows group and a set of authorities that provides 'read-only' type access to all server objects. As Database Architect I use these...

    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 2005 Transaction Logging

    How did you get the data from SQL7 to SQL 2005? If you copied the mdf and ldf files, or if you did a restore, you need to rebuild...

    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: Re: System Databases Location

    I would agree that placement of master, mssqlsystemersource, and model does not matter. The main drivers for any type of DB placement are data security and performance, neither 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: How to add "dot" after every three digits in a number in sql 2005

    My advice is to do this type of formatting in your application, not in SQL Server.

    Although it can be done in SQL Server, application code does this task far more...

    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 2005 and Sysprep - again

    There is no documented process for changing the names of these groups. My strong recommendation is do not attempt to rename these groups or you could put yourself outside...

    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: Huge differences in Buffer Manager Cache Pages

    There is a LOT of mis-information given about the /3GB switch, and from your response some is now coming from Microsoft!

    What happens without the /3GB switch:

    This information only applies 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: Not able to start SQL agent,getting Error insuffient Memory

    A significant part of sql server process memory has been paged out.

    This is the primary cause of your problems, and you need to stop SQL needing to produce 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

  • RE: Huge differences in Buffer Manager Cache Pages

    I have seen this behaviour at my old place on a Data Warehouse.

    We start with many thousand pages in the bufferpool, and not much space allocated to locks....

    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: Select *

    Showing exactly why a SELECT * is bad is harder than it needs to be in the SQL Server world, partly due to lack of metrics.

    Going back a decade when...

    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 2005 Memory Limits

    The more you read about how 32-bit Windows uses memory above the 4GB line, the more you will realise that the information quoted in your original post is correct. ...

    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: log space difference between SQL2000 and 2005

    When you do an update, SQL writes this to the log. SQL also makes an estimate of the amount of log space that would be required to backout 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: How to look for new patches and applied them

    If your main experience is with Oracle, I thought you might welcome a summary of how MS support SQL Server.

    While Microsoft are developing a product, they will often release specific...

    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 - 1,561 through 1,575 (of 2,497 total)