J
Actually, executing sp_tables stored procedure is better since sysobjects
structure or accesibility might change at some point.
Mark Rae said:LOL! As might the sp_tables stored procedure...
No, AFAIK it isn't recommended accessing sysobjects directly because it
might really change while stored procedures such as sp_tables will still
accept same parameters and will yield same output.
My Teacher tell us don't use the stored procedures in my csharp code . soMark Rae said:So none of the system stored procedures has ever changed...?
My Teacher tell us don't use the stored procedures in my csharp code . so
that i must write code to make sure the table is exist or not.