We have a database with 8535 tables (not my design, it's an application vendors configuration).
When we try to use their application to create a new table OR use Enterprise Manager, it just hangs. No Table is ever created.
In the logs i'm getting:
WARNING: EC 4fc73af0, 0 waited 1200 sec. on latch caf408, class MISC. Not a BUF latch.
Waiting for type 0x4, current count 0xa, current owning EC 0x4DD27B10.
If i script a table:
CREATE TABLE [dbo].[Testing_Create] (
[name] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
and run this in QA against the Database in question, it works fine.
I'm out of ideas. Any possible suggestions?
"The only desert to an Irishman is an empty glass".
When we try to use their application to create a new table OR use Enterprise Manager, it just hangs. No Table is ever created.
In the logs i'm getting:
WARNING: EC 4fc73af0, 0 waited 1200 sec. on latch caf408, class MISC. Not a BUF latch.
Waiting for type 0x4, current count 0xa, current owning EC 0x4DD27B10.
If i script a table:
CREATE TABLE [dbo].[Testing_Create] (
[name] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
and run this in QA against the Database in question, it works fine.
I'm out of ideas. Any possible suggestions?
"The only desert to an Irishman is an empty glass".