Created
February 5, 2013 17:11
-
-
Save mstarkman/4715921 to your computer and use it in GitHub Desktop.
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
select * from aspnet_Users | |
where UserName like '%julianneyates%' | |
update aspnet_users | |
set loweredusername = LTRIM(RTRIM(loweredusername)) | |
where UserName like '%julianneyates%' | |
update cs_users | |
set username = LTRIM(RTRIM(username)) | |
where UserName like '%julianneyates%' | |
select * from cs_posts where postauthor like '%julianneyates%' | |
update cs_posts | |
set postauthor = LTRIM(RTRIM(postauthor)) | |
where postauthor like '%julianneyates%' | |
update cs_posts | |
set postauthor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment