Read sql error log, skip lines that are in a exception list

Could someone help, I am creating a nice powershell script to read a sql server log file but to skip lines that are normal in a sql server. the "normal lines are held in a SQL table.
To expand.
I run a query to get the list of exception lines using invoke-sqlcmd  this creates $TextEXP
this will contain things like "Microsoft Corporation", "All rights reserved", "Starting up Database"
I then connect to a sql server using SMO and want to read in the error log where the text is not matched the values in $textExpI want to avoid reading extra data and process it. I have a work round but its not a nice clean as its hardcoded the match.
$ENV =$srv.ReadErrorLog()
|? {  $_.text
-notmatch'This
is an informational message only'-and$_.text
-notmatch'No
user action is required'-and$_.text
-notmatch'found
0 errors'-and$_.text
-notmatch'Microsoft
Corporation.'-and$_.text
-notmatch'All
rights reserved.'-and$_.text
-notmatch'Server
process ID is'-and$_.text
-notmatch'System
Manufacturer: '-and$_.text
-notmatch'Starting
up database'-and$_.text
-notmatch'Using
''dbghelp.dll'' version'-and$_.text
-notmatch'Authentication
mode is'-and$_.text
-notmatch'Logging
SQL Server messages in file '-and$_.text
-notmatch'Setting
database option'-and$_.text
-notmatch'The
error log has been reinitialized. See the previous log for older entries'-and$_.text
-notmatch'Server
is listening on '-and$_.text
-notmatch'Registry
startup parameters:'-and$_.text
-notmatch'Clearing
tempdb database'-and$_.text
-notmatch'Service
Broker manager has started'-and$_.text
-notmatch'The
Service Broker protocol transport is disabled or not configured'`
-and$_.ProcessInfo
-notmatch"Logon"-and$_.logdate
-ge$Sdate}

So after some looking about on the web I found that you can use the | in a string
the following will give an idea of how to use this (this is not a clean bit of code but will give you a starting point)
$TextEXP  this is a data table from sql server with the list of values I want to skip
The field name (col name) is extext
Set the string to be empty
$exclusions = ""
#Create a string with the values in $TextExp
Foreach($value in $TextExp){
$exclusions = $exclusions + "$($value.extext)|"
#remove the last pipe from the string
$exclusions = $exclusions.substring(0,$exclusions.length-1)
##This will create a long string value|value|value###
$err = $srv.readerrorLog() | ?{$_.text - notmatch $exclusions}
###end
May need bit of a clean up and may be a better way but seems to do what I need for now.
Thanks all for the help

Similar Messages

  • OWB mappings to skip rows that are in error and continue processing

    OWB mappings to skip rows that are in error and continue processing.
    1) Enter a record into an error log
    2) Skip rows that are in error
    3) and continue processing
    Type of information could be needed in the error log:
    SY_LOG_ERROR_KEY
    ERROR_TIMESTAMP
    MAP_NAME
    SOURCE_RECORD
    ERROR_CODE
    ERROR_MESSAGE
    ERROR_NOTES
    Example:
    If the source table has five records, in that 3 records has some error.
    When I run the OWB mapping to load the source data to target table, OWB should skip the 3 record and load all the remaining record. This is our requirement.
    Another think I want to store the error record details in a error log table.
    Can u plz tell me whether it is possible in OWB. If not means please give some suggestion to do this.

    Hi,
    thanks for ur help, As is OWB version is 10.2.0 so for set based it is not working. with your idea i create a POST PROCESSING MAPPING. it is now working fine.
    Step 1:
    Create a table MAP_ERROR_LOG.
    Script:
    CREATE TABLE MAP_ERROR_LOG
    ERROR_SEQ NUMBER,
    MAPPING_NAME VARCHAR2(32 BYTE),
    TARGET_TABLE VARCHAR2(35 BYTE),
    TARGET_COLUMN VARCHAR2(35 BYTE),
    TARGET_VALUE VARCHAR2(100 BYTE),
    PRIMARY_TABLE VARCHAR2(100 BYTE),
    ERROR_ROWKEY NUMBER,
    ERROR_CODE VARCHAR2(12 BYTE),
    ERROR_MESSAGE VARCHAR2(2000 BYTE),
    ERROR_TIMESTAMP DATE
    TABLESPACE ODS_D1_AA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 80K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    Step 2:
    Create a sequence MAP_ERROR_LOG_SEQ
    CREATE SEQUENCE MAP_ERROR_LOG_SEQ START WITH 1 INCREMENT BY 1
    Step 3:
    Create a procedure PROC_MAP_ERROR_LOG through OWB.
    In this i have used 3 cursor, first cursor is used to check the count of error messages for the corresponding table(WB_RT_ERROR_SOURCES).
    The second cursor is used to get the oracle error and the primary key values.
    The third cursor is used for get the ORACLE DBA errors such as "UNABLE TO EXTEND THE TABLESPACE" for this type errors.
    CREATE OR REPLACE PROCEDURE PROC_MAP_ERROR_LOG(MAP_ID VARCHAR2) IS
    --initialize variables here
    CURSOR C1 IS
    SELECT COUNT(RTA_IID) FROM OWBREPO.WB_RT_ERROR_SOURCES
    WHERE RTA_IID =( SELECT MAX(RTA_IID) FROM OWBREPO.WB_RT_AUDIT WHERE RTA_PRIMARY_TARGET ='"'||MAP_ID||'"');
    V_COUNT NUMBER;
    CURSOR C2 IS
    SELECT A.RTE_ROWKEY ERR_ROWKEY,SUBSTR(A.RTE_SQLERRM,1,INSTR(A.RTE_SQLERRM,':')-1) ERROR_CODE,
    SUBSTR(A.RTE_SQLERRM,INSTR(A.RTE_SQLERRM,':')+1) ERROR_MESSAGE,
    C.RTA_LOB_NAME MAPPING_NAME,SUBSTR(B.RTS_SOURCE_COLUMN,(INSTR(B.RTS_SOURCE_COLUMN,'.')+1)) TARGET_COLUMN,
    B.RTS_VALUE TARGET_VALUE,C.RTA_PRIMARY_SOURCE PRIMARY_SOURCE,C.RTA_PRIMARY_TARGET TARGET_TABLE,
    C.RTA_DATE ERROR_TIMESTAMP
    FROM OWBREPO.WB_RT_ERRORS A,OWBREPO.WB_RT_ERROR_SOURCES B, OWBREPO.WB_RT_AUDIT C
    WHERE C.RTA_IID = A.RTA_IID
    AND C.RTA_IID = B.RTA_IID
    AND A.RTA_IID = B.RTA_IID
    AND A.RTE_ROWKEY =B.RTE_ROWKEY
    --AND RTS_SEQ =1  
    AND B.RTS_SEQ IN (SELECT POSITION FROM ALL_CONS_COLUMNS A,ALL_CONSTRAINTS B
    WHERE A.TABLE_NAME = B.TABLE_NAME
    AND A.CONSTRAINT_NAME = B.CONSTRAINT_NAME
    AND A.TABLE_NAME =MAP_ID
    AND CONSTRAINT_TYPE ='P')
    AND A.RTA_IID =(
    SELECT MAX(RTA_IID) FROM OWBREPO.WB_RT_AUDIT WHERE RTA_PRIMARY_TARGET ='"'||MAP_ID||'"');
    CURSOR C3 IS
    SELECT A.RTE_ROWKEY ERR_ROWKEY,SUBSTR(A.RTE_SQLERRM,1,INSTR(A.RTE_SQLERRM,':')-1) ERROR_CODE,
    SUBSTR(A.RTE_SQLERRM,INSTR(A.RTE_SQLERRM,':')+1) ERROR_MESSAGE,
    C.RTA_LOB_NAME MAPPING_NAME,SUBSTR(B.RTS_SOURCE_COLUMN,(INSTR(B.RTS_SOURCE_COLUMN,'.')+1)) TARGET_COLUMN,
    B.RTS_VALUE TARGET_VALUE,C.RTA_PRIMARY_SOURCE PRIMARY_SOURCE,C.RTA_PRIMARY_TARGET TARGET_TABLE,
    C.RTA_DATE ERROR_TIMESTAMP
    FROM OWBREPO.WB_RT_ERRORS A,OWBREPO.WB_RT_ERROR_SOURCES B, OWBREPO.WB_RT_AUDIT C
    WHERE C.RTA_IID = A.RTA_IID
    AND A.RTA_IID = B.RTA_IID (+)
    AND A.RTE_ROWKEY =B.RTE_ROWKEY (+)
    AND A.RTA_IID =(
    SELECT MAX(RTA_IID) FROM OWBREPO.WB_RT_AUDIT WHERE RTA_PRIMARY_TARGET ='"'||MAP_ID||'"');
    -- main body
    BEGIN
    DELETE ED_ODS.MAP_ERROR_LOG WHERE TARGET_TABLE ='"'||MAP_ID||'"';
    COMMIT;
    OPEN C1;
    FETCH C1 INTO V_COUNT;
    IF V_COUNT >0 THEN
    FOR REC IN C2
    LOOP
    INSERT INTO ED_ODS.MAP_ERROR_LOG
    (Error_seq ,
    Mapping_name,
    Target_table,
    Target_column ,
    Target_value ,
    Primary_table ,
    Error_rowkey ,
    Error_code ,
    Error_message ,
    Error_timestamp)
    VALUES(
    ED_ODS.MAP_ERROR_LOG_SEQ.NEXTVAL,
    REC.MAPPING_NAME,
    REC.TARGET_TABLE,
    REC.TARGET_COLUMN,
    REC.TARGET_VALUE,
    REC.PRIMARY_SOURCE,
    REC.ERR_ROWKEY,
    REC.ERROR_CODE,
    REC.ERROR_MESSAGE,
    REC.ERROR_TIMESTAMP);
    END LOOP;
    ELSE
    FOR REC IN C3
    LOOP
    INSERT INTO ED_ODS.MAP_ERROR_LOG
    (Error_seq ,
    Mapping_name,
    Target_table,
    Target_column ,
    Target_value ,
    Primary_table ,
    Error_rowkey ,
    Error_code ,
    Error_message ,
    Error_timestamp)
    VALUES(
    ED_ODS.MAP_ERROR_LOG_SEQ.NEXTVAL,
    REC.MAPPING_NAME,
    REC.TARGET_TABLE,
    REC.TARGET_COLUMN,
    REC.TARGET_VALUE,
    REC.PRIMARY_SOURCE,
    REC.ERR_ROWKEY,
    REC.ERROR_CODE,
    REC.ERROR_MESSAGE,
    REC.ERROR_TIMESTAMP);
    END LOOP;
    END IF;
    CLOSE C1;
    COMMIT;
    -- NULL; -- allow compilation
    EXCEPTION
    WHEN OTHERS THEN
    NULL; -- enter any exception code here
    END;

  • Need a VB-Script that read a txt-file and only the lines that are new since last time

    Hi,
    I need help to write a VB script that read all new lines since the last time.
    For example:  The script reads the textfile at specific time, then 10 minutes later the script read the file again, and it should now only read the lines that are new since last time. Anyone that has such a script in your scriptingbox?
    cheers!
    DocHo
    Doc

    Based on the excellent idea by Pegasus, where is a VBScript solution. I use a separate file to save the last line count read from the file, then each time the file is read I update the line count. Only lines after the last count are output by the program:
    Option Explicit
    Dim strFile, objFSO, objFile, strCountFile, objCountFile, strLine, lngCount, lngLine
    Const ForReading = 1
    Const ForWriting = 2
    Const OpenAsASCII = 0
    Const CreateIfNotExist = True
    ' Specify input file to be read.
    strFile = "c:\Scripts\Example.log"
    ' Specify file with most recent line count.
    strCountFile = "c:\Scripts\Count.txt"
    ' Open the input file for reading.
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objFile = objFSO.OpenTextFile(strFile, ForReading)
    ' Check if the line count file exists.
    If (objFSO.FileExists(strCountFile) = False) Then
        ' Initial count is 0, so all lines are read.
        lngCount = 0
    Else
        ' Open the line count file.
        Set objCountFile = objFSO.OpenTextFile(strCountFile, ForReading)
        ' Read the most recent line count.
        Do Until objCountFile.AtEndOfStream
            lngCount = CLng(objCountFile.ReadLine)
        Loop
    End If
    ' Read the input file.
    lngLine = 0
    Do Until objFile.AtEndOfStream
        ' Count lines.
        lngLine = lngLine + 1
        strLine = objFile.ReadLine
        If (lngLine >= lngCount) Then
            ' Output the line.
            Wscript.Echo strLine
        End If
    Loop
    ' Close all files.
    objFile.Close
    If (lngCount > 0) Then
        objCountFile.Close
    End If
    ' Ignore last line of the file if it is blank.
    If (strLine = "") Then
        lngLine = lngLine - 1
    End If
    ' Save the new line count.
    Set objCountFile = objFSO.OpenTextFile(strCountFile, _
        ForWriting, CreateIfNotExist, OpenAsASCII)
    objCountFile.WriteLine CStr(lngLine + 1)
    objCountFile.Close
    Richard Mueller - MVP Directory Services

  • Need help forming randomly colored lines, that are equidistant(ex included)

    My assignment: The
    top-right cell requires horizontal lines that are equidistant in the cell. Each line is 10 pixels apart. Additionally, the lines need to be colored randomly in any possible red, green and blue range.
    example: http://i68.photobucket.com/albums/i35/stxda/example.jpg
    (example of what I need to do)
    what I have now: http://i68.photobucket.com/albums/i35/stxda/current.jpg
    I have all the lines coded for the top right cell, but I do not know how to get the colors random. I only know how to set all the lines to one single color.
    Below is my coding:
    (please try this out and help me code it)
    my AIM screen name is sTxDa if there are any questions/comments
    import java.awt.*;
    import java.applet.*;
    import java.util.*;
    public class Lab06G90 extends Applet
    public void paint(Graphics g)
    // BELOW is for the top left cell and box (which is int a and the box's frame)
    int width = 800;
    int height = 600;
    g.drawRect(10,10,width,height);
    g.drawLine(410,10,410,610);
    g.drawLine(10,310,810,310);
    for (int a = 20; a <= 400; a += 10)
    g.drawLine(a,20,a,290);
    // BELOW is for the top right cell, which is int b. so far
    // i've only done the lines, and not yet the random colors
    for (int b = 10; b <= 290; b += 10)
    g.drawLine(420,b,800,b);
    }

    but I do not know how to get the colors randomUse the Random class.

  • How to log all messages that are in JtextArea

    Hi all
    how would i log all message that are in the JTextArea????
    i know of java.util.logging but cant find any usefull tutorials on them.......can someone show me the way to go!
    Thanks
    Dilip

    Yeah dude, I could. But what would that accomplish? Oh sure, that may be some cultural pressure; you know, help out a Hindu-bhai kinda thing, but nah... My giving you the answer won't serve to help you in the long run.
    Ask yourself a couple of questions. Shall I log the information simultaneously (to the JTextArea and the file) or shall I write all the information to the text area first and then to the log file? Is the information in the log fle going to be different than that in the JTextArea because, for example, it is needed for audit purposes?
    I hope I stimulated you think more about the requirements and possible solutions.

  • How can I read and write text in rings that are inside an array?

    Hello All!!!
    How can I read and write text in rings that are inside an array?
    Regards and thanks in advance.

    Use a Property Node linked to the Ring inside the array.
    Of course, all elements in the array will have the same text values.
    B-)
    Message Edited by LabViewGuruWannabe on 12-13-2007 09:47 AM
    Message Edited by LabViewGuruWannabe on 12-13-2007 09:48 AM
    Message Edited by LabViewGuruWannabe on 12-13-2007 09:49 AM
    Attachments:
    Strings-BD.PNG ‏17 KB
    Strings-FP1.PNG ‏23 KB

  • How to Open Or read SQL Server log file .ldf

    Hi all,
    How to Open Or read SQL Server log file .ldf
    When ever we create database from sql server, it's create two file. (1) .mdf (2) .ldf.
    I want to see what's available inside the .ldf file.
    Thanks,
    Ashok

    I am not too sure but may be the below two undocumented commands might yield the desired result.
    DBCC Log
    Fn_dblog function
    Refer these links for more info,
    http://www.mssqlcity.com/Articles/Undoc/SQL2000UndocDBCC.htm
    http://blogs.sqlserver.org.au/blogs/greg_linwood/archive/2004/11/27/37.aspx
    http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1173464,00.html
    Some 3rd party tools like Log Explorer can do the job for you.
    http://www.lumigent.com/products/le_sql.html
    - Deepak

  • How to draw vertical lines that are visible in preview mode?

    Hi all,
    I need to draw vertical lines on a document. The lines must be same as we draw using line tool.
    I could draw the line using CreateLineSpline() method of IPathUtils.
    The problem is that these lines are not visible in preview mode. Please tell how can we make lines that are visible in preview mode.
    Please help, I'm running out of time.

    CodeSnippetRunner has the answer:
    Utils<IPathUtils>()->CreateLineSpline

  • I want to cancel my account. I purchased a product that had errors in it. Within minutes I tried to cancel the purchase, and Acrobat will not let me. Furthermore, there are security errors in my account that are unacceptable. Please cancel my account, my

    I want to cancel my account. I purchased a product that had errors in it. Within minutes I tried to cancel the purchase, and Acrobat will not let me. Furthermore, there are security errors in my account that are unacceptable. Please cancel my account, my payments. I have called my bank and reported this as fraud.

    Kmrnyu, the order placed by you is still under transaction,  the order stands canceled.
    As soon as the order is complete I shall get it canceled & refunded.
    Regarding the account, do you want it to cancel the account? Please confirm.
    Regards
    Rajshree

  • I paid for songs that are missing from my list where are they?

    i paid for songs that are missing from my list where are they?

    Correct.
    Audiobooks have never been available for redownlaod and have never been listed among the content that can be redownloaded.
    As always, it is your responsibility to back up your content.

  • Could not open (SQL) error log on passive cluster node

    Hi. We have SCCM 2012 SP1 installation using clustered SQL instance running on 2-node SQL Server 2012 cluster.
    On the passive SQL node that's not running the SCCM SQL instance, there are repeated errors in the eventlog with ID 17058, source MSSQL$SCCM: "initerrlog: Could not open error log file 'K:\MSSQL11.SCCM\MSSQL\Log\ERRORLOG'. Operating system error = 3(The
    system cannot find the path specified.)."
    While searching I've found out this is caused by the "SMS_SITE_SQL_BACKUP_<siteservername>" service that is registered on both SQL nodes and has startup type of Automatic and therefore is running on both nodes simultaneously.
    In the smssqlbackup.log file on the passive node, there are errors "SMS_SITE_SQL_BACKUPFailed to start SQL Server.Error code = 0x0.", which make sense, since the SQL instance is already running on the second node. Therefore it fails.
    This seems like a very bad design bug, can it be prevented/fixed? I could configure our monitoring system to ignore this error, but I would rather not...
    Why is that service running on both (all) SQL cluster nodes simultaneously? Why isn't it made part of the cluster resource group or something like that?

    Try on the passive node remove: SQLServer Name\InstanceName
    From the registry:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\Components\SMS_SITE_SQL_BACKUP_<SiteServer>\SQL
    Server Instance.

  • Cancel Sales Order lines that are picked

    Hi
    1. I'm trying to cancel sales order lines through process order api that are picked and delivery status is Staged/Pick Confirmed. The error is
    You are not allowed to cancel Order Line because:
    Line has been pick confirmed/staged.
    I'm unable to perform by below means
    1.There is a processing constraint on the field SCHEDULE_ARRIVAL_DATE.
    Delete the processing constraint and retry the cancel line process - Processing constraint form the fields are protected against update
    2.Navigate to the shipping transaction form and query the order. Select the line and enter 0 at shipped quantity.Save the record.Ship confirm the line, this will cause the line to be backordered.Query the order line in the order entry form and cancel this. - Shipping transactions form the fields are protected against update
    2. Is there a way to cancel Internal Sales Order(ISO) lines of one OU and the corresponding internal requisition is another OU
    Thanks
    kumar

    If you are in R12, there are some enhancements from Oracle that allows updating/cancelling certain Internal requistion fields and Internal orders automatically. You may need to disable few processing constraints too.
    As of Now Oracle support change to following attribute at OM side
    1 Order Quantity
    2 Request Date
    3 Schedule date
    4 Arrival date
    Similarly if we make changes in following fields in Approved IR
    1 Quantity
    2 Need by Date
    These changes will got reflected in ISO
    Plus cancel the IR line or ISO line, the other one gets cancelled automaically.
    To cancel the picked line, first undo the pick confirmation process by back ordering. or unassign the delivery details from the delivery (if created already) and cancel the delivery.In either case, you need to manually trasnfer the qty from staging area to original locations. Oracle doesn't automatically move the qty back, (undo move order transaction).
    Ganesan.

  • Data Warehouse SQL error log shows failed login

    In addition to the above title, on our management servers (x2 Win 2012 R2 - SCOM 2012 R2), I am seeing the event ID 31551 stating:
    Failed to store data in the Data Warehouse. The operation will be retired. Exception 'SqlException':Login failed for user 'xx'.
    One or more workflows were affected by this.
    Workflow name: Microsoft.SystemCenter.DataWarehouse.CollectEntityHealthStateChange
    Instance name: management server
    Instance ID: {xxxxxxxxxxxxxxxxx}
    Management Group: XXXX
    I've logged onto Data Warehouse server using the account referenced in the error message, loaded SQL Management Studio (2012 Std), and logged in and am able to see, view tables within the OperationsManagerDW database. So I'm trying to establish what's going
    on! If I can access the DW DB using the account, why am I getting these errors?

    Hi
    Unfortunately, this hasn't resolved the issue. I've ran the query DBCC CHECKIDENT ("EventChannel"); and have got the following response back: 
    Checking identity information: current identity value '1', current column value '1'.
    DBCC execution completed. If DBCC printed error messages, contact your system administrator.
    I've revisited the run as account for 'Data Warehouse SQL Account' - this is a domain account. I've checked the Data Warehouse DB and can confirm that it's got write access over the database. I'm using the same account as the 'Data Warehouse Action Account'.
    However, the SQL log on the data warehouse server is saying failed login, see below:
    Login failed for user 'sv-scom-dw'. Reason: Could not find a login matching the name provided. [CLIENT: Management server 1 IP]
    I've checked the 'Management Group' table and can confirm the WriterLoginName is DOMAIN\sv-scom-dw
    However, the SQL error looks like it's looking for a local SQL login. The database is set to Mixed mode authentication.
    Any ideas?

  • Error Log showing Line Items missing in APP Cheque Printing

    Hi
    Am working on APP Cheque Printing... i hav run here the F110 Steps ..Spool is also generated ...everything is cuming correct...but in spool one error log is also generated as below :
    Error log
    F0251                    In form YCHEQUE_NEW1 / window MAIN , the element 525 (Line items) is missing
    F0253                    Output of the relevant forms is defective
    YCHEQUE_NEW1  -> The Cheque Print Script  . In my Cheque Output i dont want to display the Line Items ..That's why in Script i hav deleted all the coding under the element 525 which displays Line Items data....
    then am getting this error log ..
    Please let me know how to solve  this problem..
    Thanks in Advance
    SATYA

    Hi,
    Just comment the code which is present in that text element or remove the code.
    Do not comment text element(i.e Empty text element).
    /E 525     "Do not remove or comment this line
    *Comment all code
    Edited by: Anil Mane on Sep 12, 2008 8:41 AM

  • SQL errors log

    Hello!
    Where can I find SQL expressions errors log used in custom applications?
    P.S. Oracle 9.2.0.1
    Message was edited by:
    Oleg Derevyanko

    By default, DML errors are not logged anywhere.
    You can turn on DML error log using DBMS_ERRLOG, see sample in this link,
    http://www.oracle-base.com/articles/10g/DmlErrorLogging_10gR2.php

Maybe you are looking for

  • Megastat compatibility with Mac excel 2008

    anyone have any suggestions on how to download Megastat add-on onto macintosh microsoft excel program? Megastat works on windows based computer, but when I try to download to mac, I get the error message that "basic add-ons are not supported". Any ad

  • Set Accordion Default Panel in URL

    I am making a function call like this window.open('events.php?Accordion1.defaultPanel=3', '_parent') My goal is for the the user to click a button, go to the events page (events.php) and automatically open a specific panel in the accordion widget.. I

  • Does Endeca Server(Mdex) in latitude support East Asian languages?

    Hi, we're on latitude 2.2.2 the Mdex engine in Latitude is different from the one in Infront, without Basic RLP to do the indexing and word segmentation for East Asian Language. In this way latitude cannot support Chinese or Japanese keyword search.

  • IPad's screen turned pink and flashing

    All of a sudden, my iPad's screen turned pink. Tried resetting but did not help. The screen is now red/pink-ish and flashing. I, of course, did not drop it or anything like that. Is this a hardware problem? is it fixable by a user?

  • App Store updates are frozen and will not complete the installation.

    I've tried resetting... tried signing out of itunes and signing back in. I have all of these apps and games that want me to update... i click on them... they say installing... but the status bar does not move.