Hi,
I'm trying to select some stored procedures' names who cannot be found into
the 'FilterProcedur e' field of my table 'Lists':
select name
from sysobjects
where (type = 'p') and
(name not in
(select FilterProcedure from Lists
where FilterProcedure is not null))
order by name asc
'FilterProcedur e' is defined as nvarchar(256), exactly as the 'name'
field of the 'sysobjects'. But the "not in" condition is never respected,
even if the intersection between the tables on the 'FilterProcedur e' field
is not void.
Do you know what's wrong here?
Bogdan.
I'm trying to select some stored procedures' names who cannot be found into
the 'FilterProcedur e' field of my table 'Lists':
select name
from sysobjects
where (type = 'p') and
(name not in
(select FilterProcedure from Lists
where FilterProcedure is not null))
order by name asc
'FilterProcedur e' is defined as nvarchar(256), exactly as the 'name'
field of the 'sysobjects'. But the "not in" condition is never respected,
even if the intersection between the tables on the 'FilterProcedur e' field
is not void.
Do you know what's wrong here?
Bogdan.
Comment