I have used EM to export the data from sysproperties into another sysproperties in a different database. When I run the following query in the original database, I get back the expected value. However, when I run it in the new database, I get back nothing. When I query the sysproperties table in the new database, I can see the data and EM did not indicate any errors on the import.
What I'm trying to avoid is rewritting the individual insert statements via sp_addextendedproperty.
SELECT value as DescName FROM ::fn_listextendedproperty ('Ms_description', 'user','dbo','table', 'tbluserlogins', 'column', 'password')
Any sugggestions would be appreciated.
Thanks,
Kyle