Last active
June 15, 2018 09:53
-
-
Save ProNotion/b6fce84c97e211976aca7f4fa73f92a3 to your computer and use it in GitHub Desktop.
Migrates records from the umbracoRedirectUrl table to the icUrlTracker table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO [icUrlTracker] (OldUrl, RedirectNodeId, Notes) | |
SELECT | |
RIGHT(url, LEN(url) - 1), | |
(SELECT TOP (1) | |
id | |
FROM umbracoNode | |
WHERE (uniqueID = umbracoRedirectUrl.contentKey)) | |
AS NodeId, | |
'Import from umbracoRedirectUrl table' AS Note | |
FROM umbracoRedirectUrl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment