Forum Replies Created

Viewing 15 posts - 2,446 through 2,460 (of 2,497 total)

  • RE: Defragging a Database Server - Good or Bad???

    Something you can consider for larger databases is the use of raw partitions.  Raw partitions are probably easier to manage within a SAN environment than with DAS. 

    Using raw partitions would...

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

    If both your data files are in the same filegroup, then any database object created in that file group may have extents in both files.  Even if you find which...

    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 ensure order is kept in import from csv

    If you are concerned with row order when retrieving data you must use the ORDER BY clause in the SELECT statement.  The ANSI standard says that without the ORDER 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: MSDB and Model Database detached

    I did this and recovered from it. 

    If anyone else is thinking of moving Model and MSBD, one important thing is to detach and attach the databases one at 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: Defragging a Database Server - Good or Bad???

     

    Defragmenting at the logical level is always useful (e.g. rebuild indexes), but fragmentation at the physical level can also be important.

    Due to the underlying dynamics of disk head movement, any...

    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 not rolling back

    I should have said 'before writing to the data file it will write ... to the transaction log'.

    SQL Server will write updated pages to the data files before the transaction...

    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 not rolling back

    My understanding is that untill a transaction is comitted, the modifications(inserts/updates/deleted) are not made on th disk ( datafiles).

     
    Your understanding is wrong. 
     
    SQL...

    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: sqlservr.exe - There is no disk on drive A:

    It may be worth checking th efollowing registry entry to see if it is pointing to your A: drive.  (This is unlikely to happen, but could give the same results)

    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 Mail Issue

    Does Outlook need to be opened on your other servers.  Did this server ever send mail without Outlook opened.

    If you look at forum archives you will find a lot 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: Starnge Backup Issue with maintenance plan

    Have you looked in the Maintenance Plan report file.  This gives far more diagnostic information than found in the Job History display.

    Also, have you tried manually copying a file 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: MSDE Admin Question

    You can create Maintenance Plans for MSDE instances using Enterprise Manager, providing you have done some groundwork.

    If you have MSDE 2.0 (SQL2K) installed, it helps a lot to be 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: How does defragmenting o/s affect SQL Server?

    Most defrag tools will not touch files that are in use.  This means that if SQL Server is running, no database files will get defragmented.  You will need to stop SQL...

    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: advanced tuning on 876,000,000 rows

    You are looking at about 185GB just for this table.  It is worth reviewing all your space estimates to get bot ha worst-case and a realistic estimate of space required.  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: Shrinking Transaction Log Size??

    Two points...

    1) You need to be aware of the internal structure of the transaction log, and what happens when you do a backup and when you do a shrink.

    See 'Shrinking...

    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: logging in to msde 2000

    MSDE 2000 with SP3a will by default remove all server connectivity.  Log on to the box and run the Server Network Utility to enable your favourite protocol.  Then stop/start MSDE...

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