Thursday, October 12, 2017

Oracle Apex ---oracle service instance xe failed message when install.

Solution :

1. Try to delete the service using the command prompt:
1. Click Start, type ‘cmd’ in the search field, and when ‘cmd’ shows up in the list of options, right click it and select ‘Run as Administrator’.
2. At the Command Prompt window, type “sc delete OracleServiceXE” without the quotes and press Enter.
3. Type “Exit” and press Enter.
Hope it helps. 
C:\> sc stop OracleServiceXE                      (to Stop service)
C:\> sc delete OracleServiceXE                      (to remove)
                             

Related Posts:

  • oracle forms where condition default where PROCEDURE PRC_SEARCH IS V_WHERE varchar2(4000); BEGIN   V_WHERE := 'COMPANY_NO=:GLOBAL.G_COMPANY_NO'; IF :CTRL_SEARCH.SLOT_GROUP IS NOT NULL THEN V_WHERE := V_WHERE||' AND SLOT_GROUP = :CTRL_SEARCH.SLOT_GROU… Read More
  • Colling form condition add. DECLARE cl_frm varchar2(10); begin cl_frm := GET_APPLICATION_PROPERTY(calling_form); if cl_frm='ORF_M03' THEN  SET_TAB_PAGE_PROPERTY('OR_ADVICE', enabled, property_false);  SET_TAB_PAGE_PROPERTY('OR_ADVICE', vis… Read More
  • Exception handle If used function EXCEPTION     WHEN NO_DATA_FOUND THEN    RETURN null; end; Others EXCEPTION     WHEN NO_DATA_FOUND THEN     null; end; … Read More
  • Forms Alert Example 1 :  SHOW_ALT('PMF_M35_007',V_ALET);         IF   UPPER(V_ALET)  = 'NO' THEN                      RETURN;     … Read More
  • Oracle date function(Attendance related). Note : Your database table name  hr_biometricattendancecnt it has one field login_time this query give you first login time and last login time. select to_char(first_login,'HH24:Mi:SS AM')First,to_char(last_login,'HH2… Read More

0 comments:

Post a Comment