Skip to content

Conversation

@srutzky
Copy link
Contributor

@srutzky srutzky commented Jul 29, 2020

  1. IsTempdbMetadataMemoryOptimized property, added in SQL Server 2019, was missing, but is not "undocumented" given that it's documented in the "TempDB Database" documentation:
    https://docs.microsoft.com/en-us/sql/relational-databases/databases/tempdb-database#memory-optimized-tempdb-metadata
    PLEASE verify relative URL for the "TempDB Database" link in the new row for IsTempdbMetadataMemoryOptimized.

  2. Moved the three "Filestream" properties up to be in alphabetical order, like the rest of the items in the list.

  3. Added missing "base data type"s for various properties. The query below shows what the datatypes are. For ProductBuildType, I could only get that to not be NULL using SQL Server 2012 Express Edition LocalDB (SP4-GDR) (KB4057116) - 11.0.7462.6 (X64).

    SELECT tab.[Property],
           SERVERPROPERTY(tab.[Property]) AS [Value],
           SQL_VARIANT_PROPERTY(SERVERPROPERTY(tab.[Property]), 'BaseType') AS [Datatype],
           SQL_VARIANT_PROPERTY(SERVERPROPERTY(tab.[Property]), 'MaxLength') AS [MaxLength]
    FROM   (VALUES
                   ('IsTempDbMetadataMemoryOptimized'),
                   ('HadrManagerStatus'),
                   ('InstanceDefaultDataPath'),
                   ('InstanceDefaultLogPath'),
                   ('IsAdvancedAnalyticsInstalled'),
                   ('IsBigDataCluster'),
                   ('IsLocalDB'),
                   ('ProductBuild'),
                   ('ProductBuildType'),
                   ('ProductMajorVersion'),
                   ('ProductMinorVersion'),
                   ('ProductUpdateLevel'),
                   ('ProductUpdateReference'),
                   ('FilestreamShareName'),
                   ('FilestreamConfiguredLevel'),
                   ('FilestreamEffectiveLevel')
           ) tab([Property])
    ORDER BY tab.[Property];

Take care,
Solomon...
https://SqlQuantumLift.com/
https://SqlQuantumLeap.com/
https://SQLsharp.com/

1. `IsTempdbMetadataMemoryOptimized` property, added in SQL Server 2019, was missing, but is not "undocumented" given that it's documented in the "TempDB Database" documentation:
    https://docs.microsoft.com/en-us/sql/relational-databases/databases/tempdb-database#memory-optimized-tempdb-metadata

2. Moved the three "Filestream" properties up to be in alphabetical order, like the rest of the items in the list.

3. Added missing "base data type"s for various properties. The query below shows what the datatypes are. For `ProductBuildType`, I could only get that to not be `NULL` using SQL Server 2012 Express Edition LocalDB (SP4-GDR) (KB4057116) - 11.0.7462.6 (X64).

```sql
SELECT tab.[Property],
       SERVERPROPERTY(tab.[Property]) AS [Value],
       SQL_VARIANT_PROPERTY(SERVERPROPERTY(tab.[Property]), 'BaseType') AS [Datatype],
       SQL_VARIANT_PROPERTY(SERVERPROPERTY(tab.[Property]), 'MaxLength') AS [MaxLength]
FROM   (VALUES
               ('IsTempDbMetadataMemoryOptimized'),
               ('HadrManagerStatus'),
               ('InstanceDefaultDataPath'),
               ('InstanceDefaultLogPath'),
               ('IsAdvancedAnalyticsInstalled'),
               ('IsBigDataCluster'),
               ('IsLocalDB'),
               ('ProductBuild'),
               ('ProductBuildType'),
               ('ProductMajorVersion'),
               ('ProductMinorVersion'),
               ('ProductUpdateLevel'),
               ('ProductUpdateReference'),
               ('FilestreamShareName'),
               ('FilestreamConfiguredLevel'),
               ('FilestreamEffectiveLevel')
       ) tab([Property])
ORDER BY tab.[Property];
```
@PRMerger9
Copy link
Contributor

@srutzky : Thanks for your contribution! The author(s) have been notified to review your proposed change.

@VanMSFT
Copy link
Member

VanMSFT commented Aug 5, 2020

@srutzky - Hey Solomon! Thanks for these additions. Let me check on them before approval.

Also added the correct relative path for the link.
@VanMSFT
Copy link
Member

VanMSFT commented Aug 5, 2020

@srutzky - Solomon, we're good to go. Thanks again for helping us with these docs!

#sign-off

@srutzky
Copy link
Contributor Author

srutzky commented Aug 5, 2020

@VanMSFT (and @bluefooted ): you're welcome 😺 .

@ktoliver ktoliver merged commit 4551bad into MicrosoftDocs:live Aug 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants