Created
November 2, 2018 15:05
-
-
Save accasey/3ca17d5b034b3882412bb8f5770bdab4 to your computer and use it in GitHub Desktop.
Reset the URLs for the pinned tiles
This file contains hidden or 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
| -- MSSQL | |
| UPDATE PS_PT_PORTAL_PINTO | |
| SET PORTAL_URLTEXT = REPLACE(PORTAL_URLTEXT,'old_path','new_path') | |
| / | |
| -- ORACLE | |
| UPDATE PS_PT_PORTAL_PINTO | |
| SET PORTAL_URLTEXT = REGEXP_REPLACE(PORTAL_URLTEXT,'old_path','new_path') | |
| / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment