I'm trying to script the changes to a SQL Server Compact Edition database running on windows mobile 6 and could really use:
EXECUTE sp_rename 'MyTable.SomeColumn', 'BrandNewName', 'COLUMN'
What other system stored procedures are available?
What are the differences to the non compact version?
Edit: There ARE system stored procedures in ce, sp_rename is an example although it only seems to work against tables not columns.