Forum Replies Created

Viewing 15 posts - 1,396 through 1,410 (of 2,497 total)

  • RE: Memory error: The operation cannot be completed because the memory quota estimate (4095MB).....

    Any future projects we are probably going to look at products from IBM or revert back to SAS

    Don't be in such a hurry to write off SSAS. Can you...

    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: Fastest way to fetch 10 milion records in a Desktop application that uses SqlServer2005 as Database

    IMHO you need to make the update processing asyncronous to the user input. If you tie up a user screen for even 1 minute while you process their input,...

    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: Fastest way to fetch 10 milion records in a Desktop application that uses SqlServer2005 as Database

    Also get the updates done by stored procedures on the server. That way you do not have to ship data to the client.

    The only dat ayou should ever ship...

    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: When you REORGANIZE a clustered index...

    Reorganizing or rebuilding a cluster index does not have any impact on the non-cluster indexes in SQL Server 2000 SP4 or above, or any version of SQL 2005 or 2008....

    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 Leak problem

    Nobody else has said this yet, but your Errorlog sample does not show any sign of a memory leak.

    What it does show is that SQL Server is unable to 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: Unattended Installation of Multiple instances of SQL2005.

    What do the SQL Server install logs say about this? They should confirm if the second instance was installed, and may give a clue as to what caused 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: SQL 2008 log file backup

    Please read what Books Online says about Transaction Logs, and what a transaction log backup means.

    The command you want to do does not take a backup of the transaction log....

    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: Setting up TempDB

    Somehow my post got duplicated.

    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: Setting up TempDB

    The suggestion to have 8 equal size files with 7 set to fixed size and 1 allowed to autogrow is good but does have its problems.

    The biggest problem is 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: How to restrict access for BUILTIN\Administrators.

    The situation with NTFS restrictions is similar to what is happening in SSRS. You can deny the local Administrators from accessing your files, but you cannot prevent them adding...

    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 restrict access for BUILTIN\Administrators.

    Yes, you cannot totally block local Administrators, but you can tell by the smell if they have been around. A DBA can check if unexpected logins are present, 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: How to restrict access for BUILTIN\Administrators.

    I have looked at this on SSRS for SQL Server 2008, hopefully it will not be too much different for SSRS 2005.

    As other people have said, you can add another...

    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: Secondary Data file (ndf)

    Sorry, the command is not ALTER TABLE.

    It is CREATE INDEX ExistingTable.ExistingIndex ON NewFilegroup WITH (DROP_EXISTING=ON)

    See BOL CREATE INDEX (Transact-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: Installing sql server 2005

    ...and they may have run the install from the Tools CD or folder instead of the Server CD or folder. 🙂

    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: Secondary Data file (ndf)

    If you add an additional file to an existing file group, you have no control over what data SQL Server will put in the new file.

    When any existing database object...

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