Forum Replies Created

Viewing 15 posts - 91 through 105 (of 194 total)

  • Reply To: SCOM Alert: MSSQL 2014: SQL Server cannot authenticate using Kerberos

    at https://www.microsoft.com/en-us/download/details.aspx?id=39046 you can download the Kerberos Configuration Manager for SQL Server. It helped me a lot with all this SPN stuff, since it finds out by itself, which entries...

    • This reply was modified 5 years, 11 months ago by Thomas Franz.
    • This reply was modified 5 years, 11 months ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: The Evolution of Windows

    Regarding SQL Versions and restore to older versions: the "assuming no new keywords are used" would be a bad sign for a new version.

    I don't care about all the fancy...

    God is real, unless declared integer.

  • Reply To: The Hidden Trigger

    I think triggers can be agood. On the database of my previous employer we had tons of triggers to ensure business logic. Of course you could argue, that it should...

    God is real, unless declared integer.

  • Reply To: Offline Files

    why should I do this or how would this work? If I take a single file from a filegroup offline, the data in the file will no longer accessible. And...

    God is real, unless declared integer.

  • Reply To: Moving away from an RDBMS

    I'd assume that the NoSQL data model fits better for very specific approaches, where you can encapsulate a bigger part of data and assign it to a specific user etc..

    Imaging...

    God is real, unless declared integer.

  • Reply To: Annoyances

    I had a coworker once (luckily sitting in other room) who was a ~40 years old single and lived in a guesthouse/motel. I don't know, what he did wrong, but...

    God is real, unless declared integer.

  • Reply To: CASTing Binary Values

    oh, I did already - about 20 questions 🙂

    God is real, unless declared integer.

  • Reply To: CASTing Binary Values

    I hope, this will be not the next Question of the Day, but sometimes you have the value not in a binary column but in a VARCHAR (e.g. because you...

    God is real, unless declared integer.

  • Reply To: The Triple Update

    I used this behavior

    • while setting a column to the MIN/MAX() result of a subquery, where I needed this value for further use in a variable too
    • setting a column...

    • This reply was modified 6 years, 5 months ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: Incremental Package Deployment – A SSIS 2016 Feature

    We can't use it either. We have an generic file loader, that searchs in the directories for new files and calls the fitting package to load the file. The (sub)package...

    God is real, unless declared integer.

  • Reply To: Switching Database context in transaction

    Counterquestion: why should it be forbitten? It does not write anything to the log, changes no data ...

    I don't know how it is realized internal, but theoretical an USE [db]...

    God is real, unless declared integer.

  • Reply To: CHOOSing a value

    For the sake of completeness, CHOOSE() ignores errors too, until you access this value:

    -- works well
    DECLARE @i INT = 4;
    SELECT CHOOSE(@i, 10,20,30,3.14,50,'Test', 1/0)
    GO
    -- returns division by zero...

    God is real, unless declared integer.

  • Reply To: Data Compression Double Take

    When disk I/O is no longer a problem, it comes to CPU and network I/O... To reduce the CPU load (and disk I/O) you could e.g. tune your queries /...

    God is real, unless declared integer.

  • Reply To: Updating Statistics

    Even after several minutes of thinking, I can't really anything I know about indexing flag as only nice-to-have. Ok, maybe you could just skip the whole in-memory-table stuff with its...

    God is real, unless declared integer.

  • Reply To: Redistributing Data Across Files

    theoretical you could have added one more file to the filegroup and used

    DBCC SHRINKFILE (N'<original file>' , EMPTYFILE)

    to move all data into the new files (will be evenly distributed in...

    God is real, unless declared integer.

Viewing 15 posts - 91 through 105 (of 194 total)