I want to rename all my sql tables, having the first character upper case.
So:
[blahField] [int] NOT NULL,
should be converted to:
[BlahField] [int] NOT NULL,
(it doesn't matter if [int] becomes [Int].
I am just using a c# console application to do this quickly.