HI All,
I am trying to list all the objects for a particular owner using the below query.
select su.name + '.' + so.name from sysobjects so,sysusers su where so.type = 'U' and so.uid = su.uid order by su.name,so.name
Isnt there a simple query using sp_iqhelp
I just want to list for a particular owner.