vote up 0 vote down star

I have a SQL Server 2000 database that will not display the column list for any tables in the View "designer" in Enterprise Manager This problem exists when either designing a new view or when editing existing views. All that is displayed for each table in the diagram is "* (All Columns)". The views otherwise work.

I do NOT have this problem with any other databases.

I ran DBCC CHECKDB on this database and it reported 0 errors.

The SQL Server Log files do not report any errors other than "Error: 15457, Severity: 0, State: 1" which, IIRC, is not really an error and has nothing to do with this problem.

How can I fix this ?

flag
are you logged on as 'sa'? – codeulike May 4 at 23:55
Yes. I am logged in as sa. I just realized that this database has "." in its name. I'm betting this has something to do with the problem. (I received the database from a customer) – Craig L May 5 at 0:03
yes, perhaps try restoring the database with a different name that doens't have the "." – codeulike May 5 at 0:05
Thanks ! I did that and it solved the problem. – Craig L May 5 at 0:12

1 Answer

vote up 1 vote down check

(cough) um ... this appears to be a bug in Enterprise Manager that happens when the database name has a full stop in it.

Check whether the database name has a full stop (".") in it, and if it has, restore the database with a different name, omitting the full stop.

(answer gleaned from the comment conversation above)

link|flag

Your Answer

Get an OpenID
or

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