Oracle.ManagedDataAccess and ORA-01017: invalid username/password; logon denied

I have been struggling with this same issue for a couple of weeks and finally have a resolution. I had to disable the FIPS security policy, try setting this key: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy] “Enabled”=dword:00000000 to zero, it worked perfectly for me I was following your thread your blank password issue eventually pointed me here: https://community.oracle.com/thread/2557592?start=30&tstart=0

Return results of a sql query as JSON in oracle 12c

Oracle 12c version 12.1.0.2 (the latest version as of 11.11.2014) adds JSON support: https://docs.oracle.com/database/121/NEWFT/chapter12102.htm#BGBGADCC It’s been available since October 17th. https://blogs.oracle.com/db/entry/oracle_database_12c_release_1 If you are unable to patch/work with that version there is an excellent package written by Lewis Cunningham and Jonas Krogsboell: PL/JSON * http://pljson.sourceforge.net/ It’s an excellent package (I have used it in numerous … Read more