Database with events

I've got a database with records of events. I save every
event with a date and now I would like have a list of alle events
structured in day-order. Sometimes there are to event and sometimes
there ten event per day.
How do I get a block for each day like this:
http://www.husetmagstraede.dk/default.asp?id=1
I'm not the great code neard - so please tell me slowly how
to do :-)
/Rudy

One way would be to build a couple of queries and build the
page dynamically with php.
Like this
<?php
$host = 'localhost';
$user = 'user';
$pass = 'password''
$link = mysql_connect($host, $user, $pass);
$dateQry = "SELECT date from table_EventTable ORDER BY date";
$dateList = mysql_query($dateQry, $link) or die
(mysql_error());
// do not close the link to the database yet...
?>
....... SOME HTML .........
<?php
// run through the list of dates
while ($rowDate = mysql_fetch_assoc ($dateList)) {
$currDate = $rowDate['date'];
echo $currDate . "\n";
$eventQry = "SELECT event, time, location FROM
table_EventTable WHERE date = ' . $currDate;
$eventList = mysql_query($eventQry , $link) or die
(mysql_error());
while ($rowEvent = mysql_fetch_assoc ($dateList)) {
$currEvent = $rowEvent['event'];
$currTime = $rowEvent['time'];
$currLoc = $rowEvent['location '];
echo 'At ' . $currTime . ' ' . $currEvent . ' is happening
here: ' . $currLoc . "\n";
mysql_free_result($eventList);
mysql_free_result($dateList );
You can apply tables and or other formatting in the code, but
this will give a basic idea of ONE possible solution.
I hope this works for you!!

Similar Messages

  • Having an issue with event handling - sql database  & java gui

    HI all, have posted this on another forum but I think this is the correct one to post on. I am trying to construct this hybrid of java and mysql. the data comes from a mysql database and I want it to display in the gui. this I have achieved thus far. However I have buttons that sort by surname, first name, ID tag etc....I need event handlers for these buttons but am quite unsure as to how to do it. any help would be much appreciated. Thanks in advance.
    /* Student Contact Database GUI
    * Phillip Wells
    import java.awt.BorderLayout;     
    // imports java class. All import class statements tell the compiler to use a class that is defined in the Java API.
    // Borderlayout is a layout manager that assists GUI layout.
    import javax.swing.*;               // imports java class. Swing enables the use of a GUI.
    import javax.swing.JOptionPane;     // imports java class. JOptionPane displays messages in a dialog box as opposed to a console window.
    import javax.swing.JPanel;          // imports java class. A component of a GUI.
    import javax.swing.JFrame;          // imports java class. A component of a GUI.
    import javax.swing.JButton;          // imports java class. A component of a GUI.
    import javax.swing.JScrollPane;     // imports java class. A component of a GUI.
    import javax.swing.JTable;          // imports java class. A component of a GUI.
    import java.awt.*;               // imports java class. Similar to Swing but with different components and functions.
    import java.awt.event.*;          // imports java class. Deals with events.
    import java.awt.event.ActionEvent;     // imports java class. Deals with events.
    import java.awt.event.ActionListener;     // imports java class. Deals with events.
    import java.sql.*;               // imports java class. Provides API for accessing and processing data stored in a data source.
    import java.util.*;               // imports java class. Contains miscellaneous utility classes such as strings.
    public class studentContact extends JFrame {     // public class declaration. The �public� statement enables class availability to other java elements. 
    private JPanel jContentPane; // initialises content pane
    private JButton snam, id, fname, exit; // initialises Jbuttons
    String firstname = "firstname"; //initialises String firstname
    String secondname = "secondname"; //initialises String
    public studentContact() {
    Vector columnNames = new Vector();      // creates new vector object. Vectors are arrays that are expandable.
    Vector data = new Vector();
    initialize();
    try {
    // Connect to the Database
    String driver = "com.mysql.jdbc.Driver"; // connect to JDBC driver
    String url = "jdbc:mysql://localhost/Studentprofiles"; //location of Database
    String userid = "root"; //user logon information for MySQL server
    String password = "";     //logon password for above
    Class.forName(driver); //reference to JDBC connector
    Connection connection = DriverManager.getConnection(url, userid,
    password);     // initiates connection
    // Read data from a table
    String sql = "Select * from studentprofile order by "+ firstname;
    //SQL query sent to database, orders results by firstname.
    Statement stmt = connection.createStatement
    (ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
    //statement to create connection.
    //Scroll sensitive allows movement forth and back through results.
    //Concur updatable allows updating of database.
    ResultSet rs = stmt.executeQuery(sql); // executes SQL query stated above and sets the results in a table
    ResultSetMetaData md = rs.getMetaData();     // used to get the properties of the columns in a ResultSet object.
    int columns = md.getColumnCount(); //
    for (int i = 1; i <= columns; i++) {
    columnNames.addElement(md.getColumnName(i));     // Get column names
    while (rs.next()) {
    Vector row = new Vector(columns);          // vectors data from table
    for (int i = 1; i <= columns; i++) {     
    row.addElement(rs.getObject(i));     // Get row data
    data.addElement(row);     // adds row data
    rs.close();     
    stmt.close();
    } catch (Exception e) {     // catches exceptions
    System.out.println(e);     // prints exception message
    JTable table = new JTable(data, columnNames) {     //constructs JTable
    public Class getColumnClass(int column) {     
    for (int row = 0; row < getRowCount(); row++) {
    Object o = getValueAt(row, column);
    if (o != null) {
    return o.getClass();
    return Object.class;
    JScrollPane scrollPane = new JScrollPane( table ); // constructs scrollpane 'table'
    getContentPane().add(new JScrollPane(table), BorderLayout.SOUTH); //adds table to a scrollpane
    private void initialize() {
    this.setContentPane(getJContentPane());
    this.setTitle("Student Contact Database");     // sets title of table
    ButtonListener b1 = new ButtonListener();     // constructs button listener
    snam = new JButton ("Sort by surname");     // constructs Jbutton
    snam.addActionListener(b1);     // adds action listener
    jContentPane.add(snam);          //adds button to pane
    id = new JButton ("Sort by ID");     // constructs Jbutton
    id.addActionListener(b1);     // adds action listener
    jContentPane.add(id);          //adds button to pane
    fname = new JButton ("Sort by first name");     // constructs Jbutton
    fname.addActionListener(b1);     // adds action listener
    jContentPane.add(fname);          //adds button to pane
    exit = new JButton ("Exit");     // constructs Jbutton
    exit.addActionListener(b1);     // adds action listener
    jContentPane.add(exit);          //adds button to pane
    private JPanel getJContentPane() {
    if (jContentPane == null) {
    jContentPane = new JPanel();          // constructs new panel
    jContentPane.setLayout(new FlowLayout());     // sets new layout manager
    return jContentPane;     // returns Jcontentpane
    private class ButtonListener implements ActionListener {     // create inner class button listener that uses action listener
    public void actionPerformed (ActionEvent e)
    if (e.getSource () == exit)     // adds listener to button exit.
    System.exit(0);     // exits the GUI
    if (e.getSource () == snam)
    if (e.getSource () == id)
    if (e.getSource () == fname)
    public static void main(String[] args) {     // declaration of main method
    studentContact frame = new studentContact();     // constructs new frame
    frame.setDefaultCloseOperation(EXIT_ON_CLOSE);     //exits frame on closing
    frame.setSize(600, 300);          // set size of frame
    frame.setVisible(true);     // displays frame
    }

    OK, so you've got this code here:
    private class ButtonListener implements ActionListener {
      public void actionPerformed (ActionEvent e) {
        if (e.getSource () == exit) {
          System.exit(0); // exits the GUI
        if (e.getSource () == snam) {
        if (e.getSource () == id) {
    }Perfect fine way to do this; although I think creating anonymous would be a bit cleaner:
    snam.addActionListener(new actionListener() {
      public void actionPerformed(ActionEvent ae) {
    });But I think that the real question you have is "what do I put for logic when the JButtons are hit?", right?
    I would answer that you want to dynamically build your SQL statement changing your ordering based on the button.
    So you'd have a method that builds the SQL based on what you pass in - so it takes one argument perhaps?
    private static final int NAME = 1;
                             ID = 2;
    /* ... some code ... */
    snam.addActionListener(new actionListener() {
      public void actionPerformed(ActionEvent ae) {
        buildSQL(NAME);
    /* ... some code ... */
    private void buildSQL(int type) {
      if ( type == NAME ) {
    /* ... build SQL by name ... */
      else if ( type == ID ) {
    /* ... build SQL by id ... */
    }That kind of thing.
    Or you might choose to have several build methods with no parameter type; each building the SQL differently, and calling whichever one you need. I did not read your entire pgm, so I don't know how you'd want to organize it. You need to ask more specific questions at that point.
    ~Bill

  • How to create a table with events in smartforms?

    How to create a table with events view in smartforms?
    It doesn't like general table with header, main area and footer.
    for example:
    in smartforms: LE_SHP_DELNOTE
    table name is TABLEITEM(Delivery items table)

    Vel wrote:
    I am creating XML file using DBMS_XMLGEN package. This XML file will contain data from two different database tables. So I am creating temporary table in the PL/SQL procedure to have the data from these different tables in a single temporary table.
    Please find the below Dynamic SQL statements that i'm using for create the temp table and inserting the data into it.
    Before insert the V_NAME filed, i will be appending a VARCHAR field to the original data.
    EXECUTE IMMEDIATE 'CREATE TABLE TEMP_TABLE (UNIQUE_KEY NUMBER , FILE_NAME VARCHAR2(1000), LAST_DATE DATE)';
    EXECUTE IMMEDIATE 'INSERT INTO TEMP_TABLE values (SEQUENCE.nextval,:1,:2)' USING V_NAME,vLastDate;What exactly i need is to eliminate the INSERT portion of it,Since i have to insert more 90,000 rows into it. Is there way to have the temp table created with data in it along with the sequence value as well.
    I'm using Oracle 10.2.0.4 version.
    Edited by: 903948 on Dec 22, 2011 10:58 PMWhat you need to do to eliminate the INSERT statement is to -- as already suggested by others - eliminate the temporary table. You don't need it. It is just necessary overhead. Please explain why you (apparently) believe that the suggestion of a view will not meet your requirements.

  • Displaying image from Database with php

    Hello everybody,
    I'm working on a website that displays videos courses and tutorials as my final project
    and I'm working with "Flash builder 4" the database with mySQL and the application server with php
    Basically, the goal is to display a datagrid that shows the manager of the website in column all the information stored on the "Course" table
    the structure of the table is :
    Course (id,img,src,title,description)
    -id : primary key
    -img : path to a photo of course {for example picture of JAVA}
    -src : path to the playlist file {xml file}
    -title : String
    -description : String too
    I already succeeded to display all these contents on a DataGrid, but not with the image, I couldn't display an imageon its column using the path stored on the database, I used a DataRenderer to do that, and here is my code for Renderer and the DataGrid.mxml
    CourseGrid.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:courseservice="services.courseservice.*">
    <fx:Script>
    <![CDATA[
    import Renderers.CourseDeleteRenderer;
    import Renderers.CourseImageRenderer;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
    getAllCourseResult.token = courseService.getAllCourse();
    ]]>
    </fx:Script>
    <fx:Declarations>
    <s:CallResponder id="getAllCourseResult"/>
    <courseservice:CourseService id="courseService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:DataGrid x="10" y="10" id="dataGrid"
    creationComplete="dataGrid_creationCompleteHandler(event)"
    dataProvider="{getAllCourseResult.lastResult}"
    width="100%">
    <mx:columns>
    <mx:DataGridColumn headerText="" dataField="img" sortable="false" itemRenderer="Renderers.CourseImageRenderer"/>
    <mx:DataGridColumn headerText="id" dataField="id"/>
    <mx:DataGridColumn headerText="src" dataField="src"/>
    <mx:DataGridColumn headerText="title" dataField="title"/>
    <mx:DataGridColumn headerText="description" dataField="description"/>
    <mx:DataGridColumn headerText="Delete" itemRenderer="Renderers.CourseDeleteRenderer"/>
    <mx:DataGridColumn headerText="Update" itemRenderer="Renderers.CourseUpdateRenderer"/>
    </mx:columns>
    </mx:DataGrid>
    </s:Application>
    CourseImageRenderer.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:MXDataGridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      focusEnabled="true">
    <mx:Image source="{data}" width="60" height="60"/>
    </s:MXDataGridItemRenderer>
    Result :
    Problem :
    How can I access to the path of the image, I tried to write "data.img" instead of "data" as img is the name of the column in the database that stores the path but it wasn't successful.
    I know that it not complete statement "data" because "data" is a reference to what the DataGrid provides of information that gets from the (CreationComplete) event.
    Question :
    - Can you please help me with this so I can complete displaying images by accessing to what is on the column in tha DB so I can manipulate my datas that is stored there ?
    ==> I still have some questions about the buttons to update and delete datas fomr the DataGrid, but, until now I need to access successfully to the photo and display it
    Thank you,

    Anyone that can help me with this ?
    Please, try this with me, I'm asking Flex developpers this might be easy for you !
    It's just question of how to access the string stored in the variable "data", when I used XML I just type the path to the repeated element like this :
    XML file :
    XML File
    <parent>
    <child>
    <repeated_child></repeated_child>
    <repeated_child></repeated_child>
    <repeated_child></repeated_child>
    </child>
    </parent>
    I used a Model as a reference to the xml file
    and an arrayList as a container of the repeated child
    I just write in the code "data.parent.repeated_child" to access the text in the "repeated_child"
    and here is the code, that I implemented to generate videos from xml file to display a video play list
    Video Playlist code(extract from XML file "data.xml")
    <fx:Declarations>
    <fx:Model id="model" source="assets/data.xml"/>
    <s:ArrayList id="products" source="{model.video}"/>
    </fx:Declarations>
    <mx:List  dataProvider="{products}" labelField="title"
      change="list1_changeHandler(event,List(event.currentTarget).selectedItem)" x="103" y="77" height="350" width="198"/>
    That was my goal to do that with the database.
    Please help me
    If you have other solution I still need it.
    Thank you,

  • Sessions with Event "class slave wait" taking 100% CPU

    Hi experts,
    I have an issue in an 11.2.0.2 RAC database with 2 standby nodes that are driving me nuts.
    All started when I've been told there are 2 Oracle processes consuming too much CPU in the environment.
    I found 2 processes which takes 100% CPU each. These processes are Oracle processes into the DB and checking them out although they are registered in v$process and v$session, there is nothing related to them in v$bgprocess so I could not find out which oracle processes started these 2 OS processes.
    The view v$session shows them ACTIVE in the event "class slave wait". There aren't too much information about this event, at least I failed to find...
    Using dbms_monitor and dbms_system to create trace events did not create any tracefile. Only ORADEBUG was able to create events but with nearly no information inside the trace files.
    Questions I need to have answered or at least hints that I can follow to find the answer:
    1) what is causing the CPUs to be consumed at 100%? Which process?
    2) Why does these processes are using that much of CPU?
    3) What can be done to safely get over it?
    Honestly I don't know where else to look at except trying to get some help. Could someone give me a hand please?
    BR,
    Lauro Ojeda
    Edited by: LauroOjeda on 26/01/2013 06:44

    Hi Pal, thanks for your reply!
    Here are the answers:
    1. If it is RAC there is no such construct as a "standby node" and you say you have two of them. Please be specific ... is this RAC or Data Guard or a combination? Or do you have a three node cluster with all services pointing to only a single server wasting all of the resources of the other three?
    A: This is a combination of them. We have 2 nodes in a RAC environment shipping logs to two physical standby databases in another site.
    2. Two processes can not be at 100% of CPU any more than I can be 200% awake. Please show us how you arrived at this conclusion, on what hardware and operating system, and include a formatted (read the FAQ to learn how) extract showing what you are seeing.
    A: top in Linux shows two oracle processes consuming 100% (or nearly of it) of 1 CPU each. This is a 16 cores server (each primary node) so 2 of these are working on full capacity to service the described processes.
    3. What processes? Name them and again run a SQL statement and post the output so we can see what you are looking at.
    A: Like I said before I failed to find which background process they belongs to as there are no indications of them in v$bgprocess and in v$session/v$process either. I can see them in v$process and v$session but again, there are no indications of for which bg process they belong to.
    4. Is anything slow? Are there any problems with the system or are you only reacting to two numbers you think are too high?
    A: No, system is not slow because of that but the client wants to investigate and have it sorted as it is not normal.
    Additionally I found a bug in metalink which seems to be the culprit, but I'm unsure yet. This is Bug 12929268 : HIGH CPU ON ORA_O00N PROCESS
    Is any other information that I may provide you?
    Thanks for help!
    Lauro Ojeda

  • Application server cannot log onto the database with user PS.

    Hello,
    First of all, my setup is:
    Microsoft Windows Server 2003
    Oracle database 10g Rel. 2
    Peopletools 8.49
    HRMS 9.0
    I am trying to boot the application server, but the operation fails with the error message:
    PSAPPSRV.5796 (0) [08/27/09 10:29:41](1) GenMessageBox(0, 0, M): Database Signon: Invalid user ID or password for database signon. (id=PS)
    I am able to sign on to the database with sqlplus and user PS.
    Here is my config settings as shown on the psadmin screen:
    Features Settings
    ========== ==========
    1) Pub/Sub Servers : No 15) DBNAME :[hrdmo]
    2) Quick Server : No 16) DBTYPE :[ORACLE]
    3) Query Servers : No 17) UserId :[PS]
    4) Jolt : Yes 18) UserPswd :[PS]
    5) Jolt Relay : No 19) DomainID :[TESTSERV]
    6) WSL : Yes 20) AddToPATH :[C:\oracle\product\10.2.0\database\bin]
    7) PC Debugger : No 21) ConnectID :[people]
    8) Event Notification: Yes 22) ConnectPswd:[peop1e]
    9) MCF Servers : No 23) ServerName :[appserver]
    10) Perf Collator : No 24) WSL Port :[7000]
    11) Analytic Servers : Yes 25) JSL Port :[9000]
    12) Domains Gateway : No 26) JRAD Port :[9100]
    Here is the appsrv.log:
    PSADMIN.2336 (0) [08/27/09 10:29:29](0) Begin boot attempt on domain hrdmo
    PSWATCHSRV.5480 (0) [08/27/09 10:29:38] Checking process status every 120 seconds
    PSWATCHSRV.5480 (0) [08/27/09 10:29:38] Server started
    PSAPPSRV.5796 (0) [08/27/09 10:29:40](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.5796 (0) [08/27/09 10:29:40](0) Cache Directory being used: C:\oracle\product\PT8.49\appserv\hrdmo\CACHE\PSAPPS
    RV_2\
    PSAPPSRV.5796 (0) [08/27/09 10:29:41](1) GenMessageBox(0, 0, M): Database Signon: Invalid user ID or password for databa
    se signon. (id=PS)
    PSAPPSRV.5796 (0) [08/27/09 10:29:41](0) Server failed to start
    PSWATCHSRV.5480 (0) [08/27/09 10:29:42] Shutting down
    PSADMIN.2336 (0) [08/27/09 10:29:48](0) End boot attempt on domain hrdmo
    As I said, despite the error message, I am able to log on to the database with sqlplus with user PS password PS.
    Could someone please help me with this problem? Thanks.

    I installed the database with the setup program and come to think of it, I don't think you can specify whether to create a system or demo database. So I probably didn't install a demo, which is what I wanted. I also ran the SQRs and everything showed the database was correct, so I thought I did it right.
    If I could install a demo with the setup program, I would do that because I think I could run through it pretty quickly having done it once. I've read in this forum and other places that it's much better to install the db manually, so maybe I'll just do that.
    In any case, thanks for all you help Nicolas.

  • How to connect sql database with Flash

    Dear Friends,
    Iam working on a quessinarie (assesment) for elearning software. i want to connect sql database with flash and save my records in back end like add, delete, modification of student result and details.
    Kindly help me to connect the sql database. or dot net server. I know how to connect PHP and mysql. But my client dont want php. only sql database and do the add, del, modificaiton.
    Thanks in advance,
    Syed Abdul Rahim

    unfortunately no, i do not know ASP well enough to give any code advice, other than the basic concept:  make a request on a server-side script (such as ASP) via URLLoader - the script receives variable values (if required), runs the DB queries you wish to invoke, and 'returns' the results - pick them up in the URLVariables class via the event handler in Flash and assign them to local properties if needed, etc.
    there are quite a few threads that you could find more specific information on the ASP side, here and elsewhere around the net.

  • SQL Text in DATABASE VAULT Events

    I'm using Audit Vault 10.2.3.2 to collect audit data from a source database 11gR2 (11.2.0.1) protected with Database Vault. The DBAUD collector is collecting all the Database Vault Events, but in all cases the SQL Text column is empty.
    The collector seems to be working fine, I've added the collector user to the Oracle Data Dictionary Realm and I've also granted dv_secanalyst to the user.
    Are there any aditional steps that have to be done in order to get the SQL Text?
    Thanks.

    In case anybody is interested, this error has been filed as bug 11818022 with Oracle Support.
    Thanks.

  • Having an issue with event handling - sql & java

    HI all am trying to construct this hybrid of java and mysql. the data comes from a mysql database and I want it to display in the gui. this I have achieved thus far. However I have buttons that sort by surname, first name, ID tag etc....I need event handlers for these buttons but am quite unsure as to how to do it. any help would be much appreciated. Thanks in advance.
    /* Student Contact Database GUI
    * Phillip Wells
    import java.awt.BorderLayout;     
    // imports java class. All import class statements tell the compiler to use a class that is defined in the Java API.
    // Borderlayout is a layout manager that assists GUI layout.
    import javax.swing.*;               // imports java class. Swing enables the use of a GUI.
    import javax.swing.JOptionPane;     // imports java class. JOptionPane displays messages in a dialog box as opposed to a console window.
    import javax.swing.JPanel;          // imports java class. A component of a GUI.
    import javax.swing.JFrame;          // imports java class. A component of a GUI.
    import javax.swing.JButton;          // imports java class. A component of a GUI.
    import javax.swing.JScrollPane;     // imports java class. A component of a GUI.
    import javax.swing.JTable;          // imports java class. A component of a GUI.
    import java.awt.*;               // imports java class. Similar to Swing but with different components and functions.
    import java.awt.event.*;          // imports java class. Deals with events.
    import java.awt.event.ActionEvent;     // imports java class. Deals with events.
    import java.awt.event.ActionListener;     // imports java class. Deals with events.
    import java.sql.*;               // imports java class. Provides API for accessing and processing data stored in a data source.
    import java.util.*;               // imports java class. Contains miscellaneous utility classes such as strings.
    public class studentContact extends JFrame {     // public class declaration. The �public� statement enables class availability to other java elements. 
        private JPanel jContentPane;    // initialises content pane
        private JButton snam, id, fname, exit;     // initialises Jbuttons
        String firstname = "firstname"; //initialises String firstname
         String secondname = "secondname"; //initialises String
        public studentContact() {
            Vector columnNames = new Vector();      // creates new vector object. Vectors are arrays that are expandable.
            Vector data = new Vector();
            initialize();
            try {
                // Connect to the Database
                String driver = "com.mysql.jdbc.Driver"; // connect to JDBC driver
                String url = "jdbc:mysql://localhost/Studentprofiles"; //location of Database
                String userid = "root"; //user logon information for MySQL server
                String password = "";     //logon password for above
                Class.forName(driver); //reference to JDBC connector
                Connection connection = DriverManager.getConnection(url, userid,
                        password);     // initiates connection
                // Read data from a table
                String sql = "Select * from studentprofile order by "+ firstname;
                //SQL query sent to database, orders results by firstname.
                Statement stmt = connection.createStatement
                (ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
                //statement to create connection.
                //Scroll sensitive allows movement forth and back through results.
                //Concur updatable allows updating of database.
                ResultSet rs = stmt.executeQuery(sql); // executes SQL query stated above and sets the results in a table
                ResultSetMetaData md = rs.getMetaData();     // used to get the properties of the columns in a ResultSet object.
                int columns = md.getColumnCount(); //
                for (int i = 1; i <= columns; i++) {
                    columnNames.addElement(md.getColumnName(i));     // Get column names
                while (rs.next()) {
                    Vector row = new Vector(columns);          // vectors data from table
                    for (int i = 1; i <= columns; i++) {     
                        row.addElement(rs.getObject(i));     // Get row data
                    data.addElement(row);     // adds row data
                rs.close();     
                stmt.close();
            } catch (Exception e) {     // catches exceptions
                System.out.println(e);     // prints exception message
            JTable table = new JTable(data, columnNames) {     //constructs JTable
                public Class getColumnClass(int column) {     
                    for (int row = 0; row < getRowCount(); row++) {
                        Object o = getValueAt(row, column);
                        if (o != null) {
                            return o.getClass();
                    return Object.class;
            JScrollPane scrollPane = new JScrollPane( table );          // constructs scrollpane 'table'
            getContentPane().add(new JScrollPane(table), BorderLayout.SOUTH);   //adds table to a scrollpane
        private void initialize() {
            this.setContentPane(getJContentPane());
            this.setTitle("Student Contact Database");     // sets title of table
            ButtonListener b1 = new ButtonListener();     // constructs button listener
            snam = new JButton ("Sort by surname");      // constructs Jbutton
            snam.addActionListener(b1);     // adds action listener
            jContentPane.add(snam);          //adds button to pane
            id = new JButton ("Sort by ID");      // constructs Jbutton
            id.addActionListener(b1);     // adds action listener
            jContentPane.add(id);          //adds button to pane
            fname = new JButton ("Sort by first name");      // constructs Jbutton
            fname.addActionListener(b1);     // adds action listener
            jContentPane.add(fname);          //adds button to pane
            exit = new JButton ("Exit");     // constructs Jbutton
            exit.addActionListener(b1);     // adds action listener
            jContentPane.add(exit);          //adds button to pane
        private JPanel getJContentPane() {
            if (jContentPane == null) {
                jContentPane = new JPanel();          // constructs new panel
                jContentPane.setLayout(new FlowLayout());     // sets new layout manager
            return jContentPane;     // returns Jcontentpane
        private class ButtonListener implements ActionListener {     // create inner class button listener that uses action listener
            public void actionPerformed (ActionEvent e)
                if (e.getSource () == exit)     // adds listener to button exit.
                   System.exit(0);     // exits the GUI
                if (e.getSource () == snam)
                if (e.getSource () == id)
                if (e.getSource () == fname)
        public static void main(String[] args) {     // declaration of main method
            studentContact frame = new studentContact();     // constructs new frame
            frame.setDefaultCloseOperation(EXIT_ON_CLOSE);     //exits frame on closing
            frame.setSize(600, 300);          // set size of frame
            frame.setVisible(true);     // displays frame
    }p.s. sorry about the untidy comments!

    OK, so you've got this code here:
    private class ButtonListener implements ActionListener {
      public void actionPerformed (ActionEvent e) {
        if (e.getSource () == exit) {
          System.exit(0); // exits the GUI
        if (e.getSource () == snam) {
        if (e.getSource () == id) {
    }Perfect fine way to do this; although I think creating anonymous would be a bit cleaner:
    snam.addActionListener(new actionListener() {
      public void actionPerformed(ActionEvent ae) {
    });But I think that the real question you have is "what do I put for logic when the JButtons are hit?", right?
    I would answer that you want to dynamically build your SQL statement changing your ordering based on the button.
    So you'd have a method that builds the SQL based on what you pass in - so it takes one argument perhaps?
    private static final int NAME = 1;
                             ID = 2;
    /* ... some code ... */
    snam.addActionListener(new actionListener() {
      public void actionPerformed(ActionEvent ae) {
        buildSQL(NAME);
    /* ... some code ... */
    private void buildSQL(int type) {
      if ( type == NAME ) {
    /* ... build SQL by name ... */
      else if ( type == ID ) {
    /* ... build SQL by id ... */
    }That kind of thing.
    Or you might choose to have several build methods with no parameter type; each building the SQL differently, and calling whichever one you need. I did not read your entire pgm, so I don't know how you'd want to organize it. You need to ask more specific questions at that point.
    ~Bill

  • Re-instantiate Primary Database with 10g Release 1

    How do you re-instiate the primary database with 10g Release 1. I am investigating how the failover process works and have successfully failed over to a standby.
    I now want to re-instantiate the Primary... I know in Release 2 there is a DGMGRL command to re-instantiate... but there is no such command in Release 1 as far as I can see.

    See 10.3 Using Flashback Database After a Failover - http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10823/scenarios.htm#1017193 but it requires that you had flashback database enabled BEFORE you failed over. Also, there are a couple of Alerts out there for early versions of 10.1 and this procedure in the event you did a failover where there was data loss. See Note 388516.1 ALERT: Flashing Back a Primary Database into a Physical Standby May Fail and Note 376340.1 ALERT: Reinstating old primary database as a logical standby database after a Data Guard "No Data Loss" Failover for more information.
    The Broker did not have that capability in 10.1 so you have to use the manual method. You will have to remove the failed primary from your Broker configuration first, reinstate it and then add it back in.
    If you did not have flashback database enabled on the Primary before you did the fail over then you must rebuild the old primary as a new standby with a complete new backup from the new primary.
    Larry

  • Need DataBase Update Event Handling

    Hi All,
    Any database update event and listener classes in java or j2ee APIs?.
    how to generate database update events?
    can you provide me any suggestions
    Thanks,
    Nirmal

    Try this: http://forum.java.sun.com/thread.jspa?messageID=4449127, with the main Object solution...

  • Error trying to create first database with Database Studio on MaxDB 7.7

    After installing the Database Studio 7.7 and starting up, i tried to create a first (local) database following the procedure documented in the online manual:
    Under the heading of "Servers" an entry "<Local>" was created.
    Then  i used the right mouse button to "Create Database...".
    A popup window appears with:
    Database Server <Local>
    Database Name MAXDB
    Login Information for Server (user/password) grayed out.
    Then doing "Next >" generates the following error:
    No installation available on server '<Local>'.
    Remark: installation went without problems.
    Any help is appreciated greatly.

    Hi Simon,
    a silly question just to clarify the issue: Do you have a MaxDB Installation on your PC where Database Studio was installed?
    What does the Event Log tell you about the issue?
    See Window->Show View->Event Log Viewer
    or if not listed there
    Window->Show View->Other ...->Database Studio->Event Log Viewer
    Could you please have a look and tell me what it says? If you find a message that is related to your problem double click it and press the little Copy to clipboard icon in the upper right corner then you can paste the message in your reply.
    Cheers,
    Daniel

  • Registering A Database With Active Directory (10.2.0.2.0)

    Hi
    I've been working through various tutorials on integrating an Oracle Database with Active Directory.
    The AD is running on Windows 2003 Server Standard Edition.
    I've created the schema in AD and (as far as I know set the permissions correctly) and also the LDAP file.
    However, when dbca tries to register the database I get "Unable to create database entry in the directory service. TNS-04405 : General Error'.
    The database is running on XP Pro machine.
    This is the log file output from dbca:
    [Thread-13] [13:44:44:421] [StepContext$ModeRunner.run:2458] ---- Progress Needed:=true
    [Thread-13] [13:44:44:703] [BasicStep.execute:202] Executing Step : PRE_DB_CONFIGURE
    [Thread-13] [13:44:44:703] [BasicStep.configureSettings:304] messageHandler being set=null
    [Thread-13] [13:44:45:109] [PreDBConfigureStep.executeImpl:180] Memory Params to be updated : 0
    [Thread-13] [13:44:45:125] [BasicStep.execute:202] Executing Step : DIR_SERVICE
    [Thread-13] [13:44:45:125] [BasicStep.configureSettings:304] messageHandler being set=null
    [Thread-13] [13:44:45:125] [NetworkUtils.getDefaultDirectoryAuthentication:3359] oracle.net.config.DirectoryService.throwException(Unknown Source)
    oracle.net.config.DirectoryService.query(Unknown Source)
    oracle.net.config.DirectoryService.query(Unknown Source)
    oracle.net.config.DatabaseService.getDefaultDirectoryAuthentication(Unknown Source)
    oracle.sysman.assistants.util.NetworkUtils.getDefaultDirectoryAuthentication(NetworkUtils.java:3354)
    oracle.sysman.assistants.util.step.network.DirServiceStep.executeImpl(DirServiceStep.java:198)
    oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    oracle.sysman.assistants.util.step.BasicStep.callStep(BasicStep.java:251)
    oracle.sysman.assistants.dbca.backend.PreDBConfigureStep.executeImpl(PreDBConfigureStep.java:195)
    oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2468)
    Can anyone out there help me...
    Regards.
    Adrian

    "Listener.log"
    TNSLSNR for 32-bit Windows: Version 10.2.0.2.0 - Production on 13-JUN-2007 15:50:16
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\ORANT10G\network\admin\listener.ora
    Log messages written to C:\ORANT10G\network\log\listener.log
    Trace information written to C:\ORANT10G\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=1892
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xppro)(PORT=1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    13-JUN-2007 15:50:20 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=Administrator))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869824)) * status * 0
    TNSLSNR for 32-bit Windows: Version 10.2.0.2.0 - Production on 13-JUN-2007 16:12:27
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\ORANT10G\network\admin\listener.ora
    Log messages written to C:\ORANT10G\network\log\listener.log
    Trace information written to C:\ORANT10G\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=1544
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xppro)(PORT=1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    TNSLSNR for 32-bit Windows: Version 10.2.0.2.0 - Production on 14-JUN-2007 08:22:01
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\ORANT10G\network\admin\listener.ora
    Log messages written to C:\ORANT10G\network\log\listener.log
    Trace information written to C:\ORANT10G\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=1528
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xppro)(PORT=1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    TNSLSNR for 32-bit Windows: Version 10.2.0.2.0 - Production on 14-JUN-2007 08:46:33
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\ORANT10G\network\admin\listener.ora
    Log messages written to C:\ORANT10G\network\log\listener.log
    Trace information written to C:\ORANT10G\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=1528
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xppro)(PORT=1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    14-JUN-2007 09:43:23 * service_register * ilog * 0
    14-JUN-2007 09:44:16 * service_died * ilog * 12537
    14-JUN-2007 09:44:19 * service_register * ilog * 0
    14-JUN-2007 09:44:22 * service_update * ilog * 0
    14-JUN-2007 09:44:22 * service_update * ilog * 0
    14-JUN-2007 09:44:31 * service_update * ilog * 0
    14-JUN-2007 09:44:37 * service_update * ilog * 0
    14-JUN-2007 09:45:01 * service_update * ilog * 0
    14-JUN-2007 09:45:07 * service_update * ilog * 0
    14-JUN-2007 09:45:12 * service_update * ilog * 0
    14-JUN-2007 09:45:42 * service_update * ilog * 0
    14-JUN-2007 09:46:15 * service_update * ilog * 0
    14-JUN-2007 09:46:48 * service_update * ilog * 0
    14-JUN-2007 09:46:50 * service_update * ilog * 0
    14-JUN-2007 09:46:59 * service_died * ilog * 12537
    14-JUN-2007 09:48:43 * service_register * ilog * 0
    14-JUN-2007 09:49:40 * service_died * ilog * 12537
    14-JUN-2007 09:49:42 * service_register * ilog * 0
    14-JUN-2007 09:49:45 * service_update * ilog * 0
    14-JUN-2007 09:49:45 * service_update * ilog * 0
    14-JUN-2007 09:49:54 * service_update * ilog * 0
    14-JUN-2007 09:49:58 * service_update * ilog * 0
    14-JUN-2007 09:50:19 * service_update * ilog * 0
    14-JUN-2007 09:50:22 * service_update * ilog * 0
    14-JUN-2007 09:50:28 * service_update * ilog * 0
    14-JUN-2007 09:51:01 * service_update * ilog * 0
    14-JUN-2007 09:54:40 * service_update * ilog * 0
    14-JUN-2007 09:54:41 * service_update * ilog * 0
    14-JUN-2007 09:54:46 * service_update * ilog * 0
    14-JUN-2007 09:54:48 * service_died * ilog * 12537
    14-JUN-2007 09:54:51 * service_register * ilog * 0
    14-JUN-2007 09:54:56 * service_update * ilog * 0
    14-JUN-2007 09:54:59 * service_update * ilog * 0
    14-JUN-2007 09:55:02 * service_update * ilog * 0
    14-JUN-2007 09:55:05 * service_update * ilog * 0
    14-JUN-2007 09:55:14 * service_update * ilog * 0
    14-JUN-2007 09:55:23 * service_update * ilog * 0
    14-JUN-2007 09:55:32 * service_update * ilog * 0
    14-JUN-2007 09:55:55 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1216)) * establish * ilog * 0
    14-JUN-2007 09:55:56 * service_update * ilog * 0
    14-JUN-2007 09:56:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1217)) * establish * ilog * 0
    14-JUN-2007 09:56:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1218)) * establish * ilog * 0
    14-JUN-2007 09:56:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1219)) * establish * ilog * 0
    14-JUN-2007 09:56:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1220)) * establish * ilog * 0
    14-JUN-2007 09:56:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1221)) * establish * ilog * 0
    14-JUN-2007 09:56:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1222)) * establish * ilog * 0
    14-JUN-2007 09:56:02 * service_update * ilog * 0
    14-JUN-2007 09:56:05 * service_update * ilog * 0
    14-JUN-2007 09:56:38 * service_update * ilog * 0
    14-JUN-2007 09:57:09 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1228)) * establish * ilog * 0
    14-JUN-2007 09:57:11 * service_update * ilog * 0
    14-JUN-2007 09:57:13 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1229)) * establish * ilog * 0
    14-JUN-2007 09:57:17 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1231)) * establish * ilog * 0
    14-JUN-2007 09:57:24 * ping * 0
    14-JUN-2007 09:57:26 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 09:57:30 * log_status * 0
    14-JUN-2007 09:57:31 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1239)) * establish * ilog * 0
    14-JUN-2007 09:57:34 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869824)) * status * 0
    14-JUN-2007 09:57:44 * service_update * ilog * 0
    14-JUN-2007 09:57:56 * service_update * ilog * 0
    14-JUN-2007 09:57:58 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1247)) * establish * ilog * 0
    14-JUN-2007 09:58:17 * service_update * ilog * 0
    14-JUN-2007 09:58:50 * service_update * ilog * 0
    14-JUN-2007 09:59:23 * service_update * ilog * 0
    14-JUN-2007 09:59:56 * service_update * ilog * 0
    14-JUN-2007 10:01:02 * service_update * ilog * 0
    14-JUN-2007 10:01:36 * service_update * ilog * 0
    14-JUN-2007 10:01:37 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1307)) * establish * ilog * 0
    14-JUN-2007 10:01:39 * service_update * ilog * 0
    14-JUN-2007 10:01:39 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1312)) * establish * ilog * 0
    14-JUN-2007 10:01:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1313)) * establish * ilog * 0
    14-JUN-2007 10:01:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1314)) * establish * ilog * 0
    14-JUN-2007 10:01:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1315)) * establish * ilog * 0
    14-JUN-2007 10:01:42 * service_update * ilog * 0
    14-JUN-2007 10:01:42 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1320)) * establish * ilog * 0
    14-JUN-2007 10:01:44 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1322)) * establish * ilog * 0
    14-JUN-2007 10:01:45 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1323)) * establish * ilog * 0
    14-JUN-2007 10:02:09 * service_update * ilog * 0
    14-JUN-2007 10:02:19 * ping * 0
    14-JUN-2007 10:02:20 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:02:30 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1328)) * establish * ilog * 0
    14-JUN-2007 10:02:42 * service_update * ilog * 0
    14-JUN-2007 10:03:48 * service_update * ilog * 0
    14-JUN-2007 10:03:54 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1346)) * establish * ilog * 0
    14-JUN-2007 10:04:14 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1348)) * establish * ilog * 0
    14-JUN-2007 10:04:21 * service_update * ilog * 0
    14-JUN-2007 10:04:54 * service_update * ilog * 0
    14-JUN-2007 10:06:39 * service_update * ilog * 0
    14-JUN-2007 10:07:20 * ping * 0
    14-JUN-2007 10:07:20 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:07:31 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1370)) * establish * ilog * 0
    14-JUN-2007 10:07:39 * service_update * ilog * 0
    14-JUN-2007 10:08:12 * service_update * ilog * 0
    14-JUN-2007 10:09:04 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 10:09:05 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:09:18 * service_update * ilog * 0
    14-JUN-2007 10:09:51 * service_update * ilog * 0
    14-JUN-2007 10:11:00 * service_update * ilog * 0
    14-JUN-2007 10:11:33 * service_update * ilog * 0
    14-JUN-2007 10:11:36 * service_update * ilog * 0
    14-JUN-2007 10:11:58 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1424)) * establish * ilog * 0
    14-JUN-2007 10:12:01 * service_update * ilog * 0
    14-JUN-2007 10:12:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1425)) * establish * ilog * 0
    14-JUN-2007 10:12:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1426)) * establish * ilog * 0
    14-JUN-2007 10:12:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1427)) * establish * ilog * 0
    14-JUN-2007 10:12:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1428)) * establish * ilog * 0
    14-JUN-2007 10:12:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1429)) * establish * ilog * 0
    14-JUN-2007 10:12:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1430)) * establish * ilog * 0
    14-JUN-2007 10:12:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1431)) * establish * ilog * 0
    14-JUN-2007 10:12:04 * service_update * ilog * 0
    14-JUN-2007 10:12:07 * service_update * ilog * 0
    14-JUN-2007 10:12:19 * ping * 0
    14-JUN-2007 10:12:19 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:12:30 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1442)) * establish * ilog * 0
    14-JUN-2007 10:12:40 * service_update * ilog * 0
    14-JUN-2007 10:13:46 * service_update * ilog * 0
    14-JUN-2007 10:14:19 * service_update * ilog * 0
    14-JUN-2007 10:14:52 * service_update * ilog * 0
    14-JUN-2007 10:15:19 * service_update * ilog * 0
    14-JUN-2007 10:15:25 * service_update * ilog * 0
    14-JUN-2007 10:15:58 * service_update * ilog * 0
    14-JUN-2007 10:16:58 * service_update * ilog * 0
    14-JUN-2007 10:17:04 * service_update * ilog * 0
    14-JUN-2007 10:17:19 * ping * 0
    14-JUN-2007 10:17:20 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:17:30 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1497)) * establish * ilog * 0
    14-JUN-2007 10:17:37 * service_update * ilog * 0
    14-JUN-2007 10:18:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1505)) * establish * ilog * 0
    14-JUN-2007 10:19:35 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1509)) * establish * ilog * 0
    14-JUN-2007 10:19:37 * service_update * ilog * 0
    14-JUN-2007 10:21:10 * service_update * ilog * 0
    14-JUN-2007 10:21:28 * service_update * ilog * 0
    14-JUN-2007 10:21:44 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1547)) * establish * ilog * 0
    14-JUN-2007 10:21:46 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1548)) * establish * ilog * 0
    14-JUN-2007 10:21:46 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1549)) * establish * ilog * 0
    14-JUN-2007 10:21:46 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1550)) * establish * ilog * 0
    14-JUN-2007 10:21:46 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1551)) * establish * ilog * 0
    14-JUN-2007 10:21:46 * service_update * ilog * 0
    14-JUN-2007 10:21:49 * service_update * ilog * 0
    14-JUN-2007 10:22:01 * service_update * ilog * 0
    14-JUN-2007 10:22:19 * ping * 0
    14-JUN-2007 10:22:19 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:22:30 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1555)) * establish * ilog * 0
    14-JUN-2007 10:22:35 * service_update * ilog * 0
    14-JUN-2007 10:24:04 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 10:24:05 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:24:47 * service_update * ilog * 0
    14-JUN-2007 10:25:20 * service_update * ilog * 0
    14-JUN-2007 10:26:44 * service_update * ilog * 0
    14-JUN-2007 10:27:19 * ping * 0
    14-JUN-2007 10:27:19 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 10:27:30 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1597)) * establish * ilog * 0
    14-JUN-2007 10:27:32 * service_update * ilog * 0
    14-JUN-2007 10:28:05 * service_update * ilog * 0
    14-JUN-2007 10:28:14 * service_update * ilog * 0
    14-JUN-2007 10:29:11 * service_update * ilog * 0
    14-JUN-2007 10:29:45 * service_update * ilog * 0
    14-JUN-2007 10:30:18 * service_update * ilog * 0
    14-JUN-2007 10:38:21 * service_update * ilog * 0
    14-JUN-2007 10:47:21 * service_update * ilog * 0
    14-JUN-2007 10:51:12 * service_update * ilog * 0
    14-JUN-2007 10:52:51 * service_update * ilog * 0
    14-JUN-2007 10:53:24 * service_update * ilog * 0
    14-JUN-2007 10:54:30 * service_update * ilog * 0
    14-JUN-2007 10:54:57 * service_update * ilog * 0
    14-JUN-2007 10:55:03 * service_update * ilog * 0
    14-JUN-2007 10:55:36 * service_update * ilog * 0
    14-JUN-2007 10:56:09 * service_update * ilog * 0
    14-JUN-2007 10:57:16 * service_update * ilog * 0
    14-JUN-2007 10:57:49 * service_update * ilog * 0
    14-JUN-2007 10:59:40 * service_update * ilog * 0
    14-JUN-2007 11:00:01 * service_update * ilog * 0
    14-JUN-2007 11:01:04 * service_update * ilog * 0
    14-JUN-2007 11:01:07 * service_update * ilog * 0
    14-JUN-2007 11:02:13 * service_update * ilog * 0
    14-JUN-2007 11:03:19 * service_update * ilog * 0
    14-JUN-2007 11:04:26 * service_update * ilog * 0
    14-JUN-2007 11:04:59 * service_update * ilog * 0
    14-JUN-2007 11:05:32 * service_update * ilog * 0
    14-JUN-2007 11:12:20 * service_update * ilog * 0
    14-JUN-2007 11:14:20 * service_update * ilog * 0
    14-JUN-2007 11:14:53 * service_update * ilog * 0
    14-JUN-2007 11:19:17 * service_update * ilog * 0
    14-JUN-2007 11:19:50 * service_update * ilog * 0
    14-JUN-2007 11:20:23 * service_update * ilog * 0
    14-JUN-2007 11:21:20 * service_update * ilog * 0
    14-JUN-2007 11:29:44 * service_update * ilog * 0
    14-JUN-2007 11:30:22 * service_update * ilog * 0
    14-JUN-2007 11:30:55 * service_update * ilog * 0
    14-JUN-2007 11:31:19 * service_update * ilog * 0
    14-JUN-2007 11:32:01 * service_update * ilog * 0
    14-JUN-2007 11:34:13 * service_update * ilog * 0
    14-JUN-2007 11:34:46 * service_update * ilog * 0
    14-JUN-2007 11:41:19 * service_update * ilog * 0
    14-JUN-2007 11:49:19 * service_update * ilog * 0
    14-JUN-2007 11:50:43 * service_update * ilog * 0
    14-JUN-2007 11:51:16 * service_update * ilog * 0
    14-JUN-2007 11:51:49 * service_update * ilog * 0
    14-JUN-2007 11:52:22 * service_update * ilog * 0
    14-JUN-2007 11:53:28 * service_update * ilog * 0
    14-JUN-2007 11:54:01 * service_update * ilog * 0
    14-JUN-2007 11:54:34 * service_update * ilog * 0
    14-JUN-2007 11:55:07 * service_update * ilog * 0
    14-JUN-2007 12:02:19 * service_update * ilog * 0
    14-JUN-2007 12:12:19 * service_update * ilog * 0
    14-JUN-2007 12:22:19 * service_update * ilog * 0
    14-JUN-2007 12:31:59 * service_update * ilog * 0
    14-JUN-2007 12:32:20 * service_update * ilog * 0
    14-JUN-2007 12:32:32 * service_update * ilog * 0
    14-JUN-2007 12:33:05 * service_update * ilog * 0
    14-JUN-2007 12:33:38 * service_update * ilog * 0
    14-JUN-2007 12:34:11 * service_update * ilog * 0
    14-JUN-2007 12:35:17 * service_update * ilog * 0
    14-JUN-2007 12:35:50 * service_update * ilog * 0
    14-JUN-2007 12:36:23 * service_update * ilog * 0
    14-JUN-2007 12:36:56 * service_update * ilog * 0
    14-JUN-2007 12:37:14 * service_update * ilog * 0
    14-JUN-2007 12:37:29 * service_update * ilog * 0
    14-JUN-2007 12:38:02 * service_update * ilog * 0
    14-JUN-2007 13:36:18 * service_update * ilog * 0
    14-JUN-2007 13:36:21 * service_update * ilog * 0
    14-JUN-2007 13:36:54 * service_update * ilog * 0
    14-JUN-2007 13:40:54 * service_update * ilog * 0
    14-JUN-2007 13:42:24 * service_update * ilog * 0
    14-JUN-2007 13:43:31 * service_update * ilog * 0
    14-JUN-2007 13:44:04 * service_update * ilog * 0
    14-JUN-2007 13:44:37 * service_update * ilog * 0
    14-JUN-2007 13:45:10 * service_update * ilog * 0
    14-JUN-2007 13:45:43 * service_update * ilog * 0
    14-JUN-2007 13:53:25 * service_update * ilog * 0
    14-JUN-2007 13:54:01 * service_update * ilog * 0
    14-JUN-2007 13:55:18 * service_died * ilog * 12537
    14-JUN-2007 13:55:30 * service_register * ilog * 0
    14-JUN-2007 13:55:58 * service_died * ilog * 12537
    14-JUN-2007 14:10:32 * service_register * ilog * 0
    14-JUN-2007 14:10:38 * service_update * ilog * 0
    14-JUN-2007 14:10:41 * service_update * ilog * 0
    14-JUN-2007 14:10:44 * service_update * ilog * 0
    14-JUN-2007 14:11:16 * service_update * ilog * 0
    14-JUN-2007 14:11:22 * service_died * ilog * 12537
    14-JUN-2007 14:12:48 * service_register * ilog * 0
    14-JUN-2007 14:12:53 * service_update * ilog * 0
    14-JUN-2007 14:12:55 * service_update * ilog * 0
    14-JUN-2007 14:12:58 * service_update * ilog * 0
    14-JUN-2007 14:14:01 * service_update * ilog * 0
    14-JUN-2007 14:14:34 * service_update * ilog * 0
    14-JUN-2007 14:15:07 * service_update * ilog * 0
    14-JUN-2007 14:15:40 * service_update * ilog * 0
    14-JUN-2007 14:16:14 * service_update * ilog * 0
    14-JUN-2007 14:16:47 * service_update * ilog * 0
    14-JUN-2007 14:18:26 * service_update * ilog * 0
    14-JUN-2007 14:18:59 * service_update * ilog * 0
    14-JUN-2007 14:19:32 * service_update * ilog * 0
    14-JUN-2007 14:20:05 * service_update * ilog * 0
    14-JUN-2007 14:20:38 * service_update * ilog * 0
    14-JUN-2007 14:21:44 * service_update * ilog * 0
    14-JUN-2007 14:22:17 * service_update * ilog * 0
    14-JUN-2007 14:23:24 * service_update * ilog * 0
    14-JUN-2007 14:23:57 * service_update * ilog * 0
    14-JUN-2007 14:25:04 * service_update * ilog * 0
    14-JUN-2007 14:25:37 * service_update * ilog * 0
    14-JUN-2007 14:26:10 * service_update * ilog * 0
    14-JUN-2007 14:26:40 * service_update * ilog * 0
    14-JUN-2007 14:26:43 * service_update * ilog * 0
    14-JUN-2007 14:27:49 * service_died * ilog * 12547
    TNS-12547: TNS:lost contact
    TNSLSNR for 32-bit Windows: Version 10.2.0.2.0 - Production on 14-JUN-2007 14:35:00
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\ORANT10G\network\admin\listener.ora
    Log messages written to C:\ORANT10G\network\log\listener.log
    Trace information written to C:\ORANT10G\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=1928
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xppro)(PORT=1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    14-JUN-2007 14:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1078)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:38 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1080)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:39 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1081)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:39 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1082)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:39 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1083)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:39 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1084)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1086)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1087)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1088)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:42 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1090)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:43 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1092)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:43 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1093)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:45 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1095)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:47 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1097)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:47 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1098)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:52 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1100)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:52 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1101)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:52 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1102)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1103)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1104)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1105)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1106)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1107)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:53 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1108)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:54 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1109)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:54 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1110)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:37:56 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1112)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:56 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1113)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:59 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1115)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:59 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1116)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:59 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1118)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:37:59 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1119)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:00 * ping * 0
    14-JUN-2007 14:38:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 14:38:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1122)) * establish * ilog * 12505
    TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    14-JUN-2007 14:38:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1124)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:04 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1126)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:09 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1130)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:12 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1132)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:12 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1133)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:15 * log_status * 0
    14-JUN-2007 14:38:19 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869824)) * status * 0
    14-JUN-2007 14:38:29 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1137)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:29 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1138)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:29 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1140)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:29 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1141)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1143)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1145)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:45 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1147)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:38:45 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1148)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1150)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1151)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1153)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1154)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:08 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1156)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:30 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1160)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:30 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1161)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:30 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1163)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:30 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1164)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:38 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1166)) * establish * ilog * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    14-JUN-2007 14:39:43 * service_register * ilog * 0
    14-JUN-2007 14:39:45 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1170)) * establish * ilog * 12528
    TNS-12528: TNS:listener: all appropriate instances are blocking new connections
    14-JUN-2007 14:39:49 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1172)) * establish * ilog * 12528
    TNS-12528: TNS:listener: all appropriate instances are blocking new connections
    14-JUN-2007 14:39:49 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1173)) * establish * ilog * 12528
    TNS-12528: TNS:listener: all appropriate instances are blocking new connections
    14-JUN-2007 14:39:52 * service_update * ilog * 0
    14-JUN-2007 14:39:58 * service_update * ilog * 0
    14-JUN-2007 14:40:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1175)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1176)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1177)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1178)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1180)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1181)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1182)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1183)) * establish * ilog * 0
    14-JUN-2007 14:40:01 * service_update * ilog * 0
    14-JUN-2007 14:40:04 * service_update * ilog * 0
    14-JUN-2007 14:40:10 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1185)) * establish * ilog * 0
    14-JUN-2007 14:40:10 * service_update * ilog * 0
    14-JUN-2007 14:40:31 * service_update * ilog * 0
    14-JUN-2007 14:40:46 * service_update * ilog * 0
    14-JUN-2007 14:41:04 * service_update * ilog * 0
    14-JUN-2007 14:41:37 * service_update * ilog * 0
    14-JUN-2007 14:42:11 * service_update * ilog * 0
    14-JUN-2007 14:42:27 * service_update * ilog * 0
    14-JUN-2007 14:42:34 * service_died * ilog * 12537
    14-JUN-2007 15:30:19 * service_register * ilog * 0
    14-JUN-2007 15:31:04 * service_update * ilog * 0
    14-JUN-2007 15:31:05 * service_update * ilog * 0
    14-JUN-2007 15:31:06 * service_died * ilog * 12537
    14-JUN-2007 15:31:10 * service_register * ilog * 0
    14-JUN-2007 15:31:13 * service_update * ilog * 0
    14-JUN-2007 15:31:19 * service_update * ilog * 0
    14-JUN-2007 15:31:22 * service_update * ilog * 0
    14-JUN-2007 15:31:46 * service_update * ilog * 0
    14-JUN-2007 15:31:52 * service_update * ilog * 0
    14-JUN-2007 15:32:25 * service_update * ilog * 0
    14-JUN-2007 15:32:58 * service_update * ilog * 0
    14-JUN-2007 15:36:16 * service_update * ilog * 0
    14-JUN-2007 15:36:17 * service_update * ilog * 0
    14-JUN-2007 15:36:22 * service_update * ilog * 0
    14-JUN-2007 15:36:23 * service_died * ilog * 12537
    14-JUN-2007 15:36:26 * service_register * ilog * 0
    14-JUN-2007 15:36:32 * service_update * ilog * 0
    14-JUN-2007 15:36:35 * service_update * ilog * 0
    14-JUN-2007 15:36:38 * service_update * ilog * 0
    14-JUN-2007 15:36:41 * service_update * ilog * 0
    14-JUN-2007 15:36:47 * service_update * ilog * 0
    14-JUN-2007 15:36:50 * service_update * ilog * 0
    14-JUN-2007 15:36:59 * service_update * ilog * 0
    14-JUN-2007 15:37:08 * service_update * ilog * 0
    14-JUN-2007 15:37:20 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1262)) * establish * ilog * 0
    14-JUN-2007 15:37:20 * service_update * ilog * 0
    14-JUN-2007 15:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1263)) * establish * ilog * 0
    14-JUN-2007 15:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1264)) * establish * ilog * 0
    14-JUN-2007 15:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1265)) * establish * ilog * 0
    14-JUN-2007 15:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1266)) * establish * ilog * 0
    14-JUN-2007 15:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1267)) * establish * ilog * 0
    14-JUN-2007 15:37:22 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1268)) * establish * ilog * 0
    14-JUN-2007 15:37:23 * service_update * ilog * 0
    14-JUN-2007 15:37:41 * service_update * ilog * 0
    14-JUN-2007 15:38:14 * service_update * ilog * 0
    14-JUN-2007 15:38:42 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1274)) * establish * ilog * 0
    14-JUN-2007 15:38:44 * service_update * ilog * 0
    14-JUN-2007 15:38:45 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1275)) * establish * ilog * 0
    14-JUN-2007 15:38:47 * service_update * ilog * 0
    14-JUN-2007 15:38:48 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\bin\emagent.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1276)) * establish * ilog * 0
    14-JUN-2007 15:38:50 * ping * 0
    14-JUN-2007 15:38:52 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 15:39:01 * log_status * 0
    14-JUN-2007 15:39:02 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1285)) * establish * ilog * 0
    14-JUN-2007 15:39:04 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869824)) * status * 0
    14-JUN-2007 15:39:17 * service_update * ilog * 0
    14-JUN-2007 15:39:20 * service_update * ilog * 0
    14-JUN-2007 15:39:29 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1293)) * establish * ilog * 0
    14-JUN-2007 15:39:53 * service_update * ilog * 0
    14-JUN-2007 15:40:26 * service_update * ilog * 0
    14-JUN-2007 15:40:59 * service_update * ilog * 0
    14-JUN-2007 15:41:32 * service_update * ilog * 0
    14-JUN-2007 15:42:05 * service_update * ilog * 0
    14-JUN-2007 15:42:53 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1328)) * establish * ilog * 0
    14-JUN-2007 15:42:55 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1329)) * establish * ilog * 0
    14-JUN-2007 15:42:56 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1330)) * establish * ilog * 0
    14-JUN-2007 15:43:11 * service_update * ilog * 0
    14-JUN-2007 15:43:44 * service_update * ilog * 0
    14-JUN-2007 15:43:50 * ping * 0
    14-JUN-2007 15:43:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 15:44:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1340)) * establish * ilog * 0
    14-JUN-2007 15:44:17 * service_update * ilog * 0
    14-JUN-2007 15:45:23 * service_update * ilog * 0
    14-JUN-2007 15:45:25 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1347)) * establish * ilog * 0
    14-JUN-2007 15:45:44 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1351)) * establish * ilog * 0
    14-JUN-2007 15:45:56 * service_update * ilog * 0
    14-JUN-2007 15:46:29 * service_update * ilog * 0
    14-JUN-2007 15:47:20 * service_update * ilog * 0
    14-JUN-2007 15:48:50 * ping * 0
    14-JUN-2007 15:48:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 15:49:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1372)) * establish * ilog * 0
    14-JUN-2007 15:50:35 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 15:50:37 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 15:53:51 * ping * 0
    14-JUN-2007 15:53:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 15:54:02 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1408)) * establish * ilog * 0
    14-JUN-2007 15:54:50 * service_update * ilog * 0
    14-JUN-2007 15:58:45 * service_update * ilog * 0
    14-JUN-2007 15:58:51 * ping * 0
    14-JUN-2007 15:58:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 15:59:02 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1436)) * establish * ilog * 0
    14-JUN-2007 16:00:24 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1442)) * establish * ilog * 0
    14-JUN-2007 16:01:06 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1448)) * establish * ilog * 0
    14-JUN-2007 16:03:09 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1460)) * establish * ilog * 0
    14-JUN-2007 16:03:12 * service_update * ilog * 0
    14-JUN-2007 16:03:50 * ping * 0
    14-JUN-2007 16:03:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:04:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1466)) * establish * ilog * 0
    14-JUN-2007 16:05:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 16:05:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:08:50 * ping * 0
    14-JUN-2007 16:08:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:09:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1498)) * establish * ilog * 0
    14-JUN-2007 16:10:51 * service_update * ilog * 0
    14-JUN-2007 16:13:45 * service_update * ilog * 0
    14-JUN-2007 16:13:50 * ping * 0
    14-JUN-2007 16:13:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:14:02 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1527)) * establish * ilog * 0
    14-JUN-2007 16:15:25 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1533)) * establish * ilog * 0
    14-JUN-2007 16:18:51 * ping * 0
    14-JUN-2007 16:18:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:19:02 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1558)) * establish * ilog * 0
    14-JUN-2007 16:19:51 * service_update * ilog * 0
    14-JUN-2007 16:20:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 16:20:37 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:23:50 * ping * 0
    14-JUN-2007 16:23:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:24:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1588)) * establish * ilog * 0
    14-JUN-2007 16:27:51 * service_update * ilog * 0
    14-JUN-2007 16:28:50 * ping * 0
    14-JUN-2007 16:28:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:29:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1616)) * establish * ilog * 0
    14-JUN-2007 16:30:24 * service_update * ilog * 0
    14-JUN-2007 16:30:24 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1626)) * establish * ilog * 0
    14-JUN-2007 16:30:27 * service_update * ilog * 0
    14-JUN-2007 16:30:30 * service_update * ilog * 0
    14-JUN-2007 16:31:04 * service_update * ilog * 0
    14-JUN-2007 16:31:07 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1655)) * establish * ilog * 0
    14-JUN-2007 16:31:37 * service_update * ilog * 0
    14-JUN-2007 16:32:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1680)) * establish * ilog * 0
    14-JUN-2007 16:32:43 * service_update * ilog * 0
    14-JUN-2007 16:32:44 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1681)) * establish * ilog * 0
    14-JUN-2007 16:32:44 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1682)) * establish * ilog * 0
    14-JUN-2007 16:32:44 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1683)) * establish * ilog * 0
    14-JUN-2007 16:32:46 * service_update * ilog * 0
    14-JUN-2007 16:33:16 * service_update * ilog * 0
    14-JUN-2007 16:33:49 * service_update * ilog * 0
    14-JUN-2007 16:33:50 * ping * 0
    14-JUN-2007 16:33:51 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:35:08 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1702)) * establish * ilog * 0
    14-JUN-2007 16:35:29 * service_update * ilog * 0
    14-JUN-2007 16:35:35 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 16:35:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:36:02 * service_update * ilog * 0
    14-JUN-2007 16:36:23 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1712)) * establish * ilog * 0
    14-JUN-2007 16:36:26 * service_update * ilog * 0
    14-JUN-2007 16:38:11 * service_update * ilog * 0
    14-JUN-2007 16:38:14 * service_update * ilog * 0
    14-JUN-2007 16:38:47 * service_update * ilog * 0
    14-JUN-2007 16:38:50 * ping * 0
    14-JUN-2007 16:38:50 * service_update * ilog * 0
    14-JUN-2007 16:38:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:39:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1740)) * establish * ilog * 0
    14-JUN-2007 16:39:29 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1744)) * establish * ilog * 0
    14-JUN-2007 16:39:53 * service_update * ilog * 0
    14-JUN-2007 16:43:50 * ping * 0
    14-JUN-2007 16:43:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:44:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1770)) * establish * ilog * 0
    14-JUN-2007 16:45:11 * service_update * ilog * 0
    14-JUN-2007 16:45:24 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1777)) * establish * ilog * 0
    14-JUN-2007 16:46:26 * service_update * ilog * 0
    14-JUN-2007 16:48:50 * ping * 0
    14-JUN-2007 16:48:50 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:49:01 * (CONNECT_DATA=(SID=ilog)(CID=(PROGRAM=C:\ORANT10G\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe)(HOST=XPPRO)(USER=SYSTEM))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1797)) * establish * ilog * 0
    14-JUN-2007 16:50:35 * service_update * ilog * 0
    14-JUN-2007 16:50:35 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521))))(VERSION=169869824)) * services * 0
    14-JUN-2007 16:50:37 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=xppro)(PORT=1521)))(VERSION=169869824)) * status * 0
    14-JUN-2007 16:50:54 * service_update * ilog * 0
    14-JUN-2007 16:50:54 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1817)) * establish * ilog * 0
    14-JUN-2007 16:50:57 * service_update * ilog * 0
    14-JUN-2007 16:50:57 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1833)) * establish * ilog * 0
    14-JUN-2007 16:50:58 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1836)) * establish * ilog * 0
    14-JUN-2007 16:50:58 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=ilog)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.37.101.198)(PORT=1837)) * establish * ilog * 0
    14-JUN-2007 16:51:00 * service_update * ilog * 0
    14

  • Multiple errors from MsiInstaller with event id 1015 and text "Failed to connect to server. Error: 0x80070005"

    Hi,
    Every night I get a lot of warnings in the event log from MsiInstaller with event ID 1015 and text "Failed to connect to server. Error: 0x80070005". They are always followed by a new event 1035. Example:
    Event 1015, MsiInstaller (Warning)
    Failed to connect to server. Error: 0x80070005
    Event 1035, MsiInstaller (Information)
    Windows Installer reconfigured the product. Product Name: Microsoft Excel Mobile Viewer Components. Product Version: 14.0.4763.1000. Product Language: 0. Manufacturer: Microsoft Corporation. Reconfiguration success or error status: 0.
    I probably get around 50 of these each night, and the 1035 events are all related to various SharePoint components. The user in all cases is the sharepoint farm account.
    I use SharePoint 2010 enterprise in a farm install on one virtual server. I have a private domain, and the database is on a separate server.
    Does anyone have any idea why this happens? Other than the error in the event log I cannot see any issues with my installation. I have searched for this error and seen it related to user profile synchronisation, but profile sync is working fine for me. I
    installed using the Technet guide and the user profile sync guide at
    http://www.harbar.net/articles/sp2010ups.aspx
    Thanks,
    Mikael

    Hey Trevor. Thanks. I wasn't sure which method it was failing on although I understood it was the Windows Installer Service that was getting called by the job. There are three things that are still interesting to me though:
    The job succeeds anyway. How? Does it just continue to run the rest of its checks but fails on this one? If it doesn't fail on this one, why not? If it does fail here, but then continues, should we be concerned about the quality of the data in Manage Patch
    Status? 
    Or... does it somehow succeed once it uses the DCOM rights which appear to clear the 10016 errors? What I've never been able to reconcile with these warnings is that we've granted DCOM rights to launch and activate the Windows Installer Service and
    that definitely seems to make a difference to success or failure of the job - so why doesn't it clear these warnings? 
    Why does granting the file system permissions clear the FIM version of this job's warnings, but not for the Product Version Job? This is particularly vexing since granting the DCOM rights appears to resolve the 10016 errors in exactly the same manner for
    both jobs. 
    All of this has led me to believe that there were missing permissions somewhere, probably on the file system, but I just haven't had any luck pinning that down. One reason why I continued to pursue a solution to this is that the job doesn't actually try
    to install anything, it's just trying to use the Windows Installer Service to query the installed version, and the DCOM rights should be sufficient to invoke the service. But getting much further than this has proven pretty difficult since I'm not a dev and
    I've kind of pushed my limited reflection skills and understanding of the Windows Installer Service to the limit. If anyone can chip in and make some progress from this point, it'd be great to join forces! 

  • Takes up to 5 min "Applying User Settings" with events ID 6005 6006 after a reboot - Win Server 2008 R2 Standard 64bit

    Hi,
    Has anybody seen the issue below showing in the logs? The time for the logs messages switch from the real time (17:57) to some random time (10:55). There seem to be a disconnect with the time. I noticed right when the status message while logging in switches
    to "apply user settings", the time get screwed up on the gpsvc.log file and switches to the random time (10:55) and keeps reporting that random time till "apply user settings" process completes and switches back to regular real time (17:57).
    I made sure the server is synced up with w32tm /resync command. Tried different DNS settings. Tried dis joining and rejoining to the domain. tried to block inheritance on GPMC to that OU. Created new domain user. Deleted local profiles. All with no luck and
    same behavior which is taking up to 5 min "applying user setting" only after a reboot. If I log in and out without reboot, it would log in just fine within seconds.
    Any thoughts or suggestions are appreciated!
    Thanks,
    Here is a copy from the gpsvc.log:
    GPSVC(338.354) 17:57:08:406 -------------------------------------------
    GPSVC(338.354) 17:57:08:406 Use the Event Viewer to analyze the Group Policy operational log for details on Group Policy service activity.
    GPSVC(338.354) 17:57:08:406 -------------------------------------------
    GPSVC(338.354) 17:57:08:406  
    GPSVC(338.354) 17:57:08:406 InitializeProductType: Product Type: 2
    GPSVC(338.354) 17:57:08:406 Register for connectivity notification is Enabled.
    GPSVC(338.354) 17:57:08:406 Connectivity manager class initialized with for IntranetAuth connectivity
    GPSVC(338.354) 17:57:08:640 Target = Machine
    GPSVC(338.350) 17:57:08:640 Target = Machine, ChangeNumber 0
    GPSVC(338.39c) 17:57:09:232 bMachine = 1 
    GPSVC(338.39c) 17:57:09:232 Setting GPsession state = 1
    GPSVC(338.27c) 17:57:09:232 Waiting for connectivity before applying policies
    GPSVC(338.27c) 17:57:09:232 Waiting for SamSs with timeout 8264
    GPSVC(338.39c) 17:57:09:232 Message Status = <Applying computer settings...>
    GPSVC(338.39c) 17:57:09:232 Target = Machine
    GPSVC(338.39c) 17:57:09:232 Target = Machine, ChangeNumber 0
    GPSVC(338.39c) 17:57:09:248 Setting GPsession state = 1
    GPSVC(338.27c) 17:57:09:357 Waiting for NTDS.IndexRecreateEvent with timeout 8139
    GPSVC(338.27c) 17:57:09:357 Waiting for NlaSvc with timeout 8139
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:669 Sid = (null)
    GPSVC(338.350) 17:57:09:669 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:669 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:669 Setting lock state as notLocked
    GPSVC(338.350) 17:57:09:669 UnLocked successfully
    GPSVC(338.27c) 10:55:29:426 Waiting for NETLOGON with timeout 6392
    GPSVC(338.27c) 10:55:29:426 Waiting for MUP with timeout 6392
    GPSVC(338.27c) 10:55:29:426 Waiting for wkssvc to signal MUP event
    GPSVC(338.5bc) 10:55:29:519 Target = Machine
    GPSVC(338.5bc) 10:55:29:519 Target = Machine, ChangeNumber 0
    GPSVC(3b0.67c) 10:55:29:535 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x16c
    GPSVC(3b0.67c) 10:55:29:535 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.5bc) 10:55:29:535 Target = Machine
    GPSVC(3b0.67c) 10:55:29:535 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(3b0.67c) 10:55:29:535 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.6c4) 10:55:29:535 Target = Machine
    GPSVC(338.5b0) 10:55:29:535 Target = Machine, ChangeNumber 0
    GPSVC(338.5b0) 10:55:29:535 Sid = (null), dwTimeout = 600000, dwFlags = 268435456
    GPSVC(338.5b0) 10:55:29:535 LockPolicySection called for user <Machine>
    GPSVC(338.5b0) 10:55:29:535 Async Lock called
    GPSVC(338.5b0) 10:55:29:535 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.5bc) 10:55:29:535 Sid = (null)
    GPSVC(338.5bc) 10:55:29:535 UnLockPolicySection called for user <Machine>
    GPSVC(338.5bc) 10:55:29:535 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.5bc) 10:55:29:535 Setting lock state as notLocked
    GPSVC(338.5bc) 10:55:29:535 UnLocked successfully
    GPSVC(338.754) 10:55:29:816 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xc18
    GPSVC(338.754) 10:55:29:816 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.350) 10:55:29:816 Target = Machine
    GPSVC(338.754) 10:55:29:816 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.754) 10:55:29:816 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.27c) 10:55:29:987 Done waiting for MUP
    GPSVC(338.27c) 10:55:29:987 Waiting for DS with timeout 5830
    GPSVC(338.27c) 10:55:29:987 Registered for NLA notification successfully
    GPSVC(338.27c) 10:55:29:987 NlaGetIntranetCapability returned Not Ready error. Consider it as NOT intranet capable.
    GPSVC(338.27c) 10:55:29:987 There is no connectivity. Waiting for connectivity again...
    GPSVC(338.27c) 10:55:30:455 There is connectivity.
    GPSVC(338.27c) 10:55:30:455 We have network connectivity... proceeding to apply policy.
    GPSVC(338.27c) 10:55:30:455 NlaQueryNetSignatures returned 1 networks
    GPSVC(338.27c) 10:55:30:455 Found a intranet+auth network
    GPSVC(338.27c) 10:55:30:455 # of interfaces : 1
    GPSVC(338.27c) 10:55:30:455 Interface ID: {9538E3E7-197E-4A34-82B6-F457DC25D35D}
    GPSVC(338.27c) 10:55:30:455 Compartment ID: 1
    GPSVC(338.27c) 10:55:30:455 Setting the CompartmentId [1] on the current thread
    GPSVC(338.27c) 10:55:30:455 GetDomainControllerConnectionInfo: Enabling bandwidth estimate.
    GPSVC(338.27c) 10:55:30:502 Started bandwidth estimation successfully
    GPSVC(338.27c) 10:55:30:502 GetDomainControllerConnectionInfo: Getting Ldap Handles.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: DOMAIN-NAME.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Server connection established.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Binding using only kerberos.
    GPSVC(338.27c) 10:55:30:518 GetLdapHandle:  Bound successfully.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\dskquota.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ProcessGPOs:  No site name defined.  Skipping site policy.
    GPSVC(338.27c) 10:55:30:518 GetGPOInfo:  ********************************
    GPSVC(338.27c) 10:55:30:518 GetGPOInfo:  Entering...
    GPSVC(338.27c) 10:55:30:533 GetMachineToken:  Looping for authentication again.
    GPSVC(338.27c) 10:55:30:580 GetMachineToken:  Looping for authentication again.
    GPSVC(338.27c) 10:55:30:596 GetMachineToken:  InitializeSecurityContext failed with 0x80090324
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  Failed to get the machine token with  -2146893020
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  Leaving with 0
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  ********************************
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: GetGPOInfo failed.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: No WMI logging done in this policy cycle.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: Processing failed with error -2146893020.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: Boot/Logon Policy processing - checking if UBPM trigger events need to be fired
    GPSVC(338.27c) 10:55:30:596 CheckAndFireGPTriggerEvent: Fired Policy present UBPM trigger event for Machine.
    GPSVC(338.27c) 10:55:30:596 Application complete with bConnectivityFailure = 0.
    GPSVC(338.27c) 10:55:30:596 Application complete with bConnectivityFailure = 0.
    GPSVC(338.4d0) 10:55:32:281 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xd94
    GPSVC(338.4d0) 10:55:32:281 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.4f0) 10:55:32:281 Target = Machine
    GPSVC(338.4d0) 10:55:32:281 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.4d0) 10:55:32:281 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.384) 10:55:32:281 Target = Machine, ChangeNumber 0
    GPSVC(338.384) 10:55:35:900 SID = S-1-5-21-1599696121-1964574698-334091239-301107
    GPSVC(338.384) 10:55:35:900 bMachine = 0 
    GPSVC(338.384) 10:55:35:900 Setting GPsession state = 1
    GPSVC(338.384) 10:55:35:900 Message Status = <Applying user settings...>
    GPSVC(338.6c4) 10:55:35:900 Setting GPsession state = 1
    GPSVC(338.718) 10:55:35:900 StartTime For network wait: 11200ms
    GPSVC(338.718) 10:55:35:900 Current Time: 19546ms
    GPSVC(338.718) 10:55:35:900 MaxTimeToWaitForNetwork: 7034ms
    GPSVC(338.718) 10:55:35:900 TimeRemainingToWaitForNetwork: 0ms
    GPSVC(338.718) 10:55:35:900 UserPolicy: Waiting for machine policy wait for network event with timeout 0 ms
    GPSVC(338.718) 10:55:35:915 GPLockPolicySection: Sid = (null), dwTimeout = 30000, dwFlags = 65538
    GPSVC(338.718) 10:55:35:915 LockPolicySection called for user <Machine>
    GPSVC(338.718) 10:55:35:915 Sync Lock Called
    GPSVC(338.718) 10:55:35:915 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.718) 10:55:35:915 Lock taken successfully
    GPSVC(338.718) 10:55:35:915 UnLockPolicySection called for user <Machine>
    GPSVC(338.718) 10:55:35:915 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.718) 10:55:35:915 Setting lock state as notLocked
    GPSVC(338.718) 10:55:35:915 UnLocked successfully
    GPSVC(338.718) 10:55:35:915 GetDomainControllerConnectionInfo: Enabling bandwidth estimate.
    GPSVC(338.718) 10:55:36:430 Started bandwidth estimation successfully
    GPSVC(338.718) 10:55:36:430 GetDomainControllerConnectionInfo: Getting Ldap Handles.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: DOMAIN-NAME.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Server connection established.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Bound successfully.
    GPSVC(338.718) 10:55:36:430 ProcessGPOs: Computer's domain is same as user's domain so using user's domain DC
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: <Unspecified>.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Server connection established.
    GPSVC(338.718) 10:55:36:446 GetLdapHandle:  Bound successfully.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\dskquota.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ProcessGPOs:  No site name defined.  Skipping site policy.
    GPSVC(338.718) 10:55:36:446 GetGPOInfo:  ********************************
    GPSVC(338.718) 10:55:36:446 GetGPOInfo:  Entering...
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Searching <OU=People,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Found GPO(s):  < >
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Searching <DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Found GPO(s):  <[LDAP://CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  ==============================
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Deferring search for <LDAP://CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 EvaluateDeferredGPOs:  Searching for GPOs in cn=policies,cn=system,DC=ad,DC=*****,DC=****
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  ==============================
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Searching <CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  User has access to this GPO.
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  GPO passes the filter check.
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Found functionality version of:  2
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Found file system path of:  <\\DOMAIN-NAME\sysvol\DOMAIN-NAME\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}>
    GPSVC(418.430) 17:59:09:821 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x3dc
    GPSVC(418.430) 17:59:09:821 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:09:821 Target = Machine
    GPSVC(418.430) 17:59:09:821 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(418.430) 17:59:09:821 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.30c) 17:59:09:821 Target = Machine, ChangeNumber 0
    GPSVC(418.430) 17:59:09:837 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x448
    GPSVC(418.430) 17:59:09:837 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.30c) 17:59:09:837 Target = Machine
    GPSVC(418.430) 17:59:09:837 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(418.430) 17:59:09:837 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.6b8) 17:59:09:837 Target = Machine, ChangeNumber 0
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::UnregisterNotification: Entering with event 0x16c
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::AbortAsyncRegistration: No asyn registration is pending
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::UnregisterNotification: Canceling pending calls
    GPSVC(3b0.3c0) 17:59:11:288 Client_CompleteNotificationCall: failed with 0x71a
    GPSVC(3b0.3c0) 17:59:11:288 CGPNotify::UnregisterNotification: Cancelled pending calls
    GPSVC(3b0.3c0) 17:59:11:288 CGPNotify::UnregisterNotification: Exiting with dwStatus = 0x0
    GPSVC(338.30c) 17:59:12:380 Target = Machine
    GPSVC(338.30c) 17:59:12:380 Target = Machine, ChangeNumber 0
    GPSVC(338.30c) 17:59:13:051 Target = Machine
    GPSVC(338.30c) 17:59:13:051 Target = Machine, ChangeNumber 0
    GPSVC(338.30c) 17:59:13:285 Target = Machine
    GPSVC(338.30c) 17:59:13:285 Target = Machine, ChangeNumber 0
    GPSVC(338.5a0) 17:59:14:143 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xf04
    GPSVC(338.5a0) 17:59:14:143 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:14:143 Target = Machine
    GPSVC(338.5a0) 17:59:14:143 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.5a0) 17:59:14:143 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(204.228) 17:59:59:897 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xb50
    GPSVC(204.228) 17:59:59:897 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:59:897 Target = Machine
    GPSVC(204.228) 17:59:59:897 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(204.228) 17:59:59:897 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found common name of:  <{31B2F340-016D-11D2-945F-00C04FB984F9}>
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found display name of:  <Default Domain Policy>
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found user version of:  GPC is 1, GPT is 1
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found flags of:  0
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found extensions:  [{3060E8D0-7020-11D2-842D-00C04FA372D4}{3060E8CE-7020-11D2-842D-00C04FA372D4}]
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:58:941 ProcessLocalGPO:  Local GPO's gpt.ini is not accessible, assuming default state.
    GPSVC(338.718) 18:01:58:941 ProcessLocalGPO:  GPO Local Group Policy doesn't contain any data since the version number is 0.  It will be skipped.
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  Leaving with 1
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  ********************************
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  ********************************
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  Entering...
    GPSVC(338.718) 18:01:59:097 SearchDSObject:  Searching <OU=FM-Security Video Servers,OU=FM-Servers,OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:097 SearchDSObject:  Found GPO(s):  <[LDAP://cn={B957D759-2AF4-4592-95B8-5B7C62F9B340},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:097 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={B957D759-2AF4-4592-95B8-5B7C62F9B340},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=FM-Servers,OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Found GPO(s):  <[LDAP://cn={E8A9990E-57AD-4B7B-BAE4-C56E20FB6314},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={251254DD-27DC-419F-816D-C51CDB309D8F},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E8A9990E-57AD-4B7B-BAE4-C56E20FB6314},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={251254DD-27DC-419F-816D-C51CDB309D8F},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Found GPO(s):  <[LDAP://cn={1A42DA26-38F9-491C-940B-9D37895BE92A},cn=policies,cn=system,DC=ad,DC=*****,DC=****;1][LDAP://cn={F3D0434D-3EFF-4713-908C-3D8AB8189FB9},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={F03FA73B-A5B5-496B-94E5-5315D1D8F5F3},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={386C2C68-BB18-483B-AF36-92E76C1178D2},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={3D83F7A1-D4C2-4F8E-8808-CD5415D5A91E},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={462C2912-2318-4F46-A082-8BCC07EBDA29},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={7690B141-A1C2-4381-BD63-1AF5C09B4456},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={62C29217-3E25-42FC-8469-78312109323E},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={E795AC88-A750-45AF-870C-7EEDF00AA64A},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={B7C7410F-A3C0-4F12-8C3A-245C317EDFBA},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={CE1F85C1-DF2D-4E34-898B-2D6E3D0B55BE},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={D1B4C3BE-41CD-41B2-8A26-BE2EFD6953D0},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={E2673882-F33C-4879-AE75-583829D8BDA8},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={074DE127-4DBA-43F2-9C19-5953AD76CE9F},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={F4BAB9C5-0B6E-426B-93D3-1950A7002DC7},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={4A2C73AF-509F-4434-AF58-1AB3888959B4},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  The link to GPO LDAP://cn={1A42DA26-38F9-491C-940B-9D37895BE92A},cn=policies,cn=system,DC=ad,DC=*****,DC=**** is disabled.  It will be skipped for processing.
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F3D0434D-3EFF-4713-908C-3D8AB8189FB9},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F03FA73B-A5B5-496B-94E5-5315D1D8F5F3},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={386C2C68-BB18-483B-AF36-92E76C1178D2},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={3D83F7A1-D4C2-4F8E-8808-CD5415D5A91E},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={462C2912-2318-4F46-A082-8BCC07EBDA29},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={7690B141-A1C2-4381-BD63-1AF5C09B4456},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={62C29217-3E25-42FC-8469-78312109323E},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E795AC88-A750-45AF-870C-7EEDF00AA64A},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={B7C7410F-A3C0-4F12-8C3A-245C317EDFBA},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={CE1F85C1-DF2D-4E34-898B-2D6E3D0B55BE},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={D1B4C3BE-41CD-41B2-8A26-BE2EFD6953D0},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E2673882-F33C-4879-AE75-583829D8BDA8},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={074DE127-4DBA-43F2-9C19-5953AD76CE9F},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F4BAB9C5-0B6E-426B-93D3-1950A7002DC7},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={4A2C73AF-509F-4434-AF58-1AB3888959B4},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  No GPO(s) for this object.
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <DC=ad,DC=*****,DC=****>

    > GPSVC(338.350) 17:57:09:669 UnLocked successfully
    > GPSVC(338.27c) 10:55:29:426 Waiting for NETLOGON with timeout 6392
    The numbers in parenthesis are PID.TID of gpsvc.exe. So we see a thread
    change, and this usually indicates that a different logon process has
    begun. Could you try to map this log entries to events in the group
    policy event log?
    But to be honest: No, I've never seen such a behavior in gpsvc.log :(
    I'm almost sure that a service is responsible, but how to identify it -
    I don't know. There's no auditing for system time changes, AFAIK.
    Greetings/Grüße,
    Martin
    Mal ein
    gutes Buch über GPOs lesen?
    Good or bad GPOs? - my blog…
    And if IT bothers me -
    coke bottle design refreshment (-:

Maybe you are looking for