Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 2,497 total)

  • RE: Best way to strore a huge number of images

    Using a file system for images may look like the easiest to design, but it is also by far the hardest to maintain.  There have been a lot of posts...

    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: database owner

    You can change the table owner to dbo with sp_changeobjectowner.  You will have to re-link the tables in Access after doing this.

    If you want any new tables from that user 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: Transfer (a lot of) data from SQLServer 2K to Access 2K

    SQL is poorer than some other DBMSs in recognising dates in character strings.  If dates are in YYYY/MM/DD format (you can use other delimiters in place of the /) your...

    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: Transfer (a lot of) data from SQLServer 2K to Access 2K

    Why do you want to transfer this data to Access, particularly as it is on the same server as SQL? 

    If you want to use the Access forms and reports...

    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: NT Login Id changes Sync to SQL Server Security

    We had a similar problem where some NT group names were changed, but our standard security setup meant this was not a big problem for us.

    We use database roles 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: NT Login Id changes Sync to SQL Server Security

    This is not an easy one to sort out.  One of the problems is that the sid held in sysxlogins is the NT account sid, but the name value is...

    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 To Use the Order By Clause

    The article shows the danger of trying something out with a small set of data, and expecting the same results with a large set of data because of an assumption...

    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 retrieve row level data from Mainframe VSAM files Into SQL Server

    The 'garbage' may be due to the mainframe data being in EBCDIC while Windows works in ASCII.  It is possible to automatically convert from one format to the other.

    You will...

    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: Trusted Logins

    My 2p...

    1p) Have you given the SQL service account the 'Impersonate client after authentication' right.  The need for this is not in BOL, but is in a KB article.

    2p) We...

    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: Will DBCC Reindex do the update statistics?

    I recently ran some tests with DBREINDEX, using SQL 200 SP3a Hotfix 928.  I do not know if the results would be different at a different fix level.  I found...

    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 retrieve row level data from Mainframe VSAM files Into SQL Server

    If you are accessing native VSAM, as opposed to VSAM used for IMS or DB2 databases, you need a VSAM ODBC driver installed on the mainframe.  Talk to your mainframe...

    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 trying to insert to DB2 from DTS

    You really should be using DB2 Connect between SQL Server and the mainframe if you are moving anything more than a trivial amount of data.

    IBM have chosen to package 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: Detach/Attaching Temp DB broke my SQL.

    Yes, I re-attached it as a user DB, but using the tempdb standard filenames.  I could then edit sysdatabases to set the dbid to 2, and SQL seemed to be...

    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: Detach/Attaching Temp DB broke my SQL.

    Doing a detach & attach of Tempdb will seriously upset SQL Server.  The underlying problem is that tempdb must have a dbid of 2, but SQL prevents any attached database...

    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 trying to insert to DB2 from DTS

    Have you checked what is happening at the mainframe end?  The 'permission denied' message may be telling the truth. 

    I suggest you talk with your DB2 colleagues to try 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

Viewing 15 posts - 2,326 through 2,340 (of 2,497 total)