Forum Replies Created

Viewing 15 posts - 2,371 through 2,385 (of 2,497 total)

  • RE: Migrate data from SQL2K to IBM DB2

    Frank's link has some good stuff.  I would recommend you look at some of these things.

    However, if you want to stick with just SQL and DB2, you can also do:

    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: How to restrict SELECT permission for sysadmin users... SQL server 2000

    As a few people have said, in SQL Server it is not possible to restrict what anyone with Sysadmin authority can do.  SQL Server simply does not check if 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: Job Running Status permission

    Unless you want to re-code some MS supplied SPs, what you want to do CANNOT be done with SQL2000. 

    There are some critical SPs that check if you are either...

    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 write a recursive query?

    The SQL syntax to support recursion directly in SQL does not exist in SQL2000, but is (finally) introduced in SQL2005.  Some other DBMSs have had recursion for years.  The DB2...

    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: Locating System databases on specific drive

    If you want to move the system databases after you have completed the install, see http://support.microsoft.com/default.aspx?scid=kb;en-us;224071

    I strongly recommend you complete all operations on a given database before you start...

    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: HELP! Production down with 17207 : udopen: Operating system error 32(The process cannot access the file because it is being used by another process.) during the creation/opening of physical device d:\Program Files\Microsoft SQL Server\MSSQL\data\templ

    Tempdb is re-created every time SQL is started.  If you stop SQL, delete the tempdb files, and restart SQL this might cure your problem.  You do not need to keep...

    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: Stored Procedure, Function, or View - Newbie needs help!

    You could easily implement your SP as a view, by joining your two selects into a single statement.

    This would make it easier to join the results from this process with...

    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: Storing images in SQL server and not in a directory

    There is not an easy answer to this question.  You should consider the application and data retention issues in addition to 'pure' SQL Server issues before making a decision.  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: Integrated Service 2005 and ADABASE

    SQL2005 IS should be able to pull data from any ODBC compliant data source.

    If you can find an ADABAS ODBC driver for Windows, then IS can get your data.  (ADABAS 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: Crystal Reports data access methods (stored procs, etc.)

    One potential problem of option B is that that Crystal may produce sub-optimal SQL to access the database.

    This is a generalisation, but most high-end reporting tools have logic to decide...

    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 ROLES?

    We have used the script below to pull off permissions for database roles:

    -- Build statements to replicate authorities for a Database Role

    SELECT

      CASE p.protecttype

      WHEN 205 THEN

        CASE

         ...

    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: Apply Hot Fix for SQL 2000 SP3

    I have not applied this fix, but looking at the hotfix components there are definitely server-based components.

    SQL hotfixes are always cumulative, and this hotfix will update your server to level...

    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: Calculate distances from given UK postcode

    Don't forget that your calculations will just give you the distance as the crow flies, not the surface travel distance.  The two can be significantly different where a river estuary...

    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: Dynamic Disk

    There are some problems with dynamic disks that can hit any machine, not just SQL Server ones.  The problems appear to stem from the (Windows) database that holds details about...

    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 deleted

    I once detached tempdb to see what happens, and how to get things working again.  As far as I can remember, this is what I did...

    1) Start SQL with 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,371 through 2,385 (of 2,497 total)