Could it be that you have a case-sensitive collation, so that when you do SELECT * FROM sysobjects WHERE name = 'MYTABLE' and xtype = 'U', it doesn't return anything because the table is actually called "MyTable"? Are you sure it is a table and not a view or something else? What does this return? SELECT * FROM INFORMATION_SCHEMA.TABLES
John