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
function addOrdinalSuffix(number) { | |
return number+(['st','nd','rd'][( number +'').match(/1?\d\b/)-1]||'th'); | |
} |
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
<string name="link"> <![CDATA[<a href="%1$s"><u>%2$s</u></a>]]> </string> |
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
SSMA | |
General Solutions for migration | |
1. Update Mysql DB | |
2. SSMA > Table > Refresh from DB | |
3. SSMA > Table > Convert Schema | |
4. SSMA > SQL Server Table > Synchronize with Database | |
5. SSMA > MySQL Table > Migrate Data | |
6. Apply previous MySQL logic in MSSQL equivalent (most should be possible) in separate query |
OlderNewer