USP_FILE_FOLDERS_IN_USE_BY_PART
Definition
Copy
create procedure dbo.USP_FILE_FOLDERS_IN_USE_BY_PART
as
begin
select distinct [SITEFOLDERID] as ID
from dbo.[DOCUPLOADPART]
where [SITEFOLDERID] is not null
end