Viewing 15 posts - 2,326 through 2,340 (of 2,497 total)
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
June 21, 2005 at 2:14 am
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
June 10, 2005 at 4:42 am
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
June 9, 2005 at 3:06 am
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
June 9, 2005 at 2:52 am
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
June 8, 2005 at 3:08 am
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
June 8, 2005 at 3:00 am
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
May 19, 2005 at 7:48 am
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
April 29, 2005 at 3:21 am
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
April 27, 2005 at 4:18 am
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
April 27, 2005 at 4:07 am
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
April 27, 2005 at 3:58 am
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
April 22, 2005 at 3:26 am
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
April 21, 2005 at 8:46 am
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
April 21, 2005 at 3:08 am
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
April 21, 2005 at 2:43 am
Viewing 15 posts - 2,326 through 2,340 (of 2,497 total)