Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Trova tutte le tabelle con un campo contenente valori di stringa xml

Se i campi sono effettivamente di tipo XML, questa query ti darà ciò che stai cercando:

select * from information_schema.columns
where DATA_TYPE = 'XML'

Marco