Posts
Sort by recent activity
synchronize script can't handle function dependencies
The synchronize script made by SqlCompare8 has (among alot of other things) two table-valued function:
CREATE dbo.FUNCTION1()
RETURNS TABLE
AS
RETURN (
SELECT ... FROM dbo.FUNCTION2()
INNER JOIN .....