Hello everyone, This week, one of my customer have experienced a problem. They provide some Web Service to their suppliers and one of those web services creates some rows and then returns the response as successful operation but just after that, supplier queries the newly created those rows but they get “no rows”! When analyze […]
Month: May 2019
How to Get Your SID? USERENV vs V$MYSTAT!
Hello everyone, This is an easy question. How to find your own session SID and when you ask Google for it, you will find many answers. While reading some documents, I realized that some Gurus are using V$MYSTAT to get current SID:
1 |
select sid from v$mystat where rownum=1; |
I always prefer USERENV(‘SID’) context to get SID and curious about which […]