The easiest way to see the contents of (most) objects:
sp_helptext blah
If you replace blah with the name of the object. This will give the real code that created the object. in this case, for example, this can lead to:
CREATE VIEW blah AS select blah.column1,blah.column2 from blah_table
source share