I want to use dbo.split and insert data into temp table. Please correct the following query.
SELECT dbo.Split('002,003,004', ',') into #Temp
select * from #Temp
Expected Output:
Items
002
003
004
Error message thrown:
Cannot find either column "dbo" or the user-defined function or aggregate "dbo.Split", or the name is ambiguous