Posts Tagged ‘Oracle’

FRM-92050 failed to connect to Server /forms/servlet -1 Applet

July 7th, 2015, posted in Oracle
Share

FRM-92050 failed to connect to Server /forms/servlet -1 Applet, Oracle Error,Oracle Application Error,Application Error,Oracle Application R12 Error,Oracle Application 11g Error,Oracle Application 11g ,Oracle Application R12,Oracle Database 11g Error,Oracle Application, Oracle Database ,Oracle Database DBA,Oracle Application DBA, Oracle Dba,Oracle APPs DBA,failed to connect to Server,failed to connect to forms,failed to connect ,Oracle




Solution :

MSIE 8 —>Tools > Internet Options >
Security Settings –>Custom Level >
Scroll down to entry “Enable XSS Filter” > Select Disable XSS Filter button.



Share

Oracle Default port 8889 to 8080

May 21st, 2015, posted in Oracle
Share

Check out the file default-web-site.xml in the j2eeDevSuiteconfig folder.

Share

Check Oracle Archived Redo Log

May 14th, 2015, posted in Oracle Queries
Share

Archive logging is essential for production databases where the loss of a transaction might be fatal. It is generally considered unnecessary in development and test environments.

To check if the ARCHIVELOG mode is enabled

  1. Log into Oracle server as an Oracle user with SYSDBA equivalent privileges.
  2. Enter the following command at the SQL*Plus prompt:
    ARCHIVE LOG LIST;

 

Check Oracle Archived Redo Log,Check Oracle Archived ,Redo Log,Check Oracle Archiving,Check Oracle  Redo Log,Redo Lob,Oracle Archived Redo,Oracle,Oracle DBA,Oracle DBA Task,Oracle Archiving,Oracle Archiving Log

To see the current archiving mode, query the V$DATABASE view:

SELECT LOG_MODE FROM SYS.V$DATABASE;

LOG_MODE
------------
ARCHIVELOG


The SQL*Plus command ARCHIVE LOG LIST displays archiving information for the connected instance. For example:

SQL> ARCHIVE LOG LIST

Database log mode              Archive Mode
Automatic archival             Enabled
Archive destination            D:oracleoradataIDDB2archive
Oldest online log sequence     11160
Next log sequence to archive   11163
Current log sequence           11163

This display tells you all the necessary information regarding the archived redo log settings for the current instance:

  • The database is currently operating in ARCHIVELOG mode.
  • Automatic archiving is enabled.
  • The archived redo log destination is D:oracleoradataIDDB2archive.
  • The oldest filled redo log group has a sequence number of 11160.
  • The next filled redo log group to archive has a sequence number of 11163.
  • The current redo log file has a sequence number of 11163.

 

You can also run this UNIX/Linux/Solairs command to see if you are running in archivelog mode.  If you are in ARCHIVELOG mode, you will see rows returned by this ps command:

$ ps -ef|grep -i _arc

——————————————————————-

Links :
http://www.dba-oracle.com/t_check_if_running_in_archivelog_mode.htm
http://docs.oracle.com/cd/B28359_01/server.111/b28310/archredo008.htm#ADMIN11355
http://psoug.org/reference/archivelog.html
https://support.ca.com/cadocs/0/CA%20ARCserve%20%20Backup%20r16-ENU/Bookshelf_Files/HTML/oraclewn/index.htm?toc.htm?ow_check_archivelog_mode.htm

Share

Oracle Form Builder issue in Windows 7 : The color scheme has been changed

May 8th, 2015, posted in Microsoft, Oracle
Share

Oracle Form Builder issue in Windows 7 : The color scheme has been changed,Oracle Form Builder issue in Windows 7,The color scheme has been changed,color scheme has been changed,color scheme ,has been changed,Oracle Form Builder issue in Windows 7,Oracle Form Builder ,issue in Windows 7,Oracle Form Builder ,issue Windows 7,Oracle ,Form Builder issue in Windows 7,Oracle, Form Builder,Windows 7

 

Oracle Form Builder issue in Windows 7 : The color scheme has been changed

 

Oracle Form Builder issue in Windows 7 : The color scheme has been changed,Oracle Form Builder issue in Windows 7,The color scheme has been changed,color scheme has been changed,color scheme ,has been changed,Oracle Form Builder issue in Windows 7,Oracle Form Builder ,issue in Windows 7,Oracle Form Builder ,issue Windows 7,Oracle ,Form Builder issue in Windows 7,Oracle, Form Builder,Windows 7


The message “the color scheme has been changed to window 7 basic is related to the Windows Theme Aero .

For the problem “it is not open properly. it opened but in minimized state.”.
It is because the the Reports Builder Window is displayed Off the Screen

Reports Builder / Forms Builder Window Visible Only If Maximized (Doc ID 208196.1)

http://support.microsoft.com/kb/181691
Some Programs Are Displayed Off the Screen

Method 1 :

-Start the program.
-Right-click the program on the taskbar, and then click Maximize.
-Right-click a blank area of the taskbar, and then click Cascade Windows.
-Resize the program’s window as appropriate.

Method 2 :

-Start the program.
-Right-click the program on the taskbar, and then click Move.
-Move the mouse pointer to the middle of the screen.
-Use the ARROW keys on the keyboard to move the program window to a viewable area on the screen.
-Press ENTER.
-Resize the window if necessary.

Good Luck.. 🙂

Share

Query to find sessions generating more Archives

April 27th, 2015, posted in Oracle Queries
Share

This Query is to find the session that is generating more Archives.

 

select to_char(sysdate,'hh24:mi'), username, program , a.sid, a.serial#, b.name, c.value
from v$session a, v$statname b, v$sesstat c
where b.STATISTIC# =c.STATISTIC#
and c.sid=a.sid and b.name like 'redo%'
order by value;
Share