Viewing 3 posts - 31 through 33 (of 33 total)
look at this post:http://www.sqlservercentral.com/scripts/Metadata/64603/
or try this:
SELECT syscolumns.name AS ColumnName,
systypes.name AS Datatype,
syscolumns.length AS Length
FROM sysobjects,
syscolumns,
systypes
WHERE sysobjects.id = syscolumns.id
AND syscolumns.xtype = systypes.xtype
AND sysobjects.name =...
October 14, 2008 at 5:04 am
thanks guys.
i eventually came up with this but i think i am going to stick with my first bit of code:
SELECT
sp_id,coname
September 13, 2007 at 12:18 am
Try using the execution plan to see where your code is slowest or most resource intensive. then use modularise your code. by this i mean use views, user defined functions...
September 12, 2007 at 8:23 am
Viewing 3 posts - 31 through 33 (of 33 total)