Hello all,
I have the following script
Select so.name,sc.name,st.name,sc.length,so.type,sc.type, ownername
FROM syscolumns sc,master..systypes st,sysobjects so
WHERE sc.id in (select id from sysobjects where type ='P')
AND so.type ='p'
AND sc.id = so.id
AND sc.type = st.type
AND sc.type <> 39
Which will list all procs but I would like to see only the ones I have created.
Any idea?
Thanks
I have the following script
Select so.name,sc.name,st.name,sc.length,so.type,sc.type, ownername
FROM syscolumns sc,master..systypes st,sysobjects so
WHERE sc.id in (select id from sysobjects where type ='P')
AND so.type ='p'
AND sc.id = so.id
AND sc.type = st.type
AND sc.type <> 39
Which will list all procs but I would like to see only the ones I have created.
Any idea?
Thanks