Database service stops

Hi,
I am recently having a problem in one of the laptop used by our testers.
The laptop has got following config:2GB RAM Intel Centrino Processor,Windows XP Sp3, 80GB HDD
It has oracle DB 10g Enterprise Edition Release 10.2.0.4.0 - Production,
Oracle Forms&Reports 6i,8i.
Our appliction is based on Oracle 2Tier architecture.
When the user opens the application the DB server services stops most of the time. And the we have to start the services manually.
I Dropped the server and again recreated it but it didnt solved the problem.
Can any one give any input into this.
Thanks in advance.
Kumar

Check the windows event viewer and database alert log when next time this service stops.
That might provide a clue.
Having said that, your system has 2 GB RAM and you are running database along with app server (?) on that. Memory availability is going to be an issue and a cause of problems too.

Similar Messages

  • Database Connection stops Tomcat service

    Hi,
    I have a servlet runnning on tomcat 5.5. I am able to query the database and return results in a new page. AT this point if I hit the back button or type in the link for the original index.html page and resubmit my query, Tomcat service stops and I get an error message.
    Can anyone help
    ackage cpecode;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.sql.*;
    import java.lang.*;
    import java.text.*;
    public class cpeLogin extends HttpServlet {
    private Statement st = null;
    private Statement st2=null;
    private Connection c = null;
    private String URL = "jdbc:odbc:cpeSQL";
    //private String URL="jdbc:sqlserver://localhost:1433;"+"databaseName=cpeSQL;user=sa;password=administration10;";
    private String query,query2;
    private ResultSet rs=null;
    private ResultSet rs2=null;
    private HttpServletRequest req;
    private HttpServletResponse res;
    private PrintWriter output;
    private String ss,dob,lname,fname,keyfields,email,phone;
    private Locale currentLocale=new Locale("en","US");
    private SimpleDateFormat formatter=new SimpleDateFormat("MM/dd/yy",currentLocale);
    private SimpleDateFormat formattert=new SimpleDateFormat("hh:mm",currentLocale);
    private String apdate, compdate, dateofaction, action, course, comment;
    private int keyfield,seatint;
    private String wdate,wtime,room,seats,radioout;
    public void init(ServletConfig config) throws ServletException{
    super.init(config);
    try {
    Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
    //Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
    c =
    DriverManager.getConnection( URL, "sa", "administration10" );
    //DriverManager.getConnection(URL);
    catch ( Exception e ) {
    e.printStackTrace();
    c = null;
    return;
    public void doGet( HttpServletRequest req,
    HttpServletResponse res )
    throws ServletException, IOException{
    this.req=req;
    this.res=res;
    ss = req.getParameter( "ss" );//field is named this in database
    dob=req.getParameter("dob");
    lname=req.getParameter("from");
    email=req.getParameter("email");
    phone=req.getParameter("telnr");
    output = res.getWriter();
    res.setContentType( "text/html" );
    //output.println("<h1>test</h1>");
    //check that id is valid
    try{
    st=c.createStatement();
    query="Select * from simb103 where sslastfour='" + ss + "' and dob='" dob"'";
    rs=st.executeQuery(query);
    boolean moreRecords = rs.next();
    // If id does not exist, display a message
    if ( ! moreRecords ) {
    output.println("<FONT COLOR='#000000'><H1><U>CPE REGISTRATION</U></H1><HR>");
    output.println( "<H3> Invalid DOB or SS. Press Back Button and try again.</H3></FONT>" );
    output.close();
    st.close();
    c.close();
    return;
    lname=rs.getString("lastname");
    fname=rs.getString("fname");
    //for testing connection
    if (moreRecords) {
         output.println("<HTML>");
                        output.println("<HEAD>");
                        output.println("<FONT COLOR='#000000'><TITLE><CENTER>CPE REGISTRATION<HR></TITLE></HEAD><BODY>");
                        output.println("<H1><CENTER>YORK COLLEGE CPE REGISTRATION</H1></CENTER>");
    output.println(ss);
    output.println("<p></p>");
    output.println(query);
    output.println(rs.toString());
    output.println(lname);
    output.println(rs.getString("dob"));
    output.println("</font></html>");
    output.close();
    st.close();
    c.close();
    return;
    public void destroy(){
    try {
    if (c !=null){
    c.close();
    catch( Exception e ) {
    System.err.println( "Problem closing the database" );
    index.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <!-- saved from url=(0014)about:internet -->
    <HTML lang="EN">
    <HEAD>
    <TITLE>YORK COLLEGE CPE REGISTRATION</TITLE>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META NAME="description" CONTENT="">
    <META NAME="keywords" CONTENT="">
    <LINK href='../basic.css' rel='stylesheet'>
    <LINK rel="shortcut icon" href="../img/siteicon.ico" type="image/x-icon">
    <LINK REL=Contents HREF="index.html">
    <LINK REL=Home HREF="../index.html">
    <LINK REL=Search HREF="../search.htm">
    <LINK REL=Author HREF="contact.html">
    <SCRIPT TYPE="text/javascript" src=cpeval.js>
    </SCRIPT>
    <STYLE TYPE="text/css">
    @import url(../extrastyles.css);
    @import url(formval.css);
         .runinhdr { font-weight: bold; font-size: 50%; padding-right: 1em; }
    </STYLE>
    </HEAD>
    <BODY>
    <DIV ID="page">
    <DIV ID="wmbanner">
    <H1>YORK COLLEGE CPE REGISTRATION</H1>
    </DIV>
    <SCRIPT TYPE="text/javascript">
    // Only script specific to this form goes here.
    // General-purpose routines are in a separate file.
    function validateOnSubmit() {
    var elem;
    var errs=0;
    // execute all element validations in reverse order, so focus gets
    // set to the first one in error.
    if (!validateTelnr (document.forms.demo.telnr, 'inf_telnr', true)) errs += 1;
    if (!validateEmail (document.forms.demo.email, 'inf_email')) errs += 1;
    if (!validatePresent(document.forms.demo.from, 'inf_from')) errs += 1;
    if (!validatess (document.forms.demo.ss, 'inf_ss', true)) errs += 1;
    if (!validatedob (document.forms.demo.dob,'inf_dob', true)) errs += 1;
    if (errs>1) alert('There are fields which need correction before sending');
    if (errs==1) alert('There is a field which needs correction before sending');
    return (errs==0);
    </SCRIPT>
    <FORM NAME=demo onsubmit="return validateOnSubmit()" METHOD=GET ACTION="cpeLogin">
    <TABLE CLASS=formtab SUMMARY="CPE REGISTRATION FORM">
    <TR>
    <TR>
    <TD><LABEL FOR=ss>Enter Last Four Digits of SS#:</LABEL></TD>
    <TD><INPUT TYPE=text NAME="ss" ID="ss" SIZE="35" MAXLENGTH="4"
    ONCHANGE="validatess(this, 'inf_ss', true);"></TD>
    <TD id="inf_ss">Required. </TD>
    </TR>
    <TR>
    <TD><LABEL FOR=dob>Enter your Date of Birth (yyyymmdd): </LABEL></TD>
    <TD><INPUT TYPE=text NAME="dob" ID="dob" SIZE="35" MAXLENGTH="8"
    ONCHANGE="validatedob(this, 'inf_dob', true);"></TD>
    <TD id="inf_dob">Required.</TD>
    </TR>
    <TD STYLE="width: 10em">
    <LABEL FOR=from>Your name:</LABEL></TD>
    <TD><INPUT TYPE=text NAME="from" ID="from" SIZE="35" MAXLENGTH="50"
    ONCHANGE="validatePresent(this, 'inf_from');"></TD>
    <TD id="inf_from"></TD>
    </TR>
    <TR>
    <TD><LABEL FOR=email>Your e-mail address:</LABEL></TD>
    <TD><INPUT TYPE=text NAME="email" ID="email" SIZE="35" MAXLENGTH="50"
    ONCHANGE="validateEmail(this, 'inf_email');"></TD>
    <TD id="inf_email"> </TD>
    </TR>
    <!-- Note: the element to receive error messages must contain some data (for most,
    if not all, browsers). A   is sufficent. -->
    <TR>
    <TD><LABEL FOR=telnr>Your telephone number:</LABEL></TD>
    <TD><INPUT TYPE=text NAME="telnr" ID="telnr" SIZE="35" MAXLENGTH="25"
    ONCHANGE="validateTelnr(this, 'inf_telnr', true);"></TD>
    <TD id="inf_telnr">Required. 10 digits only.</TD>
    </TR>
    <TR>
    <TD> </TD>
    <TD><INPUT TYPE="Submit" NAME="Submit" VALUE="Send"></TD>
    <TD> </TD>
    </TR>
    </TABLE>
    </FORM>
    <HR> <!-- ====================================== -->
    </BODY>
    </HTML>
    Kaminie

    Hi srini
    My intention is try to install oracle soa suite 11g ,for that my prerequisites are ,installing a database (for that i installed oracle 11g r2 instead of oracle 10g database ),installation was successful,
    after that i installed weblogic server 1033(weblogic server 11g)
    when i am trying to install rcu script ,its giving invalid service name ,i guess the script is meant for creating tables in the database ,i am following the below document for installing Rcu script
    http://blogs.oracle.com/SOA/2009/08/installing_oracle_soa_suite_11.html
    here in this above document it says that install the XE database, but for installing oracle soa suite 11g installing 10g database is not recommended, that the reason why I installed oracle win32_11gr2_database ,can please suggest me the solution for installing the rcu scriprt on oracle 11g database
    OS I am using:windows xp servicepack 2
    Serice name I used:XE
    Port:1521
    Thanks
    Dileep.k

  • Stopping Database Service in Windows 2008

    Hi,
    Our Oracle 11g R2 Database 2 node rac runs on Windows 2008 Release 2.
    I use srvctl to stop database service instead of stopping the oracle database service on Services (services.msc).
    Even after stopping the services using srvctl, the oracle.exe will come in the process tab of Task Manager. In this case i need to invoke services.msc and stop the database services manually.
    Is there any way to stop the oracle process or the oracle services using srvctl.
    Thanks in advance for your help.
    Thanks,
    Yusuf

    944470 wrote:
    Hi,
    Our Oracle 11g R2 Database 2 node rac runs on Windows 2008 Release 2.
    I use srvctl to stop database service instead of stopping the oracle database service on Services (services.msc).
    Even after stopping the services using srvctl, the oracle.exe will come in the process tab of Task Manager. In this case i need to invoke services.msc and stop the database services manually.
    Is there any way to stop the oracle process or the oracle services using srvctl.
    Thanks in advance for your help.
    Thanks,
    YusufWhen you stop using SRVCTL, can you check the alert log file whether the instance was completely down?
    And all memory freed?
    Once you stop the service using SRVCTL, what is the memory usage from task manager for "oracle.exe"
    Check above points and post your findings.
    Also for better confirmation, check if is it ASM instance? just an crosscheck.

  • 11gR2 Install Error, Listener is not up or database service is not registered with it

    Hi all,
    I'm currently studying towards my OCA, I've passed 1z0-051 (SQL Fundementals I), and now I'm moving onto 1z0-052 (Admin 1).
    Im really having trouble creating a database in Oracle 11g R2 Enterprise Edition. I install the software no problem. Then I create a database, and during the creation I have to createsa listener which uses TCP (default port:1521) and IPC. whilst creating the database I get the following error
    'Listener is not up or database service is not registered with it. Start the Listener and register database service and run EM configuration Assistant again.'
    Now, before you lynch me, I have searched this forum for answer to this for a day and a half. I've also tried google, i just can't find a answer that sorts out my problem. please assist me.
    I'm running on Windows 7 Professional (32bit) (I have previously tried on the 64 bit version with teh same results).
    Here's teh contents of my listener.ora file:
    # listener.ora Network Configuration File: C:\app\Damien\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\Damien\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Damien\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = ipc))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.10.4)(PORT = 1521))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    ADR_BASE_LISTENER = C:\app\Damien
    Here's the contents of my tsnames.ora:
    # tnsnames.ora Network Configuration File: C:\app\Damien\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    Here is the last fe lines of my emConfig.log:
    Jan 18, 2014 9:38:22 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Jan 18, 2014 9:38:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Jan 18, 2014 9:38:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Damien\product\11.2.0\dbhome_1, and user: SYSMAN
    Jan 18, 2014 9:38:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Jan 18, 2014 9:38:23 AM oracle.sysman.emcp.ParamsManager checkListenerStatusForDBControl
    CONFIG: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1655)
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeSql(SQLEngine.java:1903)
    at oracle.sysman.emcp.ParamsManager.checkListenerStatusForDBControl(ParamsManager.java:3230)
    at oracle.sysman.emcp.EMReposConfig.unlockMGMTAccount(EMReposConfig.java:1001)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:346)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
    at oracle.sysman.assistants.dbca.backend.PostDBCreationStep.executeImpl(PostDBCreationStep.java:968)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2667)
    at java.lang.Thread.run(Thread.java:595)
    Jan 18, 2014 9:38:23 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Listener is not up or database service is not registered with it. Start the Listener and register database service and run EM Configuration Assistant again .
    Refer to the log file at C:\app\Damien\cfgtoollogs\dbca\orcl\emConfig.log for more details.
    Jan 18, 2014 9:38:23 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Listener is not up or database service is not registered with it. Start the Listener and register database service and run EM Configuration Assistant again .
    at oracle.sysman.emcp.ParamsManager.checkListenerStatusForDBControl(ParamsManager.java:3245)
    at oracle.sysman.emcp.EMReposConfig.unlockMGMTAccount(EMReposConfig.java:1001)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:346)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
    at oracle.sysman.assistants.dbca.backend.PostDBCreationStep.executeImpl(PostDBCreationStep.java:968)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2667)
    at java.lang.Thread.run(Thread.java:595)
    Jan 18, 2014 9:38:23 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\Damien\product\11.2.0\dbhome_1\oui
    My Listner status output is here:
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 18-JAN-2014 10:14:39
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=ipc)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Production
    Start Date                18-JAN-2014 09:27:34
    Uptime                    0 days 0 hr. 47 min. 6 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\app\Damien\product\11.2.0\dbhome_1\network\admin\listener.ora
    Listener Log File         c:\app\damien\diag\tnslsnr\LONDON\listener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\ipcipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.10.4)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    I can login as sys into my database through sqlplus, so it seems the database is up and running, it just seems to be a listener problem maybe??
    Many thanks for any assistance that you give. I'm learning so be gentle...
    Damien

    SOLVED!
    OK all solved now, thanks to the link to Ed Stevens website that Baris posted (mucho respect )
    Seems that like Barus said I was not using Dynamic Registration, which means that I would need to manua
    ly update the listerner.ora file. On top of that it seems that for some my tnsnames.ora wasn't resolving mt database name so the tnsping wasfailing.
    What I did to solve the name resolution problem
    1. Opened the
    Network Configuration Assistant and saw that my listener didnt have my DB registered with it. So I added it. What this horrible GUI tool does is update the tnsnames and listener.ora files for you. So once that was done I went to the command prompt and did ;'tnsping <dn name> and hey presto it was getting a nice response.
    Then I re-ran my DB Configuration Assistant and tried to reconfigure my database. However it aing failed and gave me the same message that I was originally getting about the DB Service not being registered etc..the lister status still said that same thing:
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    the 'unknown' means that the DB  didnt tell the listener that it was there but instead the listener is in manual mode and will just use the configuration in the listener.ora to know where the DB is.
    So then I followed the steps on the ED Stevens website (follow the link). He has steps which show how to enable Dynanmic registration so that your DB regusters itself with the listener. In a nutshell, he states that he listener actually doesnt need the listerner.ora if using dynamic registration. I shutdown the DB, stopped the listener then I renamed the lsitener.ora to listerner.old, then started the lietener and checked the status and it said 'the listener supports no service' I then started the DB and, then resched teh listener status, it then read 'status: READY'... hooray!, the DB had dynamically registered itself with the listener. I then was able to successfully start up and run Enterprise Manager.
    Thanks for all your help Baris, and Ed Steven website.
    I know more now than when I started so I'm happy.
    Thanks.

  • HTTP SERVICE STOPS FOR NO REASON AND NO ERRORS IN LOGS WIN2K

    The HTTP service stops for no reason and we have to stop and restart to unlock and web server runs again. It appears to be related to number of concurrent users but we cannot tie it down to and specfics except on our NT 4.0 system the service never stops and runs fine . We are running versions R1 patch 4 and have gone up to 5 and 7 . We are running against an 9i database and using forms and reports. We are not using the forms server in patch 4 just the HTTP service. This is a big problem and would like an answer if possiable.

    Please post your question in the appropriate product forum(s):
    Database
    http://forums.oracle.com/forums/index.jsp?cat=18
    AppServer
    http://forums.oracle.com/forums/index.jsp?cat=13
    Forms
    Forms
    Reports
    Reports

  • OpsMgr Config Service stops automatically

    There's a fresh installation of SCOM 2007 SP1, SQL database is configured on a separate server. The installation itself goes smoothly without any errors. After installation to RTS OpsMgr Config Service stops automatically, after restart it works for about a minute, then stops again. All the other OpsMgr services work correctly. OpsMgr Config Service and OpsMgr SDK Service are run from the same domain account with Domain Admin rights. OpsMgr Health Service is run from Local System account. Here's what I see in the logs:
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    {margin:0cm;margin-bottom:.0001pt;font-size:11.0pt;font-family:'Calibri','sans-serif';}
    a:link, span.MsoHyperlink
    {color:blue;text-decoration:underline;text-underline:single;}
    a:visited, span.MsoHyperlinkFollowed
    {color:purple;text-decoration:underline;text-underline:single;}
    .MsoChpDefault
    {font-size:10.0pt;}
    @page Section1
    {size:612.0pt 792.0pt;margin:2.0cm 42.5pt 2.0cm 3.0cm;}
    div.Section1
    {page:Section1;}
    Application:
    Event Type:       Information
    Event Source:   OpsMgr Config Service
    Event Category:               None
    Event ID:             29000
    Date:                    11/1/2008
    Time:                    3:22:33 PM
    User:                    N/A
    Computer:         SS-MSK-A0005
    Description:
    The description for Event ID ( 29000 ) in Source ( OpsMgr Config Service ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: .
    Event Type:       Error
    Event Source:   .NET Runtime 2.0 Error Reporting
    Event Category:               None
    Event ID:             5000
    Date:                    11/1/2008
    Time:                    3:22:50 PM
    User:                    N/A
    Computer:         SS-MSK-A0005
    Description:
    EventType clr20r3, P1 microsoft.mom.configservicehost, P2 6.0.4900.0, P3 47b70fb4, P4 system, P5 2.0.0.0, P6 4889de7a, P7 382a, P8 127, P9 system.argumentexception, P10 NIL.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 63 00 6c 00 72 00 32 00   c.l.r.2.
    0008: 30 00 72 00 33 00 2c 00   0.r.3.,.
    0010: 20 00 6d 00 69 00 63 00    .m.i.c.
    0018: 72 00 6f 00 73 00 6f 00   r.o.s.o.
    0020: 66 00 74 00 2e 00 6d 00   f.t...m.
    0028: 6f 00 6d 00 2e 00 63 00   o.m...c.
    0030: 6f 00 6e 00 66 00 69 00   o.n.f.i.
    0038: 67 00 73 00 65 00 72 00   g.s.e.r.
    0040: 76 00 69 00 63 00 65 00   v.i.c.e.
    0048: 68 00 6f 00 73 00 74 00   h.o.s.t.
    0050: 2c 00 20 00 36 00 2e 00   ,. .6...
    0058: 30 00 2e 00 34 00 39 00   0...4.9.
    0060: 30 00 30 00 2e 00 30 00   0.0...0.
    0068: 2c 00 20 00 34 00 37 00   ,. .4.7.
    0070: 62 00 37 00 30 00 66 00   b.7.0.f.
    0078: 62 00 34 00 2c 00 20 00   b.4.,. .
    0080: 73 00 79 00 73 00 74 00   s.y.s.t.
    0088: 65 00 6d 00 2c 00 20 00   e.m.,. .
    0090: 32 00 2e 00 30 00 2e 00   2...0...
    0098: 30 00 2e 00 30 00 2c 00   0...0.,.
    00a0: 20 00 34 00 38 00 38 00    .4.8.8.
    00a8: 39 00 64 00 65 00 37 00   9.d.e.7.
    00b0: 61 00 2c 00 20 00 33 00   a.,. .3.
    00b8: 38 00 32 00 61 00 2c 00   8.2.a.,.
    00c0: 20 00 31 00 32 00 37 00    .1.2.7.
    00c8: 2c 00 20 00 73 00 79 00   ,. .s.y.
    00d0: 73 00 74 00 65 00 6d 00   s.t.e.m.
    00d8: 2e 00 61 00 72 00 67 00   ..a.r.g.
    00e0: 75 00 6d 00 65 00 6e 00   u.m.e.n.
    00e8: 74 00 65 00 78 00 63 00   t.e.x.c.
    00f0: 65 00 70 00 74 00 69 00   e.p.t.i.
    00f8: 6f 00 6e 00 20 00 4e 00   o.n. .N.
    0100: 49 00 4c 00 0d 00 0a 00   I.L.....
    Operations Manager:
    Event Type:       Information
    Event Source:   OpsMgr Connector
    Event Category:               None
    Event ID:             21023
    Date:                    11/1/2008
    Time:                    3:31:10 PM
    User:                    N/A
    Computer:         SS-MSK-A0005
    Description:
    OpsMgr has no configuration for management group Euroset and is requesting new configuration from the Configuration Service.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    System:
    Event Type:       Error
    Event Source:   Service Control Manager
    Event Category:               None
    Event ID:             7034
    Date:                    11/1/2008
    Time:                    3:44:10 PM
    User:                    N/A
    Computer:         SS-MSK-A0005
    Description:
    The OpsMgr Config Service service terminated unexpectedly.  It has done this 16 time(s).
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    What can the problem be here?

    Hi,
    Since here is the forum for Exchange, we may only be expert on Exchange Monitoring by SCOM related issue. For issue on error event from SCOM 2007,we recommend you to use Newsgroup for Operation Managers 2007 to get relevant help.
    http://technet.microsoft.com/en-us/opsmgr/bb839593.aspx?lc=1033
    However, base on my experience, the below steps may helpful to you.
    1.    First please try to check whether Local System has been used as action account.You can follow the article below to change account to “Local System”.
    How to Change the SDK and Config Service Accounts in Operations Manager 2007
    http://technet.microsoft.com/en-us/library/cc540429.aspx
    2.    Then please Check Remove sub keys from
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application that refer to OpsMgr Config Service.
    3.    Please remove OpsMgr Config Service from “Sources” located at
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application.
    4.    After that please add OpsMgr Config Service to “Sources” at
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Operations Manager.
    More related information share with you:
    Account Information for Operations Manager 2007
    http://technet.microsoft.com/en-us/library/bb735419.aspx
    Hope it helps.
    Xiu

  • Dfs R Service Stopping before backup on Domain Controllers

    HI,
    I have a weird issue where the DFS replication service is stopping when a DC backup starts.
    Setup: Forest with 5 child domains. Only one of the domains is having a problem. this domain has DCs in the US and UK. all four DCs experience the same issue. All DC’s are Server 2008 r2. DFS
    R is used for AD replication.
    Issue: DFS replication service stops when a backup starts.
    The DFS Replication service is stopping communication with partner P1USDC01 for replication group Domain System Volume due to an error. The service will retry the connection periodically.
    Additional Information:
    Error: 9036 (Paused for backup or restore)
    About 30 minutes later when the backup completed, DFS replication resumes.  
    As mentioned this happens to all 4 domain controllers in the domains, but no other domains are affected. AD replication stops during this time.
    Every time this happens the AD DB is rebuilt.
    lsass (548) A database location change was detected from 'D:\Active Directory\Windows\NTDS\DB\ntds.dit' to '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy168\Active Directory\Windows\NTDS\DB\ntds.dit'.
    I thinks this is more due to the VSS provider than an issue with the DB.
    Some ‘Googling/Binging’ shows that that error can be ignored as it resumes after. But im not so sure. Why are my other domains not effected. They use the same backup procedure,
    same hardware, same OS, same patch revision (always 3 months behind current release).
    Any suggestions would be great!

    You can ignore it as long as it restarts. You can also create a scheduled task that will check the service and start it if it is not running.
    I would recommend starting by installing latest Windows Updates (Especially those ones: http://support.microsoft.com/kb/968429) and make sure that your backup solution is up-to-date too. 
    If none helped then I would recommend contacting your backup solution developers technical support for assistance.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • SQL Reporting Services stops on my SharePoint 2007 Moss environment?

    Hi,
    I have SharePoint 2007 Moss SP3 installed on my VMWare server. I have a separate database VMWare server. I have SQL Server Reporting Services configured. Every other day the SQL Reporting Service stops, it seems to time out and logs a 7031 windows event.
    I've had to create a scheduled task to restart this service every day at 4am. The OWSTIMER process consumes around 50% CPU. Any solutions for the above?
    Thanks.

    Hi AspNet-Scotland,
    The application pool for Central Admin might be timing out, increasing the shutdown time limit for the process model from the default of 90 seconds to something longer (300 seconds) should resolve it if the cause is time-outs.
    This post explains how to change the Shutdown Time limit: 
    http://www.sharepointpapa.com/blog/_layouts/15/start.aspx#/Lists/Posts/Post.aspx?ID=20
    scroll down about half way on the post, or search for High level steps,
    Cheers,
    Stacy Anothersharepointblog.blogspot.com

  • Transport Service Stops once a week & doesn't restart- causing mailflow issue

    Hi All
    I have a customer with Exchange Server 2013 Standard SP1. I have recently migrated them from Exchange 2010.
    Single Server for All roles. VM has Trend Micro office scan agent installed. Server resource is adequate, Separate drive holds logs, exchange database.
    The only Error / warnings I can find from Event logs are below
    1) Event ID - 6002, Ping of Mailbox database timed out after 00.00.00 minutes
    2) Event ID- 6027, MS Filtering failed to contact primary update path
    3) Event ID- 16028, A lot of this event.
    I have done a bit of searching and reading and seems like all the above could be ignored,
    However my main concern is, I have noticed over the last couple of week that once a week Exchange Transport Service stops and fails to restart itself causing mail flow until staff tells me none is receiving email then I manually start the service.
    Has someone ran it to something similar or can offer a solution? Perhaps a script that runs and checks transport service and if service failure detected then wait 1 minute to force restart it?
    Thank you in advance.  
    MCITP, MCSA, MCSE,VCP - Consultant, Solution Design, Implementation

    I have gone through several troubleshooting as below
    1) Made sure disabled Anti-malware agent in exchange
    2) Made sure frontend connectors only have one 25 port as described in this article -
    http://www.msexchange.org/kbase/ExchangeServerTips/ExchangeServer2013/ManagementAdministration/exchange-server-2013-sp1-transport-service-stops-and-does-not-restart.html
    3) Made sure to exclude folders that hold mailbox database from scanning by trend Micro officescan agent
    4) Made sure the DNS is pointing currently and doesn't have any bindings to 127. address
    5) Do not have any custom receive connector, the only modification I did to the default Hum transport and Default frontendTransport connector is that I have enabled anonymous user for both of this connector.
    I am in the process of creating a powershell script with the help of (powershell boy) which does a service check via task scheduler and if found service not running then waits for 2 minutes and force
    re-starts the transport service. If this work, it will be a band aid solution, however wondering if someone has found a permanent fix yet?
    MCITP, MCSA, MCSE,VCP - Consultant, Solution Design, Implementation

  • Windows Server 2003 service stop on machine shutdown

    I have many db's running on W2003 Server.
    The services are set up to issue a shutdown immediate on service stop. This works fine if I stop the service manually. If the machine shuts down, the database is aborted, or so it seems. The alert log has no entry at all. Subsequent startup shows crash recovery.
    How do I get windows to stop the service normally on shutdown?

    We are also having the same issue. We create a shutdown script via the Group Policy editor which works fine if we do a manual shutdown, but if we do a remote shutdown ex: "shutdown /r /f /m <servername /t 120", it does not work, the Database crash.
    As mentionned the script works when we do a manual shutdown but does not work for a remote shutdown. The group policy script contains the following:
    echo Rebooting server START at %DATE% %TIME% >> E:\oracle\product\admin\test\Reboot.log
    net stop <Oracle servicename>
    echo Rebooting server MIDDLE at %DATE% %TIME% >> E:\oracle\product\admin\test\Reboot.log
    net stop <Oracle servicename>
    echo Rebooting server END at %DATE% %TIME% >> E:\oracle\product\admin\test\Reboot.log
    After the reboot we see all the echoed line in the "reboot.log" file but the "net stop" doesn't get executed or failed since the database crash and recovers
    Any ideas/feedback ?
    Thanks

  • Help...seriously [forget to down database service]

    i have a problem very seriously....
    We have 1 Development machine running under RHEL 5.0 X64 using oracle Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64 bit Production
    my partner want to clone database and he already down service application of EBS but forget to down the database...
    the problem happen when he remove the ... ..../db/apps_st/data n copy new data from Production then he run cloning task
    otomaticaly the cloning suspend n error...
    when i check it n try to down the service (stop database...) the database could not down
    do anyone know how to down the database service cause we can restore the data that he already remove...
    thx in advance...
    Please help us ....
    Regards....

    already solved by myself....

  • Sql reporting services stops every 24 hours for a short time then restarts

    I have noticed that recently in sccm 2012 sp1 the sql reporting services stops every morning at 7:58 am and restarts after a minute or two.  The only entry in the event logs is when it stops.  I don't see anything tied in with it that stops or
    starts at the same time and there are no tasks or anything like that which would point to this time frame.  I just thought I would throw this out there to see if anyone had any ideas.  Usually with something of this nature there are some corresponding
    log entries that go beyond the service stopping, but in this case there isn't.  Thanks for any help you can provide.

    I think I found out what was going on.  I approached this from a different angle and was directed to the sql reporting services logs and found information on the reporting web server stopping.  Researching that yielded the following information. 
    It appears that this is a result of the SSRS Web Server recycling the App Domain, which is supposed to be a pretty normal process.  In fact, the configuration file for this process defaults to recycling the app domain twice daily.  This lines up
    with the time frame that the reporting service is stopping.  It restarts it in less that two minutes and logs the recyling in the reporting services log twice daily so why I'm not seeing this entry in the event logs twice daily or even every day must
    be a timing thing.  I think if it takes an extra millisecond or two to recycle the app domain, it dumps an entry into the windows event logs and the sccm component status monitoring.
    http://ask.sqlservercentral.com/questions/97176/reporting-web-server-stopped.html

  • Database Services Engine Failed, SQL Server Replication Failed, Full Text Search Failed, Reporting Services Failed

    Hello,
    I am trying to install Microsoft SQL Server 2008 R2. I get the error bellow (Database Services Engine Failed, SQL Server Replication Failed, Full Text Search Failed, Reporting Services Failed). I already have a copy of SQL Server 2008 R2 on the machine.
    I want to create a new named instance of SQL Server for some software I'm installing.
    The error is below.
    Any help would be much appreciated, thanks!
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Exit code (Decimal):           -595541211
      Exit facility code:            1152
      Exit error code:               49957
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Start time:                    2014-02-06 09:14:09
      End time:                      2014-02-06 11:18:16
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.50.2500.0%26EvtType%3d0x44D4F75E%400xDC80C325
    Machine Properties:
      Machine name:                  BAHPBZ52TY
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered
      Sql Server 2008 R2   SQLEXPRESS           MSSQL10_50.SQLEXPRESS          Database Engine Services                
    1033                 Express Edition      10.50.1600.1    No        
      Sql Server 2008 R2                                                      
    Management Tools - Basic                 1033                 Express Edition     
    10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      Installation location:         c:\c7ced2c86d6b9813b28186cc831c2054\x64\setup\
      Installation edition:          EXPRESS_ADVANCED
      Slipstream:                    True
      SP Level                       1
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      True
      AGTSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Disabled
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             
      CUSOURCE:                      
      ENABLERANU:                    True
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,REPLICATION,FULLTEXT,RS,SSMS,SNAC_SDK,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              c:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           c:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    aedt2bSQL
      INSTANCENAME:                  AEDT2BSQL
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     c:\c7ced2c86d6b9813b28186cc831c2054\PCUSOURCE
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 DefaultNativeMode
      RSSVCACCOUNT:                  NT AUTHORITY\NETWORK SERVICE
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\NETWORK SERVICE
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           BAH\568385
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Full-Text Search
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Reporting Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xDC80C325
      Configuration error description: Access is denied
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\Detail.txt
      Feature:                       Management Tools - Basic
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140206_091302\SystemConfigurationCheck_Report.htm

    Hello,
    If you see error descriptioon it gives access denied so basically it is because of some access issue.I guess You must be using some domin account for installation make sure it is  added as local administrator also instead of using NT Authority network
    service  as SQL server service account use local system account .
    Below link would help
    http://serverfault.com/questions/212135/access-is-denied-error-installing-sql-server-2008-on-windows-7
    You can also browse to setup.exe file and RK on it and select run as administrator
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Error message: Host process for windows services stopped

    I recently had to install a new hard drive into my laptop. I am running windows vista and have installed all updated drivers. After installing itunes and uploading my backed up library, I went to play a song and I got the error "host process for windows services stopped working and was closed." Movies play fine. I have searched but have not found anything. Any help would be greatly appreciated. 

    Q I just upgraded to a new mobo and CPU, the EVGA X58 SLi and i7 920, and this issue still persists! That means it is either the sound card or Steam. The drivers on the CD have no issues, only the newer ones do. So by deduction there is something wrong with the new drivers, but I need them to not BSOD in OpenAL!

  • A135-S4527 Host Process for Windows Services stopped...

    I have started getting a Windows error: Host Process for Windows Services stopped working and was closed.  Laptop runs fine except my network connection says Connection Status: Unknown The service to detect this status is turned off and McAfee stopped working.  Can't run any of the MS tools either.  I am suspicous of conficker e but don't know how to detect or remove it.  Have seen the b variant on an XP machine at work, but the tools we used on it don't work on Vista.
    I am running Vista Home Edition (came on Laptop) upgraded to SP1 with auto-updates on.  McAfee was also set for auto-updates and nightly full scans, active e-mail and internet scanning.  No recent software downloads except for updates.
    Have been having the issue since about April 28.  Tried to restore but no dates exist past May 5.  Tried the F8 Startup recovery no problems found.  Have tried restarting services but they quickly stop again.  Uninstalled McAfee and tried AVG. It allowed defintion updates and I scanned all files.  No viruses, trojans or malware detected.
    Any suggestions?  I have a tasklstserv file I can copy and paste if it will help.

    That's a bad-sector event. At a command prompt (cmd.exe), run chkdsk /r.
       Event ID 7 Source Disk
    But it doesn't seem likely that's the cause of the message. When you get another one, note the time and check the Application and System logs for entries at that exact time.
    Thanks for the detailed information.
    What virus protection do you use?
    -Jerry

Maybe you are looking for

  • Wrong path selection

    Hi all, In my BMM I have different fact tables that share the same dimensions. For example: DimA and DimB are connected to 2 fact tables: DimA ---(FactA DimB ---(FactA DimC ---(FactA DimA ---(FactB DimB ---(FactB So I put in the PL these dimension in

  • ArrayIndexOutOfBoundsException error while executing template in planning

    Hi all, I am executing a planning function but I always get this Array error message. The planning function works fine but something is not happening in the web interface.... Below is the error message..much appreciated if anyone could help. The init

  • How to post a data into table from another table

    oracle forms6i Hai All I have created an form for the purpose of attendance generating. I had a problem that i can post only two data I have two tables One table was created dynamically the data in the tables are fetched from text file and they are d

  • Workflow: create a document set and add default documents to it

      Having a workflow create a new document set seems straightforward: use the "create list item" action, choose the target library and one of the document set content types available in it and supply values for the fields. But that workflow action doe

  • Same itunes 6 problem error -3

    Im gonna attempt fixing my error -3 problem by installing quicktime by itself. but i need a link. does anyone have a link to a quicktime download by itself. mucho thanks.