In My Case dbo.Split is Not Working in Perticular DB
Ex:
Declare @ID varchar(100)
SET @ID='1,2,3,4,5'
SELECT Value FROM dbo.Split(@ID,',')
…..Is Working In Some DB,
But In Some Database
getting Error:
Invalid object name ‘dbo.Split’. Why So ?
Can Any one Tell me Solution?
Check that the function named
Splitexist in your database.The function should be present in the database where it is working.