Store application settings in SQL database as a single row, or XML which uses an associated XML schema...
Team is currently debating best approach, most are in favor with the single row method. I'm leaning more towards XML method. I also have not seen this XML approach mentioned anywhere else. Thoughts?
Requirements for storing (200+) application settings for 100+ locations:
- Strongly typed value(s)
- Easily queried
- Settings for more than one location
- Versioning of settings
- History of changes and ability to audit
- Different settings could be enabled
- Consumable by asp.net application
Note: Settings should change very infrequently (Once quarterly, if that). Table is intended for inserts only, and not updates.
XML storage with XML Schema Collection Type
(Not your average blob with no data typing)
SCHEMA:
| ID || LocationID || XML(dbo.A_SchemaCollection) || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Ability to enable/disable settings per location
- Can be versioned
- Consumable by asp.net app. The XSD can easily be imported into Visual Studio, allowing the generation of an settings object
Con(s)
- Not "easily" "queryable"
Single Row with Typed Columns
SCHEMA:
| ID || LocationID || Settings1 || Settings2 || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Can be versioned
- Consumable by asp.net app via EF or some other ORM
Con(s)
- Ability to enable/disable settings per location
- Settings not configurable per site
- Schema change each time new setting is added
asp.net .net

add a comment |
Team is currently debating best approach, most are in favor with the single row method. I'm leaning more towards XML method. I also have not seen this XML approach mentioned anywhere else. Thoughts?
Requirements for storing (200+) application settings for 100+ locations:
- Strongly typed value(s)
- Easily queried
- Settings for more than one location
- Versioning of settings
- History of changes and ability to audit
- Different settings could be enabled
- Consumable by asp.net application
Note: Settings should change very infrequently (Once quarterly, if that). Table is intended for inserts only, and not updates.
XML storage with XML Schema Collection Type
(Not your average blob with no data typing)
SCHEMA:
| ID || LocationID || XML(dbo.A_SchemaCollection) || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Ability to enable/disable settings per location
- Can be versioned
- Consumable by asp.net app. The XSD can easily be imported into Visual Studio, allowing the generation of an settings object
Con(s)
- Not "easily" "queryable"
Single Row with Typed Columns
SCHEMA:
| ID || LocationID || Settings1 || Settings2 || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Can be versioned
- Consumable by asp.net app via EF or some other ORM
Con(s)
- Ability to enable/disable settings per location
- Settings not configurable per site
- Schema change each time new setting is added
asp.net .net

"XML storage" is easily queryable and updatable with XQuery, isn't it? "Single row" is not strongly typed. Indeed, it's a well known EAV model than should have one column per type to be considered as strongly typed.
– serge
Nov 20 '18 at 13:12
Thanks for the response @serge. & yes, it is easily queryable with XQuery. I agree wholeheartedly. The single row solution mentioned above is intended to be one setting per column, in which each setting could have a different data type. Data types for each setting could a little complex, such as one setting could be an XML data type. Are you stating that single row solution is not strongly typed? Additionally, are you suggesting that the single row option is the better solution?
– dppg10
Nov 20 '18 at 13:26
ah ok, so you implement EAV with column-per-type schema. However, I would suggest XML store if your settings have an hierarchical structure. Anyway, EAV is easy to store but hard to query if the data are not like plane "key-value".
– serge
Nov 20 '18 at 13:38
@serge Understood. I greatly appreciate the feedback.
– dppg10
Nov 20 '18 at 13:50
add a comment |
Team is currently debating best approach, most are in favor with the single row method. I'm leaning more towards XML method. I also have not seen this XML approach mentioned anywhere else. Thoughts?
Requirements for storing (200+) application settings for 100+ locations:
- Strongly typed value(s)
- Easily queried
- Settings for more than one location
- Versioning of settings
- History of changes and ability to audit
- Different settings could be enabled
- Consumable by asp.net application
Note: Settings should change very infrequently (Once quarterly, if that). Table is intended for inserts only, and not updates.
XML storage with XML Schema Collection Type
(Not your average blob with no data typing)
SCHEMA:
| ID || LocationID || XML(dbo.A_SchemaCollection) || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Ability to enable/disable settings per location
- Can be versioned
- Consumable by asp.net app. The XSD can easily be imported into Visual Studio, allowing the generation of an settings object
Con(s)
- Not "easily" "queryable"
Single Row with Typed Columns
SCHEMA:
| ID || LocationID || Settings1 || Settings2 || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Can be versioned
- Consumable by asp.net app via EF or some other ORM
Con(s)
- Ability to enable/disable settings per location
- Settings not configurable per site
- Schema change each time new setting is added
asp.net .net

Team is currently debating best approach, most are in favor with the single row method. I'm leaning more towards XML method. I also have not seen this XML approach mentioned anywhere else. Thoughts?
Requirements for storing (200+) application settings for 100+ locations:
- Strongly typed value(s)
- Easily queried
- Settings for more than one location
- Versioning of settings
- History of changes and ability to audit
- Different settings could be enabled
- Consumable by asp.net application
Note: Settings should change very infrequently (Once quarterly, if that). Table is intended for inserts only, and not updates.
XML storage with XML Schema Collection Type
(Not your average blob with no data typing)
SCHEMA:
| ID || LocationID || XML(dbo.A_SchemaCollection) || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Ability to enable/disable settings per location
- Can be versioned
- Consumable by asp.net app. The XSD can easily be imported into Visual Studio, allowing the generation of an settings object
Con(s)
- Not "easily" "queryable"
Single Row with Typed Columns
SCHEMA:
| ID || LocationID || Settings1 || Settings2 || CreatedBy || DateCreated |
Pro(s)
- Strongly typed
- Historical representation
- Can be versioned
- Consumable by asp.net app via EF or some other ORM
Con(s)
- Ability to enable/disable settings per location
- Settings not configurable per site
- Schema change each time new setting is added
asp.net .net

asp.net .net

edited Nov 20 '18 at 13:21
dppg10
asked Nov 20 '18 at 13:03


dppg10dppg10
12
12
"XML storage" is easily queryable and updatable with XQuery, isn't it? "Single row" is not strongly typed. Indeed, it's a well known EAV model than should have one column per type to be considered as strongly typed.
– serge
Nov 20 '18 at 13:12
Thanks for the response @serge. & yes, it is easily queryable with XQuery. I agree wholeheartedly. The single row solution mentioned above is intended to be one setting per column, in which each setting could have a different data type. Data types for each setting could a little complex, such as one setting could be an XML data type. Are you stating that single row solution is not strongly typed? Additionally, are you suggesting that the single row option is the better solution?
– dppg10
Nov 20 '18 at 13:26
ah ok, so you implement EAV with column-per-type schema. However, I would suggest XML store if your settings have an hierarchical structure. Anyway, EAV is easy to store but hard to query if the data are not like plane "key-value".
– serge
Nov 20 '18 at 13:38
@serge Understood. I greatly appreciate the feedback.
– dppg10
Nov 20 '18 at 13:50
add a comment |
"XML storage" is easily queryable and updatable with XQuery, isn't it? "Single row" is not strongly typed. Indeed, it's a well known EAV model than should have one column per type to be considered as strongly typed.
– serge
Nov 20 '18 at 13:12
Thanks for the response @serge. & yes, it is easily queryable with XQuery. I agree wholeheartedly. The single row solution mentioned above is intended to be one setting per column, in which each setting could have a different data type. Data types for each setting could a little complex, such as one setting could be an XML data type. Are you stating that single row solution is not strongly typed? Additionally, are you suggesting that the single row option is the better solution?
– dppg10
Nov 20 '18 at 13:26
ah ok, so you implement EAV with column-per-type schema. However, I would suggest XML store if your settings have an hierarchical structure. Anyway, EAV is easy to store but hard to query if the data are not like plane "key-value".
– serge
Nov 20 '18 at 13:38
@serge Understood. I greatly appreciate the feedback.
– dppg10
Nov 20 '18 at 13:50
"XML storage" is easily queryable and updatable with XQuery, isn't it? "Single row" is not strongly typed. Indeed, it's a well known EAV model than should have one column per type to be considered as strongly typed.
– serge
Nov 20 '18 at 13:12
"XML storage" is easily queryable and updatable with XQuery, isn't it? "Single row" is not strongly typed. Indeed, it's a well known EAV model than should have one column per type to be considered as strongly typed.
– serge
Nov 20 '18 at 13:12
Thanks for the response @serge. & yes, it is easily queryable with XQuery. I agree wholeheartedly. The single row solution mentioned above is intended to be one setting per column, in which each setting could have a different data type. Data types for each setting could a little complex, such as one setting could be an XML data type. Are you stating that single row solution is not strongly typed? Additionally, are you suggesting that the single row option is the better solution?
– dppg10
Nov 20 '18 at 13:26
Thanks for the response @serge. & yes, it is easily queryable with XQuery. I agree wholeheartedly. The single row solution mentioned above is intended to be one setting per column, in which each setting could have a different data type. Data types for each setting could a little complex, such as one setting could be an XML data type. Are you stating that single row solution is not strongly typed? Additionally, are you suggesting that the single row option is the better solution?
– dppg10
Nov 20 '18 at 13:26
ah ok, so you implement EAV with column-per-type schema. However, I would suggest XML store if your settings have an hierarchical structure. Anyway, EAV is easy to store but hard to query if the data are not like plane "key-value".
– serge
Nov 20 '18 at 13:38
ah ok, so you implement EAV with column-per-type schema. However, I would suggest XML store if your settings have an hierarchical structure. Anyway, EAV is easy to store but hard to query if the data are not like plane "key-value".
– serge
Nov 20 '18 at 13:38
@serge Understood. I greatly appreciate the feedback.
– dppg10
Nov 20 '18 at 13:50
@serge Understood. I greatly appreciate the feedback.
– dppg10
Nov 20 '18 at 13:50
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53393606%2fstore-application-settings-in-sql-database-as-a-single-row-or-xml-which-uses-an%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53393606%2fstore-application-settings-in-sql-database-as-a-single-row-or-xml-which-uses-an%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
"XML storage" is easily queryable and updatable with XQuery, isn't it? "Single row" is not strongly typed. Indeed, it's a well known EAV model than should have one column per type to be considered as strongly typed.
– serge
Nov 20 '18 at 13:12
Thanks for the response @serge. & yes, it is easily queryable with XQuery. I agree wholeheartedly. The single row solution mentioned above is intended to be one setting per column, in which each setting could have a different data type. Data types for each setting could a little complex, such as one setting could be an XML data type. Are you stating that single row solution is not strongly typed? Additionally, are you suggesting that the single row option is the better solution?
– dppg10
Nov 20 '18 at 13:26
ah ok, so you implement EAV with column-per-type schema. However, I would suggest XML store if your settings have an hierarchical structure. Anyway, EAV is easy to store but hard to query if the data are not like plane "key-value".
– serge
Nov 20 '18 at 13:38
@serge Understood. I greatly appreciate the feedback.
– dppg10
Nov 20 '18 at 13:50