Someone renamed our Users table to SYSUsers, which is a key sql table name. Is there a way to rename this table?

I've tried right-clicking the table and going to rename, and running sp_RENAME on it, but both are trying to rename the system sysusers table instead of the user-created one. I can't even select or export data from the [MyDatabase].[dbo].[SYSUsers] since it reads from the sql server sysusers table instead of the user-created one.

We're using SQL Server 2005.

link|improve this question

"Someone renamed our Users table to SYSUsers" - are they roasting over a large fire? How did they have the permissions to do that? Make another space over that fire! – Mitch Wheat Apr 6 '11 at 14:23
That is not the correct casing of the table name though. Presumably in a case sensitive collation you wouldn't get that issue. – Martin Smith Apr 6 '11 at 14:25
1  
@Rachel - Well if its not in production one workaround might be to temporarily change the DB collation to CS rename the table then switch back. – Martin Smith Apr 6 '11 at 14:30
1  
@Rachel - It's the database default collation I was suggesting. ALTER DATABASE [YourDB] COLLATE SQL_Latin1_General_CP1250_CS_AS (or any other case sensitive collation) I work on a case sensitive instance so I can't test this would work. I can confirm that creating a table called SYSUsers caused me no problems however but doing it all in lower case does! – Martin Smith Apr 6 '11 at 14:36
1  
@Martin Thanks, that worked. If you post it as an Answer I'll accept it – Rachel Apr 6 '11 at 14:52
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

SYSUsers doesn't cause any such problem for me because I work on a case sensitive instance (however creating a table called sysusers does!).

Perhaps you could try temporarily altering the collation of the database to a CS one and switch it back after?

link|improve this answer
1  
Thanks Martin. For others who encounter this issue, I ended up running SELECT SERVERPROPERTY('COLLATION') to get the original Collation value, storing that somewhere and running ALTER DATABASE MyDatabase COLLATE SQL_Latin1_General_CP1250_CS_AS, ran my rename statements, then ran the ALTER DATABASE statement again with the old Collation value – Rachel Apr 6 '11 at 15:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.