Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table with a space in the name generated by a system.

I am trying to alter the table name to remove the space so that it can be processed by a library the pre-exists.

I am trying:

ALTER TABLE 'My Table'
 RENAME TO 'MyTable';

I have also tried double quotes, no luck.

Any pointers?

share|improve this question
ALTER TABLE [My Table]... – Justin Satyr Oct 5 '11 at 14:42

3 Answers

up vote 7 down vote accepted

[This will not work in MS-Access. Tables cannot be renamed in Access. Not clear if original question applied to MS Access.]

Square brackets:

ALTER TABLE [My Table]
 RENAME TO [MyTable];

Square brackets can't enclose the entire object "path" so this won't work:

ALTER TABLE [MyDatabase.dbo.My Table]

but this will

ALTER TABLE [MyDatabase].[dbo].[My Table]
share|improve this answer
With Access 2003, any ALTER TABLE statement which includes RENAME throws an error message "Syntax error in ALTER TABLE statement". Same result whether or not old and new table names are bracketed. Does this actually work in any version of MS Access? – HansUp Oct 5 '11 at 15:52
Correct, tables can't be renamed from SQL in MS Access. I'm not sure if the original "Access" tag referred to the product or the generic activity. Question was editted to add MS-Access. – Jamie F Oct 5 '11 at 15:58
Please edit your answer to clarify it does not apply to MS Access. Thanks. – HansUp Oct 5 '11 at 16:07

[My Table]

You can use square brackets in SQL to get around this.

It has many functions, you can use keywords in tables, put spaces and periods in table names or schemas, etc.

For example you can have the schema [Work.Employees]. With the square bracket it would be [Work.Employees].Addresses (schema, table). However, if you forget the brackets it will attempt to find the database Work -> schema Employees -> Table Addresses.

However, it is generally good practice to avoid doing any of the above :)

share|improve this answer

This is one of those things that is a lot easier to achieve using the Access GUI!

To do the same in SQL DDL you must 'clone' the table, for which you must already have knowledge of all the attribute names, types, constraints, etc, noting it may have features that are not creatable via SQL DDL e.g. Validation Rules. Then you need to populate it using the original table. The you drop the original. Phew!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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