Forum Replies Created

Viewing 15 posts - 2,056 through 2,070 (of 2,497 total)

  • RE: SQL 2000 on VMware

    I have seen posts from people saying that are running SQL under VMWARE in production with no issues.

    However, you should be aware that the main thing any database needs 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: master and msdb log does not get backed up

    master should never be put in anything other than SIMPLE recovery mode.  I thought SQL always put master into SIMPLE mode whenever it started, but I may be wrong.  There...

    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: PAssword is not null, but login works without a password

    If the user's Windows login and a SQL Server login are identical, and the user has rights to login to SQL Server via their Windows account, then you will get...

    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: Citrix Server needs SQL server?

    My understanding is that by default Citrix will use a MS-Access database to hold its critical information.  You have an option to use SQL Server in place of Access.

    You need...

    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 allocate objects to different filegroups?

    As other people have pointed out, the easiest way to move a table to another filegroup is to re-create the cluster index with

    CREATE CLUSTERED INDEX ... WITH DROP_EXISTING ON filegroupname

    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: TempDB Full (9002)

    My experience is that tempdb goes through some re-initialisation process rather than being totally re-written.  We have a tempdb of 50 GB on a DW system and SQL has 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: Transaction log file too large

    Never shrink any database file if you expect it to grow to its original size within 3 months, except for an emergency.  All you are doing is causing Windows NTFS...

    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 shutdown error

    Definitely check that tempdb has enough space to grow.

    If you are sure that tempdb can get all the space it needs, then I would report this problem to Microsoft.

    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: TempDB Full (9002)

    You need to work out how much space is needed for tempdb, then set the initial size of tempdb mdf and log to match your business needs.  It is also...

    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: Is it recommended/possible to run MSDE and sql server on the same server?

    As previous people have said, it is possible to run a mixture of MSDE and full SQL instances on the same machine.

    Because of likely memory and CPU pressure, you should...

    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: A question about parallelism

    I think the trick with sp_ is in BOL somewhere, or Google will know where to find it...

    If a sp starts 'SP_', SQL assumes it lives in master, regardless 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: A question about parallelism

    First, about statistics.... 

    The optimiser chooses how to run the query depending on the values held in the statistics.  If your statistics are so old they no longer accurately describe...

    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 while running DBCC CheckDb

    You can run into problems if you run CHECKDB in a maintenance plan against a database that requires ARITHABORT ON.  The job step is always generated without a SET ARITHABORT ON...

    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: Bug with SQL 2005 SP2 (Please list bugs & solution here)

    Something I found in SP2...  You can ALTER a database to use the new vardecimal format, except that you cannot ALTER any of the system databases to accept vardecimal.

    It does...

    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

    As Andrew says, an empty string is not NULL in SQL Server, as per the ANSI SQL standard.  In Oracle, an empty string is NULL, but Oracle is outside 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

Viewing 15 posts - 2,056 through 2,070 (of 2,497 total)