sql server - Store XSDs in a table versus XML SCHEMA COLLECTION -


i'm doing maintenance work on application stores xml data in sql server. currently, application uses table store associated xsds. question: since xsd validation being performed in asp.net, there advantage storing xsds in xml schema collection instead?

it's fair question... still put in xml schema collection. forces validation of data @ lowest possible level.

if it's possible put bad data column, happen. takes developer working on app not careful are, or internal app hitting same table, or of bunch of other situations.

it's storing int values in column of type varchar. can it... , maybe application validating data going in there indeed of type int. somehow or other, value "10n" eventually find way column. what? 1 of great things relational db enforces level of data validity, should use every tool @ disposal, including schema collections, imo.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -