Error en la conexion a la base de datos con el jdeveloper
tengo un gran problema al conectar el jdeveloper con mi base de datos en oracle me sale el sigueinte error:
ORA-00604: error occurred at recursive SQL level 1
ORA-12705: invalid or unknown NLS parameter value specified
me podrian ayudar por favor!!!
ORA-00604: error occurred at recursive SQL level 1
ORA-12705: invalid or unknown NLS parameter value specified
me podrian ayudar por favor!!!
Saludos cordiales:
Con respecto a este tema tienes que revisar el oracle home directory y verificar la variable NLS_LANG. Si aun asi no funciona revisa el idioma en la configuracion regional del sistema operativo
Att,
ramiro
Con respecto a este tema tienes que revisar el oracle home directory y verificar la variable NLS_LANG. Si aun asi no funciona revisa el idioma en la configuracion regional del sistema operativo
Att,
ramiro
Try this:
Locale locales [] = Locale.getAvailableLocale();
// Now before any attempt to connect to the database
// try changing the Locale
for(int i = 0; i < locales.length;i++){
Locale.setDefault(locales[i]);
// And now write code to load driver, and connect
yourDBManager.connect();
}
At least one locale should success
If you are successful write me an email [email protected] I would be happy to know it helps.
Regards.
Locale locales [] = Locale.getAvailableLocale();
// Now before any attempt to connect to the database
// try changing the Locale
for(int i = 0; i < locales.length;i++){
Locale.setDefault(locales[i]);
// And now write code to load driver, and connect
yourDBManager.connect();
}
At least one locale should success
If you are successful write me an email [email protected] I would be happy to know it helps.
Regards.
Prueba esto
http://forums.oracle.com/forums/thread.jspa?forumID=83&threadID=282354
http://forums.oracle.com/forums/thread.jspa?forumID=83&threadID=282354