0

I have a function which accesses temporary tables. I can create this function in a session and drop the function once application exit the session. But I do not want to recreate the function in every session.

Will the function remain valid if I do not recreate in each session?

Vishal
  • 3,189
  • 1
  • 15
  • 18
  • Well...Have you tried not recreating it? – Jakub Kania Jul 24 '13 at 12:02
  • No, I have not. But in my code I am unable to reach to this point, so I could not try it yet. So in the meantime, I thought to get some concrete information on the topic. – Vishal Jul 24 '13 at 13:40

1 Answers1

0

Your function validity checking in run time. You don't need to drop your function.

Yuri Levinsky
  • 1,515
  • 2
  • 13
  • 26