Forum Replies Created

Viewing 15 posts - 2,266 through 2,280 (of 2,497 total)

  • RE: sql server job fails But Not the DTS

    Another common problem when scheduling DTS jobs is file permissions.  A good way to debug these is to log on using the SQL Agent account and run your DTS from...

    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: Moving database to destination server with less disk space

    You really need a DR server with similar disk capacity to your main server.  The staff cost of working out how (and proving it works) or doing your DR in...

    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: Pick on Windows Poll

    It may be old but it is still valid...

    "SQL Server is wonderful... it inherits all the scalability, reliability and security of Windows"

    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: do bak up transaction logs append to or create a separate log?

    Each transaction log backup contains only the log information that was created following the previous transaction log backup.  Transaction log backups are only valid when the database is in Full...

    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: DB2 data types to SQL server

    1) Cross-check field sizes.  In particular Integer can mean 2-byte or 4-byte in different systems.  Most Cobol and DB2 data types map well to SQL data types apart from date...

    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: BriefCase Scripts export

    If you are using EM, the default path for saving script files is the 'My Documents' path.  You can change this to some other value by right-clicking the My Documents icon...

    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: Mirror for disaster recovery

    Don't forget to think outside the (SQL) box.

    Many sites use a disk replication product such as Double-Take or SAN replication to copy their SQL data to another site.  In this scenario...

    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: Retrieving Date Formats

    You can use Cast or Convert to specify a given date format.  If you want to do anything more then Convert gives you, then do it in .Net code.  It...

    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: Huge datafile vs. perfomance

    Beware of allocating multiple files to the same filegroup if they will be on the same disks, especially if you are already having I-O problems.  Wintel servers often have limited...

    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 Restore POS System to SqlServer 2000

    This needs to be driven by the business.  If there are no formal SLAs agreed, then this must be the first step.  When you have a written and signed-off document...

    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: These guys must have some database!

    Big is as big does.  Back in 2000 I was involved in some work for the UK Land Registry.  Back then their main system was growing at about 10 GB...

    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: Pros and Cons

    I have no issues with the concept of consolidating multiple production instances on to fewer servers. Likewise multiple test instances could be consolidated to few (non-production!) servers.  If you look...

    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: Shrink TempDB Error

    The best advice is: stop shrinking tempdb!!

    You should plan to have a Tempdb that is large enough for your workload.  If it needs 20GB then plan for 20GB.  On our...

    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: install microsoft ole db provider for olap services 8.0 on approx 1000 pc''''s

    Talk to your System Admin people.  It is likely they will have a preferred method of deployment so they can support the boxes.  If you add software outside of 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: Should we change collations ???

    I know that with some operating systems, if you store data using a different collation from wher it is processed or displayed, this forces a collation conversion process.  Even where source...

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