I am trying to create a SQL query to extract all of our build profiles, their properties and values. The output needs to include the build profile name, property name and property value. I found the following tables and just need to figure out the proper query. I keep thinking that this is some sort of JOIN.
SELECT [Id]
,[EntityID]
,[PropertyName]
,[PropertyValue]
,[IsHidden]
,[IsRuntime]
,[IsEncrypted]
FROM [VCAC_DB].[dbo].[GlobalProfileProperties]
SELECT [GlobalProfileID]
,[ProfileName]
,[Description]
FROM [VCAC_DB].[dbo].[GlobalProfiles]