oracle - How to deallocate cursor in PLSQL? -
oracle - How to deallocate cursor in PLSQL? -
i code on both sql server , oracle. when i'm coding in sql server, used this:
open curusers; close curusers; deallocate curusers; now, when i'm coding in oracle, used this:
open curusers; close curusers; i saw deallocate keyword in pl/sql when used statement
deallocate(curusers); it throws error. how can same thing (deallocation) in pl/sql?
oracle doesn't require deallocate cursor's memory explicitly. close(cursor) fine.
oracle plsql cursor
Comments
Post a Comment