In Memoriam: Tai'lahr
OpenUru.org, along with the rest of the Mystonline community, is mourning the loss of Tai'lahr on October 16th, 2019.
Rest in Peace, friend.
Difference between revisions of "User talk:Mac Fife"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | + | == List in Code == | |
+ | For the convenience of shard operators, below is the names list as of 17 Oct 2015 | ||
+ | Richard "ShadowCats" Bader\nJeannie "jmb30321" Barcus\nJanet "Pehpsi" Burress\nCAGrayWolf\nJames "Aquila" Carpenter\n | ||
+ | Virginia "Terra" Cinova\nWillow "Wheely" Engberg\nCindy Farrar\nGandhar\nRon Hayter\nJahuti\nMaureen "Mo\'zie" Jannot\n | ||
+ | JDrake\nDeirdre Karris\nKatzi\nWilliam "oldmanjob" Maier\nLen "Flyboy" Mumbower\nMyst\'Aken\nPerlenstern\n | ||
+ | Mark "Zardoz" Plummer\nRamsine\nJim "Dust\'ei" Rhodes\nJosef Riedl\nSil-Oh-Wet\nRosette Taylor\n | ||
+ | Generally, when copying the above, you will need to remove any line breaks to create a string on a single line. | ||
− | + | A sample SQL statement to update the directly in the database is given below where <code>string_of_names</code> should be replaced by the string given above. The example is for MOSS and PostgeSQL but the syntax for other servers and databases will be similar. | |
− | + | '''SQL code for MOSS servers'''<ref>Coding provided by Christian Walther.</ref><hr><syntaxhighlight lang="sql">UPDATE textnote SET value = E'string_of_names' WHERE title = 'MemorialImager';</syntaxhighlight> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | '''SQL code for MOSS servers'''<ref>Coding provided by Christian Walther.</ref><hr><syntaxhighlight lang="sql">UPDATE textnote SET value = E' |
Revision as of 12:47, 20 October 2015
List in Code
For the convenience of shard operators, below is the names list as of 17 Oct 2015
Richard "ShadowCats" Bader\nJeannie "jmb30321" Barcus\nJanet "Pehpsi" Burress\nCAGrayWolf\nJames "Aquila" Carpenter\n Virginia "Terra" Cinova\nWillow "Wheely" Engberg\nCindy Farrar\nGandhar\nRon Hayter\nJahuti\nMaureen "Mo\'zie" Jannot\n JDrake\nDeirdre Karris\nKatzi\nWilliam "oldmanjob" Maier\nLen "Flyboy" Mumbower\nMyst\'Aken\nPerlenstern\n Mark "Zardoz" Plummer\nRamsine\nJim "Dust\'ei" Rhodes\nJosef Riedl\nSil-Oh-Wet\nRosette Taylor\n
Generally, when copying the above, you will need to remove any line breaks to create a string on a single line.
A sample SQL statement to update the directly in the database is given below where string_of_names
should be replaced by the string given above. The example is for MOSS and PostgeSQL but the syntax for other servers and databases will be similar.
SQL code for MOSS servers[1]
UPDATE textnote SET value = E'string_of_names' WHERE title = 'MemorialImager';
- ↑ Coding provided by Christian Walther.