March 17, 2005 at 12:23 pm
I am executing a DTS package that is designed to copy objects from DB to DB. I am receiving an error:
Step Error Source: Microsoft SQL-DMO (ODBC SQLState: 42S02)
Step Error Description:[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'dbo.fnPrimaryDivisionOfUser'.
[Microsoft][ODBC SQL Server Driver][SQL Server]Could not use view or function 'vwAllUserRoles' because of binding errors.
The view references the function, but not vice versa. Any clues why I'm getting a binding error when the function is simply:
Create Function dbo.fnPrimaryDivisionOfUser(@UserID uniqueidentifier)
Returns char(3)
as
begin
declare @Division char(3)
select top 1 @Division = Division
from UserDivisions
where UserID = @user-id
order by CreatedDate
return @Division
end
Thanks. RH
March 17, 2005 at 12:41 pm
Disregard, it just occured to me that the view is being seen as a dependent object - so I will have to drop that view first and recreate it after.
With dependencies, I see a lot of drops and recreates in my future.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply