ODI error log

Hi people,

Which table is stored in the ODI error log?

TKS!

ODI journals is picked on the referential work table

SNP_STEP_LOG
SNP_SESS_TXT_LOG
SNP_SESS_TASK_LOG

Thank you
Fati

Tags: Business Intelligence

Similar Questions

  • ODI: Error loading the data of HFM: invalid dimension name

    Hello

    I am fairly new to ODI and I was wondering if any guru could help me overcome a question im facing. I try to load data from a csv file in HFM. I chose the good KM (LKM file SQL and SQL IKM to Hyperion Financial Management Data), with the Sunopsis Memory engine than the staging area.

    To facilitate the file csv has the exact structure as well as the dimensions of HFM applications and has been located in the interface, as shown below:

    Column of the source - target HFM column file

    -Scenario
    Year - year
    Display - display
    Entity - entity
    Value - value
    Account - account
    PIC - PIC
    CUSTOM1 - Custom1
    CUSTOM2 - Custom2
    Custom3 - Custom3
    Custom4 - Custom4
    -Period
    DataValue - Datavalue
    -Description (no column of the source, mapped as ")

    The csv file contains basic members only. I set the error log file path, and when running the interface I get an error. When I open the error log, I see the following messages:

    Line: 1, error: invalid dimension name
    ! Column_Order = C1_SCENARIO, C2_YEAR, C3_VIEW, C4_ENTITY, C5_VALUE, C6_ACCOUNT, C7_ICP, C8_CUSTOM1, C9_CUSTOM2, C10_CUSTOM3, C11_CUSTOM4, C12_PERIOD, C13_DATAVALUE
    C1_SCENARIO
    line: 3 error: a valid column order is not specified.
    Actual; 2007; YTD; 20043; < entity currency >; 13040; [ICP no]; [None]; 1000; [None]; [None]; Jan; 512000; » »
    > > > > > >



    I'm not sure how to solve, as it is based on the interface mapping match dimensions on a 1:1 basis. In addition, dimension in the target column names correspond to the dimension names of application of HFM (that this application has been deducted).

    Help, please!

    Thank you very much
    Jorge

    Published by: 993020 on March 11, 2013 05:06

    Dear Experts,

    ODI: 11.1.1.6.0
    HFM: 9.3.3

    I also met a similar error as OP.

    In my case, the error occurs when I use SUNOPSIS_MEMORY_ENGINE as the staging. If I simply change this staging to the Oracle schema, the Interface will load data successfully to HFM. So, I'm curious on what cause the SUNOPSIS cannot become the staging for the loading of HFM.

    This will show in the IKM SQL to the FM data log file:

    Load data started: 3/14/2013 13:41:11.
    Line: 1, Error: Invalid dimension name
    !Column_Order = C1_SCENARIO, C2_YEAR, C3_VIEW, C4_ENTITY, C5_VALUE, C6_ACCOUNT, C7_ICP, C8_PRODUCT, C9_CUSTOMERS, C10_CHANNEL, C11_UNITSFLOWS, C12_PERIOD, C13_DESCRIPTION
    
    
    C1_SCENARIO

    
    Line: 3, Error: A valid column order is not specified.
    Actual;2007;YTD;EastSales;;Sales;[ICP None];Comma_PDAs;Electronic_City;National_Accts;[None];February;;555
    >>>>>>
    
    Load data completed: 3/14/2013 13:41:11.
    

    It seems like the query generated is not picking up the Column Alias name, but this only happens if I use SUNOPSIS_MEMORY_ENGINE as the staging. With Oracle schema as staging, data load is successfully finished.

    This is the generated code from the KM

    Prepare for Loading (Using Oracle as Staging)

    from java.util import HashMap
    from java.lang import Boolean
    from java.lang import Integer
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.hfm import ODIHFMConstants
    from com.hyperion.odi.connection import HypAppConnectionFactory
    
    # Target HFM connection properties
    clusterName   = "demo92"
    userName      = "admin"
    password      =  "<@=snpRef.getInfo("DEST_PASS") @>"
    application   = "COMMA"
    
    targetProps = HashMap()
    targetProps.put(ODIConstants.SERVER,clusterName)
    targetProps.put(ODIConstants.USER,userName)
    targetProps.put(ODIConstants.PASSWORD,password)
    targetProps.put(ODIConstants.APPLICATION_NAME,application)
    
    # Load options
    consolidateOnly    = 0
    importMode            = "Merge"
    accumulateWithinFile  = 0
    fileContainsShareData = 0
    consolidateAfterLoad  = 0
    consolidateParameters = ""
    logEnabled             = 1
    logFileName           = r"C:\Temp\ODI_HFM_Load.log"
    tableName             = r"HFMData"
    columnMap            = 'SCENARIO=Scenario , YEAR=Year , VIEW=View , ENTITY=Entity , VALUE=Value , ACCOUNT=Account , ICP=ICP , PRODUCT=Product , CUSTOMERS=Customers , CHANNEL=Channel , UNITSFLOWS=UnitsFlows , PERIOD=Period , DATAVALUE=DataValue , DESCRIPTION=Description '
    srcQuery= """select   C1_SCENARIO    "Scenario",C2_YEAR    "Year",C3_VIEW    "View",C4_ENTITY    "Entity",C5_VALUE    "Value",C6_ACCOUNT    "Account",C7_ICP    "ICP",C8_PRODUCT    "Product",C9_CUSTOMERS    "Customers",C10_CHANNEL    "Channel",C11_UNITSFLOWS    "UnitsFlows",C12_PERIOD    "Period",555    "DataValue",C13_DESCRIPTION    "Description" from ODI_TMP."C$_0HFMData"  where      (1=1)     """
    srcCx                    = odiRef.getJDBCConnection("SRC")
    srcQueryFetchSize=30
    
    loadOptions = HashMap()
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEONLY, Boolean(consolidateOnly))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_IMPORTMODE, importMode)
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_ACCUMULATEWITHINFILE, Boolean(accumulateWithinFile))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_FILECONTAINSSHAREDATA, Boolean(fileContainsShareData))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEAFTERLOAD, Boolean(consolidateAfterLoad))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEPARAMS, consolidateParameters)
    loadOptions.put(ODIConstants.LOG_ENABLED, Boolean(logEnabled))
    loadOptions.put(ODIConstants.LOG_FILE_NAME, logFileName)
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_TABLENAME, tableName);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_COLUMNMAP, columnMap);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCECONNECTION, srcCx);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERY, srcQuery);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERYFETCHSIZE, Integer(srcQueryFetchSize));
    
    # Get the writer
    hfmWriter = HypAppConnectionFactory.getAppWriter(HypAppConnectionFactory.APP_HFM, targetProps);
    
    # Begin load
    hfmWriter.beginLoad(loadOptions)
    

    Prepare for loading (using SUNOPSIS as staging)

    from java.util import HashMap
    from java.lang import Boolean
    from java.lang import Integer
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.hfm import ODIHFMConstants
    from com.hyperion.odi.connection import HypAppConnectionFactory
    
    # Target HFM connection properties
    clusterName   = "demo92"
    userName      = "admin"
    password      =  "<@=snpRef.getInfo("DEST_PASS") @>"
    application   = "COMMA"
    
    targetProps = HashMap()
    targetProps.put(ODIConstants.SERVER,clusterName)
    targetProps.put(ODIConstants.USER,userName)
    targetProps.put(ODIConstants.PASSWORD,password)
    targetProps.put(ODIConstants.APPLICATION_NAME,application)
    
    # Load options
    consolidateOnly    = 0
    importMode            = "Merge"
    accumulateWithinFile  = 0
    fileContainsShareData = 0
    consolidateAfterLoad  = 0
    consolidateParameters = ""
    logEnabled             = 1
    logFileName           = r"C:\Temp\ODI_HFM_Load.log"
    tableName             = r"HFMData"
    columnMap            = 'SCENARIO=Scenario , YEAR=Year , VIEW=View , ENTITY=Entity , VALUE=Value , ACCOUNT=Account , ICP=ICP , PRODUCT=Product , CUSTOMERS=Customers , CHANNEL=Channel , UNITSFLOWS=UnitsFlows , PERIOD=Period , DATAVALUE=DataValue , DESCRIPTION=Description '
    srcQuery= """select   C1_SCENARIO    "Scenario",C2_YEAR    "Year",C3_VIEW    "View",C4_ENTITY    "Entity",C5_VALUE    "Value",C6_ACCOUNT    "Account",C7_ICP    "ICP",C8_PRODUCT    "Product",C9_CUSTOMERS    "Customers",C10_CHANNEL    "Channel",C11_UNITSFLOWS    "UnitsFlows",C12_PERIOD    "Period",555    "DataValue",C13_DESCRIPTION    "Description" from "C$_0HFMData"  where      (1=1)     """
    srcCx                    = odiRef.getJDBCConnection("SRC")
    srcQueryFetchSize=30
    
    loadOptions = HashMap()
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEONLY, Boolean(consolidateOnly))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_IMPORTMODE, importMode)
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_ACCUMULATEWITHINFILE, Boolean(accumulateWithinFile))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_FILECONTAINSSHAREDATA, Boolean(fileContainsShareData))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEAFTERLOAD, Boolean(consolidateAfterLoad))
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEPARAMS, consolidateParameters)
    loadOptions.put(ODIConstants.LOG_ENABLED, Boolean(logEnabled))
    loadOptions.put(ODIConstants.LOG_FILE_NAME, logFileName)
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_TABLENAME, tableName);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_COLUMNMAP, columnMap);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCECONNECTION, srcCx);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERY, srcQuery);
    loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERYFETCHSIZE, Integer(srcQueryFetchSize));
    
    # Get the writer
    hfmWriter = HypAppConnectionFactory.getAppWriter(HypAppConnectionFactory.APP_HFM, targetProps);
    
    # Begin load
    hfmWriter.beginLoad(loadOptions)
    

    If anyone can help on how to solve this?

    Thank you

    Published by: user10620897 on March 14, 2013 14:28

  • Essbase error logs

    ODI 10.1.3.6
    IKM SQL for Hyperion Essbase (DATA)

    I usually just hard a path in the name of the log file of code errors.

    I never understood what is all about the default string in the error logs...
    < default >: <? = java.lang.System.getProperty("java.io.tmpdir")? > / < % = snpRef.getTargetTable ("RES_NAME") % > .err

    Can someone please enlighten us?

    See you soon

    The default path is just using java system parameters and the methods of substitution odi to dynamically build the path to the error log. It works for everyone regardless of their particular configuration and it is the default value. There is nothing wrong with the path of the log error of hard coding but it can affect portabillity when moving objects between environments. I've always found that defining error log paths dynamically in an ODI variable and then reference the variable for the name of the error log file are a good approach.

  • The maximum error ODI error threshold

    Hi John,.

    Had another ODI error.

    I've created an interface to send data from SQL base1 to essbase. When I run it I get the following error

    Error records the maximum threshold: 1

    The log shows the following

    cannot put an end to dataloaad. Error (1003014) analytical server: Member [] loading unknown

    The previous interface I developed for the loading of the data did not show this error. I checked the options and both are similar. But now I am facing this error. Please suggest

    Hello

    If you have set to 1, then the integration will stop when 1 error occurs, if you set it to 0, then it will keep the error threshold continues to operate even when it encounters errors.

    It also looks like you have an empty folder for one of the columns in the source where the reason why you get [unknown member] loading.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to create an error log file

    Hello

    I want to make an error log in the format below:-

    Date error error number

    Description 1/1 3243543 error 01:00

    -              -                -                       -

    -             -                -                       -

    The error log should be created automatically after execution of a particular program. (only date and time when no error occurs).

    Can someone give me the samplecodes to do that?


  • Xcopy - need of path of the error log file

    Hey Microsoft,

    I run the xcopy command:

    xcopy/C/H/E "C:\Original" /e > "C:\LOGFILE. TXT"2 >"C:\ERROR_LOGFILE. TXT ".

    The error log gives me this result:

    "File creation error - the system cannot find the file specified."

    But I need the path of the file that caused this error.

    How this is done?

    Thank you!

    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/xcopy.mspx?mfr=true

    Maybe this page will help?

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/Xcopy-system-cannot-find-the-file-specified-what/abb0cf37-0842-E011-9767-d8d385dcbb12?msgId=a082bb88-d8fa-47d1-9d13-8986f8a4a4dc

    or that, asked in the forums of win7

  • I have 90% of disk empty hard drive space, but the error log is eating my memory... How can I clear the error log?

    I have 90% free or empty space on my computer, but my memory is full of error logs.

    How can I clear the logs for free my memory and find my speed?

    Hello

    Thank you for contacting Microsoft Answers.

    Too clarify unwanted newspapers, go to my computer-> select your system partition/drive (the partition where Windows is installed usually C:\)->right click for menu doll-> click Properties-> click on disk cleanup.)

    After a few seconds, the disk cleanup window opens. Select the categories of files that you want to remove, and then click Ok.

  • How a repair tech to display error log when it is not on the computer

    I got our office for repairs because it crashed constantly and gel to the top.  The technician who brought back the computer said that there is nothing wrong just a few things that it has fixed.  Not 10 minutes after that he did to the left of the computer freeze and our screen is blurred.  When I called him to inform him, he said he went in my error log and he could see that there was a problem.  It's that he can see what I'm doing?  Better yet, what can I do to eliminate looking at him in front of my computer.

    You can disable remote assistance by will start--->Panel---> System---> using Remote taband uncheck the allow invitations to support remotely to send from your computer. I suspect that when you took it, he put the system in place for handling remote.

    You can also remove remote assistance exception in your firewall.

  • I have a lot of things to add or remove section in the control panel which can also remove how to remove the error log please thank you

    What kind of things can I delete on my computer to make the space.i downloaded lots of stuff you want to find and remove the it.thankyou much novice user

    We do not know what you download and what you have installed so difficult to answer.

    If you have installed some stuff and you want more, then Yes, uninstall it from Add/Remove.

    Regarding the error log - are what error paper you referring?

    FYI - http://support.microsoft.com/kb/310312
    Description of the tool in Windows XP disk cleanup

    Harold Horne / TaurArian [MVP] 2005-2011. The information has been provided * being * with no guarantee or warranty.

  • MS antispyware error log text document

    In my program files, there is a record of anti-spyware microsoft with a text of the error log document.  This document is large, 953 MB is it OK to remove this file?

    Go to add/remove programs and see if MS Antispyware is here. If this is the case, you can uninstall it. MS Antispyware is an obsolete program. If it has already been uninstalled (does not appear in Add/Remove Programs), then simply delete the folder in Program Files. MS - MVP - Elephant Boy computers - don't panic!

  • Failed to create task scheduler error log... Event ID 412

    Original title: windows edition vista Home premium... Error log... Event ID 412... Task Scheduler service failed to start triggered by computer startup... Additional data... Error value 2147549183

    Also, when trying to open the Task Scheduler to message... The image of the task is damaged or has been tampered with

    dabf8524-213d-4B2F-8c28-216053942221

    6db14b86-dc09-417f-B9E4-8ea3e1d3cad3

    5e741641-d6b4-4A05-BE04-d909bd185b49

    Reminders-Nat

    MP Sceduled Scan

    Thank you for any information you may be able to help with this problem

    Thanks, Nathan

    Hello


    Have you made changes on the computer before this problem?

    Try the following and see if it helps.

    Method 1:

    I suggest you delete the related corrupted image in this folder and see if the problem occurs
    Commonly, Task Scheduler task image is located in:
    a. in Windows Explorer, navigate to the folder below.
    C:\Windows\System32\Tasks.
    b. remove the related items.
    c. try to create a new task and check if it helps.
    Method 2:

    I suggest to remove the item from the following location registry and check if it helps.

    a. click on the Start Menu.
    b. type regedit in the search box and press on enter.
    c. If the application for leave, click on continue to open the registry editor on the left pane, navigate to the following:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache\Tasks.
    d. remove the registry concerned items.
    e. close the registry editor.
    f. restart your computer.

    Note: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base: http://windows.microsoft.com/en-US/windows-vista/Back-up-the-registry

     
    Reference:
     
     
  • Apache error log is 146gigs because of the online game I think, how it remove?

    I was online game. I keep losing free space on the disk. My apache error log is more than 146 GB. How can I delete? I tried. I read about resetting my journal from the mistakes of 'prevent' to 'emerge', but I couldn't save this parameter or the other. any help? Thank you

    Hello chriscilantro,
    Try contacting support for Apache as it's a matter of Apache.
    Please click the link below for support of Apache.
    http://httpd.Apache.org/support.html

  • Try to install autocad architecture 2012and get 1603 error log.

    I have Vista 64-bit with Service pack two. I'm having a problem when trying to install autocad architecture 2012. The installation will fail and the error log indicates Visual C++ 2008 has begun and then abandoned... error 1603. My continuous automatic Windows Update Service update two pack 1 updates and when I check the history they have been successfully updated each time. I feel that I need an update for Visual C++ 2008 and service pack update is noted as successful. I uninstalled all such files as suggested by autodesk and autodesk products. Then redownloaded and tried to install. Failed every time. A friend had the same problems and after Vista update, hers is a 32-bit system... She redown loaded Autocad and installed. Are there updates for service pack 2 because I noticed are updated to service Pack 1. This program is my lively hood! I tried to install 2011 also failed. The 2009 version worked fine, but I uninstalled it he's trying to upgrade. My system is too qualified to manage the program. Thanks Cat

    Hello

    I suggest you try the steps in the following articles (one by one) and check.
    You receive an "error 1603: a fatal error occurred during installation" error message when you try to install a Windows Installer package
    http://support.Microsoft.com/kb/834484

    When you try to install an update for .NET Framework 1.0, 1.1, 2.0, 3.0 or 3.5, you may receive Windows Update '0 x 643' error code or error code Windows install "1603".
    http://support.Microsoft.com/kb/923100/en-us

    There is a thread on the problem installing AutoCad (both for the installation of 2011) found here: http://forums.autodesk.com/t5/Installation-Licensing/Autocad-2011-Installation-trouble-error-1603/td-p/2699162

  • Error log can be used with multi table insert?

    I mean I want to insert into multiple tables and errors in the log for each table. Would this be possible?

    I tried something like below:

    in zzz_party)

    name,

    party_type,

    domicile_ctry_id

    ) (the values

    case

    Where rn = null then 14

    other name

    end,

    party_type,

    domicile_ctry_id

    ) Journal of log errors in zzz_err_party ("INS1")

    reject limit unlimited

    in zzz_party2)

    name,

    party_type,

    domicile_ctry_id

    ) (the values

    name,

    case

    Where rn = null then 14

    of other party_type

    end,

    domicile_ctry_id

    )

    Error log of journal zzz_err_party2 ("INS1")

    reject limit unlimited

    Select name, legal_name.

    case

    Where rownum = null then 14

    of other party_type

    end

    -t.domicile_ctry_id, rownum rn

    advantage t

    WHERE name like 'A %' and rownum < = 100

    ;

    And it does not work.

    Is there a way to do what I thought without having a separate select insert for each table with its own errors in the log?

    Whenever you have an error message the complete error message. "It doesn't work" is not an error message that others can understand.

    Looking in your statement, there are some flaws of syntax. I have fixed the. Try this

    insert all
    into zzz_party
    (
      name
    , party_type
    , domicile_ctry_id
    )
    values
    (
      case when rn=14 then  null else  name end
    , party_type
    , domicile_ctry_id
    )
    log errors into zzz_err_party ('ins1') reject limit unlimited
    into zzz_party2
    (
      name
    , party_type
    , domicile_ctry_id
    )
    values
    (
      name
    , case when rn=14 then null else party_type end
    , domicile_ctry_id
    )
    log errors into zzz_err_party2 ('ins1') reject limit unlimited
    select name
         , legal_name
         , case when rownum=14 then null else party_type end party_type
         , t.domicile_ctry_id
         , rownum rn
      from party t
     where name like 'A%'
       and rownum<=100;
    
  • Why error log is not catch every error?

    Hi all

    I wonder is why newspaper error only intercept a mistake? In other words, in the case of more than one error occurs for each row, error log only trap one, why? Do you rely on it?

    create table test_table
    (
    primary key ID number,
    txt varchar2 (5)
    );

    insert into values table_test (1, "yyyy");
    insert into values table_test (2, 'bbbb');
    insert into values table_test (3, 'cccc');
    insert into values table_test (4, "dddd");

    commit;

    exec dbms_errlog.create_error_log (dml_table_name = > 'Table_test');

    Insert into test_table
    SELECT id, txt | txt from test_table
    release log errors unlimited limit;

    0 rows inserted.

    Select count (*) MRO$ _test_table; = > It must be 8. Because 4 errors for ORA-00001: unique constraint and 4 errors for ORA-12899: value too large for column

    4

    Thanks in advance

    This is because Oracle gives only one error at a time.

    In my case it gave me this error.

    ORA-12899: value too large for column

    Once he receives the first error, it does not have to insert the data to get the second error!

    SQL > create table test_table

    () 2

    number 3 id primary key,

    4 txt varchar2 (5)

    5  );

    Table created.

    SQL > insert into values table_test (1, "yyyy");

    1 line of creation.

    SQL > insert into values table_test (2, 'bbbb');

    1 line of creation.

    SQL > insert into values table_test (3, 'cccc');

    1 line of creation.

    SQL > insert into values table_test (4, "dddd");

    1 line of creation.

    SQL >

    SQL > commit;

    Validation complete.

    SQL > insert into test_table

    2 select id, txt | txt from test_table;

    SELECT id, txt | txt from test_table

    *

    ERROR on line 2:

    ORA-12899: value too large for column 'MARY '. "' TEST_TABLE '. "' TXT ' (real: 8,)

    maximum: 5)

Maybe you are looking for

  • Satellite L500 - can not turn on the new wireless network card

    I have little problem with client model T. Satellite l500-1ek. I change orginal at BCM94321MC wifi wifi card mini pci card (rev 6). Card works well - everything is ok - driver installed ok.But I can not turn on wifi with FN + f8 key - Windows. This i

  • HP Pavilion 15-bc021tx

    Hi guyzz. Actually I want to buy this laptop but I could not found this notebook PC series HP Pavilion 15-bc021tx I am in India, so I found this laptop

  • How to quickly enter titles in Photos

    Is there a way to quickly enter (or change) a series of titles in Photos? I use the latest version (1.2) with El Capitan and were not able to understand this. At the opening, it was possible to change the title of a photo in the sidebar for informati

  • Control the output is not the correct value

    Hello I have a producer consumer with a queue architecture to pass values. I want to push a new value in the table by using "Insert table" when a button is pressed, but when I do the previous value is read the first time and the correct value on the

  • Cannot install optical drive. controller of ideata/atapi missing or damaged.

    Every morning. In Device Mgr my internal writer says it's there, but it was expanded with a yellow mark. This would indicate that an appropriate IDE controller driver is necessary. That's probably why I can't install it well before my comp has been c