> From: "Ailsom F. Heringer (Osklen)" <[EMAIL PROTECTED]> > Date: Mon, August 21, 2006 5:42 am > To: [email protected] > > Stephen, > > I decided to take look into the table SYSOBJECTS. All tables, > procedures, functions, ..., has a line in this table, so if there is no > line for the function i need, I can run the script.
To get just your functions in YOUR DB select * from sysobjects where xtype = 'FN' -- or to find it by name name ='fnDB_AD_MenuItemSecurity' -- one function I have _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

