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.
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 calledSYSUserscaused me no problems however but doing it all in lower case does! – Martin Smith Apr 6 '11 at 14:36