Problems in indexing MS word document. Please help!

Hi
I'm using oracle 8.1.6 on solaris 5.7
I stored a MS word document in a table as a internal blob.
The word document contains one line:
"This is test word document." Then I indexed it with inso_filter preference. I created a log file during indexing. The log file showed thatb there was no document indexed. Here was what I did:
===============================================================
--Create preference
exec CTX_DDL.drop_preference('MY_LEXER');
exec CTX_DDL.create_preference('MY_LEXER','BASIC_LEXER');
exec CTX_DDL.set_attribute('MY_LEXER','MIXED_CASE', 'NO');
exec CTX_DDL.set_attribute('MY_LEXER','INDEX_THEMES','NO');
exec CTX_DDL.set_attribute('MY_LEXER','INDEX_TEXT', 'YES');
exec ctx_ddl.Drop_Preference ('MY_FILTER');
exec ctx_ddl.Create_Preference ('MY_FILTER','INSO_FILTER');
exec ctx_ddl.drop_section_group ('MY_SECTION');
exec ctx_ddl.create_section_group ('MY_SECTION','NULL_SECTION_GROUP');
--Create table
drop table test;
create table test
(id number primary key,
text blob
--Initialize blob column with an empty blob
insert into test (id,text) values (1,empty_blob());
--Create an directory in which a word file (test.doc) exsits
create directory filedir as '/home/mydir';
--Insert the word file
DECLARE
lobd BLOB;
fils BFILE;
BEGIN
fils := BFILENAME('FILEDIR','test.doc');
SELECT text INTO lobd FROM test WHERE id = 1 FOR UPDATE;
dbms_lob.fileopen(fils, dbms_lob.file_readonly);
dbms_lob.loadfromfile(lobd, fils, dbms_lob.getlength(fils));
COMMIT;
dbms_lob.fileclose(fils);
END;
---Start logging
exec ctx_output.start_log('index.log');
---Create index with INSO_FILTER defined in preference
create index test_index on TEST(text) indextype is ctxsys.context
parameters ('lexer MY_LEXER filter MY_FILTER section group MY_SECTION memory 50M');
---Stop loggin
exec ctx_output.end_log;
=============================================================
The indes was created. And I open the index.log file. It is:
==============================================================
Oracle interMedia Text: Release 8.1.6.0.0 - Production on Tue Feb 19 16:22:50 2002
(c) Copyright 1999 Oracle Corporation. All rights reserved.
16:22:50 02/19/02 begin logging
16:23:48 02/19/02 populate index: CALLOB.TEST_INDEX
16:23:48 02/19/02 Begin document indexing
16:23:49 02/19/02 End of document indexing. 0 documents indexed.
16:24:06 02/19/02 log
16:24:06 02/19/02 logging halted
===============================================================
I did the query:
select token_text from dr$test_index$i;
no rows returned.
Could anyone tell me why this happened? An advices are appreciated.
Thansk,
George

Hi, Omar:
I tried use SQL*Loader to load the word document. Part of the loader logging reads as following:
Table TEST:
1 Row successfully loaded.
0 Rows not loaded due to data errors.
0 Rows not loaded because all WHEN clauses were failed.
0 Rows not loaded because all fields were null.
Space allocated for bind array: 6720 bytes(64 rows)
Space allocated for memory besides bind array: 0 bytes
Total logical records skipped: 0
Total logical records read: 1
Total logical records rejected: 0
Total logical records discarded: 0
================================================================
It seems that the file was sucessfully loaded into the database. Then I created index using the procedure I posted on this thread. I checked the table ctx_user_index_errors.
select * from ctx_user_index_errors;
the returns are:
ERR_INDEX_NAME ERR_TIMES
TEST_INDEX 20-FEB-02
ERR_TEXTKEY
AAAGtpABLAAAAAXAAA
ERR_TEXT
----------------------------------------------------------------DRG-11207: user filter command exited with status 137
What does this return tell?
Thanks.

Similar Messages

  • ORDDoc - Loading Word Document - Please Help

    Hi
    I am trying to upload the word document (doc format) to the table i have in oracle database. The table has the column of type OrdDoc.
    I am using Intermedia Java API to load the word file from my local system to the database. The upload is happening successfully but when i try to retreive the document i see that its empty and even the properties (mimetype, format) of the document are null.
    I would appreciate if anyone of you could please tell me what am i doing wrong and how can i upload the file correctly.
    Below is more information about table structure and also the java code.
    Table Structure
    TableName: DocTable
    ColumnName Type
    DocId NUMBER
    DocName VarChar2(40)
    DOCUMENT ORDSYS.ORDDoc
    Below are some lines from my code
    String insertDocRecord_Qry = "Insert into DocTable (docId,docName,document) values (1,"FirstDoc ",ORDSYS.ORDDoc.init())";
    PreparedStatement insertStmt = conn.prepareStatement(insertDocRecord_Qry);
    insertStmt.execute();
    String selectDocForUpdate_Qry = "select document from DocTable where docId = 1 for update";
    OracleResultSet rset = (OracleResultSet)stmt.executeQuery(selectDocForUpdate_Qry);
    rset.next();
    OrdDoc docProxy = (OrdDoc)rset.getORAData("document", OrdDoc.getORADataFactory());
    rset.close();
    docProxy.loadDataFromFile("C:/Files/MyFirstDoc.doc");
    String updateDoc_Qry = "update DocTable set document=? where docId=1";
    opstmt = (OraclePreparedStatement)conn.prepareStatement(updateDoc_Qry);
    opstmt.setORAData(1, docProxy);
    opstmt.execute();
    opstmt.close();
    PLEASE HELP ME FIGURE OUT WHAT AM I DOING WRONG IN ABOVE CODE.
    ABOVE Code doesnt throw an error when executed but when i try to retireve the properties of the document that gets loaded in to the DocTable all i see is null values and 0 content length.
    Thanks for your help in advance
    -L

    Hi Mavris
    Thanks for the reply.
    In my example the reason i did not invoke setProperties() method is because the setProperties method exposed in OrdDoc class is not same as the setProperties method in OrdAudio or OrdImage.
    In OrdDoc class setProperties(byte[][] ctx,boolean setComments) takes two arguments where as setProperties() in OrdAudio and OrdImage does not take any arguments.
    byte[ ] ctx[ ] = new byte [4000][1];
    When i tried to use setProperties(ctx,true) in OrdDoc i was getting an error.
    Can you please tell if this is the correct way to invoke setProperties on OrdDoc in Java Program?
    Regarding the list of format that Intermedia Understands, the Appendices A, B and C in Intermedia Refererence talks only about Audio, Image and Video. It doesnt have any details about Document (pdf, txt, doc) files. Can you please tell where can i look for the list of formats that intermedia understands for OrdDoc?
    Since the dataType is OrdDoc in my table. How do i check the LOB length?
    I tried it using Intermedia Java API by calling getContentLength method after retreiving the OrdDoc column from resultset but it has a value of '0'. So am not sure why the document is not getting loaded.
    Please help me resolve this issue.
    Thanks

  • Hi, I am trying to convert my resume on pages to a word document.  When i export the file to to make it a word document ie(resume.doc) it messes up my whole resume on websites and pulls up a bunch of random words. Please help!

    Hi, I am trying to convert my resume on pages to a word document.  When i export the file to to make it a word document ie(resume.doc) it messes up my whole resume on websites and pulls up a bunch of random words. Please help!

    What exactly is the problem?
    Your description is so muddled I am having trouble working it out.
    How does your exported .doc file mess up websites? In fact what does it have to do with websites?
    Where, how and what are the random words turning up?
    Peter

  • How to view corrupted word files, please help?

    Can't view doc corrupted file .How to recover unsaved documents WORD? how to view corrupted word files, please help

    It could be Word or even Windows that is having the problem. Before you start trying to restore a backup or repair a file, try opening other documents.
    Try opening your "corrupt" document from another computer. Also you can try to make a copy of corrupted files. (It could work) : http://www.filerepairforum.com/forum/microsoft/microsoft-aa/word/968-i-would-be-grateful-for-any-help-to-repair-or-the-procedures-word-files
    But if nothing helps, you can try to recover it by using DOCX Viewer Tool Download free demo versions of this software from website: http://www.docx.viewertool.com/ It’s
    gonna help.

  • Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Try this -> http://support.apple.com/kb/TA38632?viewlocale=en_US

  • I am trying to split a document please help?

    I am trying to split a document please help?

    Easy with Acrobat, but not possible with Adobe Reader.

  • I do not use or have not signed up for a MobileMe Account but I am getting duplicates in my iCal for some reason.  All discussions I read are pointing to the MobileMe being the problem but it is not.  Please help me.  There must be another reason.

    I do not use or have not signed up for a MobileMe Account but I am getting duplicates in my iCal for some reason.  All discussions I read are pointing to the MobileMe being the problem but it is not.  Please help me.  There must be another reason all my entries appear twice. 

    If you wish to submit comments to Apple, the best way is to use their feedback pages.
    http://www.apple.com/feedback/itunesapp.html
    It's not likely that anyone from Apple will see your comments here among the thousands of other posts.
    Regards.

  • How to create index in word document?

    Hello,
    Is it possible to create a index in word document from abap code (ole)?
    Thank you for response..
    Alfonso

    1.Goto the transparent table  KNA1
    2. select the button Indexes (which is next to the techincal settings button)
    3.list of alredy existing indexes are displayed
    4. in the dialog displayed select the icon create.
    5. specify the name for the index to be created ( should start with Z)
    6. screen for specify the index fields will appear, specify the details based on your requirement.
    Note:
    1.creating an index will created a sorted  copy of the DB table with data  with limited fields
    2. Try using already created indexes , only if necessary create new index
    3. Here table KNA1 is used as an example

  • While opening pdf files the menu bar, navigation bar  cracks unobviously and also close and minimise buttons  goes hidden..Facing the problem for last one month. Please help.

    while opening pdf files the menu bar, navigation bar  cracks unobviously and also close and minimise buttons  goes hidden..Facing the problem for last one month. Please help.

    The latest Kaspersky software version is 15.0.1.415 or 15.0.1.415ab.

  • My iphone 4s wifi and bluetooth problem after updating ios 8? please help me...

    my iphone 4s wifi and bluetooth problem after updating ios 8? please help me...

    Hey there Abdulrahim0259,
    I would recommend that you use the following 2 article to help troubleshoot the Wi-Fi and bluetooth issues you are seeing, respectively:
    iOS: Troubleshooting Wi-Fi networks and connections - Apple Support
    And:
    iOS: Troubleshooting Bluetooth connections - Apple Support
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • The font for my yahoo log in is very very small anbd my email fonts are far too big and the words overlap, please help to correct this problem

    The font for sign into my yahoo mail is so small that I am unable to make out my ID and password and when I do get into my mailbox, the fonts are far too big and the words overlap. Tried going into tools /options to make changes but not successful, please help.thanks

    Reset the page zoom on pages that cause problems, make sure that the window is not maximized:
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    If you have increased the minimum font size then try the default setting "none" as a high value can cause such issues.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced > [X] "Allow pages to choose their own fonts, instead of my selections above"
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Problem in Billing Document-Please help!

    Dear Experts,
    I have CIN configured in my pricing procedure and I am doing the complete sales process Order>>Delivery>>Billing
    At the time when I am saving my billing document system is showing a pop up message
    u201CPrint excise invoice in series grp XYZ using J1IP for billing Document 99988811u201D
    But when I am trying to display the billing document by using T Code: VF01
    The system is displaying u201CBilling Document 99988811 does not existu201D.
    Please help me!
    Thanks
    Ashu

    Hai Ashu,
    Go to in SAP inbox
    Check any automated mail came to id (used to create VF01) - Message sub will be UPDATE WAS TERMINATED
    and shows error
    Error Info...   8I 336: Error in allocating Excise invoice
    In that case
    1. in T code: SNRO
    Obejct : J_1iexcloc
    for the plant series group
    2. T code : SNRO
    object : J_1iintpr2
    for the plant Excise group
    3. T code : SNUM
    Object : J_liintnum
    Maintain 01 - 2011 - 00001 - 10000000
    And then create VF01 again and check in VF03, even then it says Document does not exist
    ONLY THEN CHECK
    Go to the customer master and check what is the country mentioned in the Customer master for the customer
    If it is other that India this error may come.
    Regards,
    Mani

  • Error while creating an Index in SP14..Please help..  :(

    Hello All,
    Im working on SP14.
    Got an error as below while creating an Index:
    " <b>Index could not be created; creating index failed: general configuration error (Errorcode 2030)"</b>
    Whats wrong..?
    Please help.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu R Hunjan

    Hi Ritu & Subrato,
    I'm affraid Errorcode 2030 is related to TREX user administrative rights in the OS.
    Please take a look at this thread and the suggestions give there to fix your problem:
    Index creation failure and other problems
    Hope this helps,
    Robert

  • Problems with Oracle XE on XP - Please help!

    Hi,
    I have oracle XE installed on my machine and it was working absolutely fine for the last year or so. Today there was an trojan intrusion which caused some issues with my windows xp OS like hiding some files, desktop etc. After everything was cleaned up and things back to normal. I am having issues with XE.
    I can start and stop XE with out any issues and When I use the run sql command line, I can connect using - connect sys/sys as sydba and I can also run a query to see all the users and see the HR user also.
    However, 1. When I connect to my hr user using connect hr/password@xe, it just hangs
    2. I tried the- go to Oracle XE admin page but it just hangs for a long time and returns page cannot be found.
    3. I can tnsping the xe instance.
    Not sure what the issue is? I am not a DBA and don't have much knowledge on this. Is a fresh install the only option? or is there any way to correct this using the sys/sys user?
    I have pasted the listenor.log and listenor.ora details below. I tried a fresh install after removing XE. but the same issue!
    Please help!
    Thanks,
    Nikita
    Here is the output of listner.log
    30-APR-2012 13:18:19 * service_update * xe * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:18:19 * service_update * xe * 0
    30-APR-2012 13:18:22 * service_update * xe * 0
    30-APR-2012 13:18:25 * service_update * xe * 0
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:18:27 * service_died * xe * 12537
    30-APR-2012 13:18:30 * service_register * xe * 0
    30-APR-2012 13:18:30 * service_update * xe * 0
    30-APR-2012 13:18:36 * service_update * xe * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:18:39 * service_update * xe * 0
    30-APR-2012 13:18:42 * service_update * xe * 0
    30-APR-2012 13:18:48 * service_update * xe * 0
    30-APR-2012 13:18:55 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1708)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    30-APR-2012 13:19:39 * service_update * xe * 0
    30-APR-2012 13:19:42 * service_update * xe * 0
    30-APR-2012 13:25:03 * service_update * xe * 0
    30-APR-2012 13:25:05 * service_update * xe * 0
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:25:07 * service_died * xe * 12537
    30-APR-2012 13:26:14 * service_register * xe * 0
    30-APR-2012 13:26:15 * service_update * xe * 0
    30-APR-2012 13:26:20 * service_update * xe * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:26:23 * service_update * xe * 0
    30-APR-2012 13:26:26 * service_update * xe * 0
    30-APR-2012 13:26:29 * service_update * xe * 0
    30-APR-2012 13:26:32 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1992)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    30-APR-2012 13:26:38 * service_update * xe * 0
    Trace information written to C:\oraclexe\app\oracle\product\10.2.0\server\network\trace\listener.trc
    30-APR-2012 13:28:43 * trace * 0
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=1521)))
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    Listener completed notification to CRS on stop
    30-APR-2012 13:31:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=nikita))(COMMAND=stop)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * stop * 0
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production on 30-APR-2012 13:31:06
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\listener.ora
    Log messages written to C:\oraclexe\app\oracle\product\10.2.0\server\network\log\listener.log
    Trace information written to C:\oraclexe\app\oracle\product\10.2.0\server\network\trace\listener.trc
    Trace level is currently 0
    Started with pid=5236
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    30-APR-2012 13:31:07 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=nikita))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    30-APR-2012 13:32:03 * service_register * xe * 0
    30-APR-2012 13:32:32 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=2040)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    30-APR-2012 13:35:00 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=nikita))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    30-APR-2012 13:42:03 * service_update * xe * 0
    and here is the contects of listenor.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = nikita-lap)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    -------------------------------------------------------------------------------------------------------------------------------------------------------

    Hi Clcarter,
    Apologies, Did not get notifications for this. Just logged in to check on the status and saw your updates. Looks like an issue with the host.Here is the output of the commands
    Ethernet adapter Wireless Network Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Intel(R) Centrino(R) Advanced-N 6200
    AGN
    Physical Address. . . . . . . . . : 00-27-10-D2-D3-4C
    Dhcp Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    IP Address. . . . . . . . . . . . : 191.167.1.7
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 191.167.1.1
    DHCP Server . . . . . . . . . . . : 191.167.1.1
    DNS Servers . . . . . . . . . . . : 191.167.1.1
    Lease Obtained. . . . . . . . . . : Sunday, May 06, 2012 1:14:20 PM
    Lease Expires . . . . . . . . . . : Sunday, May 06, 2012 2:14:20 PM
    Ethernet adapter Local Area Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Description . . . . . . . . . . . : Intel(R) 82577LM Gigabit Network Con
    nection
    Physical Address. . . . . . . . . : 5C-26-0A-16-0E-BE
    C:\Documents and Settings\nikita>netstat -an |findstr LISTEN
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1521 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1860 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1861 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1863 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:2030 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:2301 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:3389 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:8180 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1798 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:5152 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:5354 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:8080 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:27015 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:62514 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:62522 0.0.0.0:0 LISTENING
    TCP 191.167.1.2:80 0.0.0.0:0 LISTENING
    TCP 191.167.1.7:139 0.0.0.0:0 LISTENING
    C:\Documents and Settings\nikita>nslookup 191.167.1.7
    DNS request timed out.
    timeout was 2 seconds.
    *** Can't find server name for address 191.167.1.1: Timed out
    *** Default servers are not available
    Server: UnKnown
    Address: 191.167.1.1
    DNS request timed out.
    timeout was 2 seconds.
    *** Request to UnKnown timed-out
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 30-APR-2012 15:52:42
    Uptime 5 days 21 hr. 47 min. 39 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\l
    og\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=nikita-lap)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=
    HTTP)(Session=RAW))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 3 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 4 handler(s) for this service...
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 4 handler(s) for this service...
    The command completed successfully
    The nslookup throws a DNS error. could that be the problem?
    Thanks,
    Nikita

  • Storage and memory problems on a new mac. PLEASE HELP

    I had a macbook pro 5 years ago and backed everything up to my time machine. i just bought a new mac book pro yesterday. I only wanted to transfer my music and photo files over, and i somehow managed to do that but i think i made a mistake somewhere because now my storage memory is listed at over 400 gb used which i know is impossible. ive saved one document onmy new computer and the entire storage on the time machine is only 173 gb. I have over 300 gb listed as other on the new computer- at one point it was purple and categorized as backup but now it says other- can anyone help me?
    my computer is running super slow now because of it and i just spent over 2000 dollars on this yesterday and I cant find anything in apple support to help me. i already tried looking through all the files and used the omni disk sweeper.
    PLEASE HELP ME!
    i have the mac os x 10.8.2

    I tried running the uninstall blackberry software and it said it coudnt find anything to uninstall and self control doesnt have any uninstalll programs- do you know how else i can delete them or what else i should do? i ran the system again and have pasted the results below in case that would help- i dont really understand it - THANK YOU VERY MUCH for your time and help-i really appreciate it- i just want this fixed
    Hardware Information:
              MacBook Pro - model: MacBookPro9,1
              1 2.3 GHz Intel Core i7 CPU: 4 cores
              4 GB RAM
    System Software:
              OS X 10.8.2 (12C60) - Uptime: 1 day 0:53
    Disk Information:
              APPLE HDD HTS547550A9E384 disk0 : (500.11 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (223.43 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              OPTIARC DVD RW AD-5970H disk4 : (690.9 MB)
                        disk4s1 (disk4s1) <not mounted>: 52.2 MB
                        disk4s2 (disk4s2) <not mounted>: 39.4 MB
                        disk4s3 (disk4s3) <not mounted>: 42.8 MB
                        disk4s4 (disk4s4) <not mounted>: 38.8 MB
                        disk4s5 (disk4s5) <not mounted>: 58.1 MB
                        disk4s6 (disk4s6) <not mounted>: 40.9 MB
                        disk4s7 (disk4s7) <not mounted>: 43.1 MB
                        disk4s8 (disk4s8) <not mounted>: 34.1 MB
                        disk4s9 (disk4s9) <not mounted>: 36.3 MB
                        disk4s10 (disk4s10) <not mounted>: 52.7 MB
                        disk4s11 (disk4s11) <not mounted>: 35.8 MB
                        disk4s12 (disk4s12) <not mounted>: 50.3 MB
                        disk4s13 (disk4s13) <not mounted>: 42.4 MB
                        disk4s14 (disk4s14) <not mounted>: 43.3 MB
                        disk4s15 (disk4s15) <not mounted>: 38.9 MB
                        disk4s16 (disk4s16) <not mounted>: 41.9 MB
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
                     [failed] com.apple.afpstat.plist
                     [failed] com.apple.coreservices.appleid.authentication.plist
                     [failed] com.apple.KerberosHelper.LKDCHelper.plist
                     [failed] com.apple.mrt.uiagent.plist
                     [failed] com.apple.pbs.plist
                     [failed] com.apple.rcd.plist
    Launch Daemons:
                     [loaded] com.adobe.fpsaud.plist
                     [loaded] com.microsoft.office.licensing.helper.plist
                     [loaded] com.rim.BBDaemon.plist
                 [not loaded] org.eyebeam.SelfControl.plist
    Launch Agents:
                     [loaded] com.rim.BBLaunchAgent.plist
    User Launch Agents:
                     [loaded] com.spotify.webhelper.plist
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
    Internet Plug-ins:
              DivXBrowserPlugin.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              OfficeLiveBrowserPlugin.plugin
              Photo Center Plugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes:
              16.3  %          WebProcess
              9.0   %          WindowServer
              3.6   %          coreaudiod
              1.1   %          EtreCheck
              1.0   %          iTunes
              0.9   %          PluginProcess
              0.4   %          BBLaunchAgent
              0.2   %          Safari
              0.2   %          NotificationCenter
              0.1   %          fontd

Maybe you are looking for

  • My ipod touch 1st generation doesnt wanna charge and its not recognized on iTunes!

    Ok so when i try to charge my ipod touch 1st gen 8 gigs wit the usb it doesnt want too even wit the outlet charger it doesnt want too. its not even recognized by itunes either. i have a ipod classic 120 gigs that one does charge by the outlet and usb

  • IMac G5 having hard time

    My dad's iMac G5 20', 2.1 GHZ, 1.5 GB of RAM, 500 GB HD is running Mac OS X 10.4.11, and has all the latest software, but recently, even before the update, it has been running slowly and freezes about every 2 hours. I cleaned up the computer using On

  • Tcode to view the list of all dialog users in SAP XI

    Dear all, What is the Tcode to view the list of all dialog user is SAP XI system. I checked with SU01, it doesn't have a option to display the list of existing users. Any other Tcode for this purpose. Regards, Younus

  • Autotext-Quick Parts

    It seems Microsoft in going backwards as a computer program.  I am beginning to understand why some websites will only allow CHROME as a supported web browser. I am very disconcerted that what was a very simple user-friendly tools has become an oppre

  • How to verify you email to finish apple id

    ,,how to verify your email to finish your apple id