pini Liked 2 Years ago through
Blogs
We know that it is impossible to access a temporary table from within a user define function
e.g., the following script will fail
--Checks if the #Temp table exists or not and if so drops it
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
BEGIN
Drop Ta...