Forum Replies Created

Viewing 15 posts - 166 through 180 (of 201 total)

  • RE: Stairway To SQL Server Columnstore Indexes Level 2: Columnstore Storage

    any idea, if (and if yes then how) small datatypes as TINYINT (= 1 byte) could be compressed in columnstored indexes?

    Its clear, that I will save space...

    God is real, unless declared integer.

  • RE: Nuance of datetime data type in SQL Server

    You should use an INLINE TABLE VALUE fuction instead of a scalar function - this would save a lot of time when you import many datasets

    CREATE...

    God is real, unless declared integer.

  • RE: SQL Login Password Audit

    Short remark: a FILLFACTOR = 90 on a Identity Column (= auto increment) in a read-only-table (at least no space-growing varchars) makes no sense and wastes 10 % space. Even...

    God is real, unless declared integer.

  • RE: Where is the SQL Clone Trivia Quiz?

    oh, thanks (I usually use only the deep links in the newsletters and visit the SSC start page only very seldom ...

    God is real, unless declared integer.

  • RE: Performing a Right and Comprehensive Age Calculation

    Why do you not use a much more short and simple

    DECLARE @bd DATE = '19801231', @td DATE = '20171231'
    SELECT DATEDIFF(YEAR, @bd, @td) - CASE WHEN...

    God is real, unless declared integer.

  • RE: Using Trace Flags

    beside the "default" (at least before SQL 2016) Trace Flags 1117 / 1118 (Grow all Files in a FileGroup equally / prevent mixted extends) I'm using:
    1222 (allows Deadlock monitoring),...

    God is real, unless declared integer.

  • RE: TempDB Database On a Local Disk for an FCI

    Michael L John - Wednesday, March 8, 2017 7:41 AM

    Tempdb is recreated with each restart. There is no need to sync between...

    God is real, unless declared integer.

  • RE: TempDB Database On a Local Disk for an FCI

    DBA_Rob - Wednesday, March 8, 2017 7:13 AM

    You mentioned that the performance "may" be better.  I think some examples of what performance...

    God is real, unless declared integer.

  • RE: TempDB Database On a Local Disk for an FCI

    Nice to know, how to install / configure it, but I still do not know, if and how this will work, when a server crash and has to fail over...

    God is real, unless declared integer.

  • RE: Detective Stories - Tracking Down the Database's Dependents Part I

    Your code, where you select for definition like '%' +  @ValueToFind + '%' is wrong, since it would return references to MyDB10 and MyDB1_test  and dev_MyDB10 when @ValueToFind is 'MyDB1'.

    God is real, unless declared integer.

  • RE: ShrinkFile

    This is not true.
    I just used
    DBCC SHRINKFILE (N'mydb_log' , 0, TRUNCATEONLY)
    on my 4 GB log file and it is now down to 10 MB (10...

    God is real, unless declared integer.

  • RE: Broken tempdb

    Ed Wagner - Friday, January 27, 2017 5:48 AM

    We had our SAN go off the rails once - it was a...

    God is real, unless declared integer.

  • RE: Broken tempdb

    I would have opened the Windows drive management console and changed the drive letter from t: to something else and added t: as additional letter to the d:-drive... (+ maybe...

    God is real, unless declared integer.

  • RE: DECLARE multiple vars with default value

    t.franz - Sunday, January 15, 2017 8:06 AM

    Comments posted to this topic are about the item DECLARE multiple vars with default value

    God is real, unless declared integer.

  • RE: Securing Your Instances

    Would it be possible to install my real instance e.g. at myserver port 9999 and a second instance with empty databases uses the same name at port 1433 that links...

    God is real, unless declared integer.

Viewing 15 posts - 166 through 180 (of 201 total)