What database table contains the list of "multiple URL"s allowed for a single page?
Basically I have 5000+ pages in Sitefinity. When I try to create a multiple URL for a new landing page, for example ~/WelcomeHome, I'm getting a warning that some other page already has it.
I need to know what table to look in to see what page is already associated with the ~/WelcomeHome URL so I can delete the multiple url value from that page and assign it to my new page.
This should help:
SELECT * FROM [dbo].[sf_url_data] WHERE url = '~/WelcomeHome'SELECT * FROM [BostonReedDev].[dbo].[sf_page_node] WHERE ID = 'GUID from id2 col'Excellent. That is exactly what I needed. I found it! Thank you.