Viewconfig location in the new web portal

Dear Experts,

I noticed that you can save filtered views in a variety of places in the new portal. My question is where are the saved views stored. I assume they are in some tables in the database however I can't find them.

Anyone know how they are stored?

Thanks in advance.

Parents Reply
  • Run this query to view to B64 encoded 'DialogUserConfiguration.ConfigurationData' column and see the posts.

    	SELECT u.Ident_QBMXUser
    		,CONVERT(VARCHAR(MAX), CAST('' AS XML).value('xs:base64Binary(sql:column("ConfigurationData"))', 'VARBINARY(MAX)')) AS DialogUserConfiguration
    	FROM DialogUserConfiguration
    	JOIN QBMXUser u ON u.UID_QBMXUser = DialogUserConfiguration.UID_QBMXUser
    	WHERE UID_DialogProduct IN (
    			SELECT UID_DialogProduct
    			FROM QBMProduct
    			WHERE Ident_Product = 'WebDesigner'
    			)






Children