Hi rmiao,Yes, Goldmine is supported for SQL 2005. It better be, SQL 2000 isat end-of-life in April next year.The apps sps are not in the master database. The sp just containsa reference to a field in a table that no longer exists in themaster database. The offending code is copied below. It wouldappear that I can mostly use sys.types instead, but the behaviorof the WHERE block will need to change because of the referenceto fixlen. I am not sure of how to change it or what theconsequences will be.Cheers,GeoffSELECT @datatype = convert (sysname,case when t.xusertype > 255 then t.name else d.TYPE_NAME end) FROM sysobjects o, master.dbo.spt_datatype_info d, systypes t, syscolumns c LEFT OUTER JOIN syscomments m on c.cdefault = m.id AND m.colid = 1WHERE o.name like 'contsupp' AND o.id = c.id AND t.xtype = d.ss_dtype AND c.length = isnull(d.fixlen, c.length) AND o.type <> 'P' AND isnull(d.AUTO_INCREMENT,0) = isnull(ColumnProperty (c.id, c.name, 'IsIdentity'),0) AND c.xusertype = t.xusertype AND c.name like @fieldname