Hi !
I have a problem.
Well, I have an VB6 app that connects to an oracle database. Normally it uses just one session to connect to the database, but after running an update query on a table, it opens another one, on wich it runs just one query : SELECT VALUE
FROM SYS.NLS_DATABASE_PARAMETERS
WHERE PARAMETER = 'NLS_NCHAR_CHARACTERSET'
The update query is :
UPDATE SYS_PASS set LAST_LOG = SYSDATE where ID = 'xxxx'
Any idee why this is happening, or how could i get rid of this extra session ?