Guys, I am using SQL Server 2000 and executing the sp_columns stored procedure to get a layout of my table. One of my fields is a formula field and my question is, how can I determine this through sp_columns? sp_columns does not seem to show this information.
THanks in advance
You could dump the results of sp_columns to a temp table, and then add on the ColumnProperty function to the results of that…