Metadata with defining Derived Associations valided failed.

Hey all,
I am developing a MySQL plugin, and want to use "Derived Associations" to make a topology to display the relationship between mysql objects and its cluster group. However I run into some trouble. Could anyone help me out? I am really confused.
Here is the code to define Derived Associations
<?xml version="1.0" encoding="UTF-8"?>
<Rules xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Rule name="mysql_cluster_contains">
   <query>
      select 'runs_on_cluster' as assoc_type,
              c.target_guid as source_me_guid,
              b.target_guid as dest_me_guid
              HEXTORAW(NULL) as derivation_target_guid
      from MGMT_EMX_MYSQL_DBVAR a,MGMT_ECM_GEN_SNAPSHOT b,MGMT_TARGETS c
      where a.ecm_snapshot_id=b.SNAPSHOT_GUID
        and a.VARIABLE_NAME ='wsrep_cluster_name'
        and b.IS_CURRENT='Y'
        and c.TARGET_NAME=a.VALUE
        and c.TARGET_TYPE='oracle_mysql_cluster'
   </query>
    <trigger>
        <targetType>oracle_mysql_database</targetType>
        <snapshotType>MYSQL_MYSQL_DB</snapshotType>
        <table>MGMT_EMX_MYSQL_DBVAR</table>
        <idColumn>destination</idColumn>
    </trigger>
  </Rule>
</Rules>After I get the file under folder metadata\derivedAssocs, and try to pack the plugin, it failed with message as below.
Violation type: NON SDK Access detected
Validation Type: Meta data Embedded SQL
Artifact being accessed: TABLE MGMT_ECM_GEN_SNAPSHOT
Accessed by: SQL String sql0 in /DATA/mysql_cluster_plugin/mysql_cluster/oms/metadata/derivedAssocs/mysql_cluster_assoc_rules.xml
The SQL query embedded in the above file or class is accessing a non SDK DB object. For legibility only SQL IDs are mentioned here. The actual SQL Strings corresponding to these IDs are mentioned towards the end of the report.
Violation type: NON SDK Access detected
Validation Type: Meta data Embedded SQL
Artifact being accessed: TABLE MGMT_TARGETS
Accessed by: SQL String sql0 in /DATA/mysql_cluster_plugin/mysql_cluster/oms/metadata/derivedAssocs/mysql_cluster_assoc_rules.xml
The SQL query embedded in the above file or class is accessing a non SDK DB object. For legibility only SQL IDs are mentioned here. The actual SQL Strings corresponding to these IDs are mentioned towards the end of the report.
SQL IDs to Strings mapping:
sql0: 
      select 'runs_on_cluster' as assoc_type,
              c.target_guid as source_me_guid,
              b.target_guid as dest_me_guid
              HEXTORAW(NULL) as derivation_target_guid
      from MGMT_EMX_MYSQL_DBVAR a,MGMT_ECM_GEN_SNAPSHOT b,MGMT_TARGETS c
      where a.ecm_snapshot_id=b.SNAPSHOT_GUID
        and a.VARIABLE_NAME ='wsrep_cluster_name'
        and b.IS_CURRENT='Y'
        and c.TARGET_NAME=a.VALUE
        and c.TARGET_TYPE='oracle_mysql_cluster'I am sure the SQL is right to display the data. I don't know what "NON SDK Access" is and why the code is wrong. :(
Thank you in advance!
Best wishes,
Satine

Hey Vitaliy,
Thank you very much for your help!
I will try to post questions here, in case other people have the same problem can also reference your reply. :)
After I change SQL as this, I can package the plugin.
<?xml version="1.0" encoding="UTF-8"?>
<Rules xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Rule name="mysql_cluster_contains">
   <query>
      select 'runs_on_cluster' as assoc_type,
              a.target_guid as source_me_guid,
              b.target_guid as dest_me_guid
      from MGMT$TARGET_PROPERTIES a,MGMT$TARGET b
      where a.PROPERTY_NAME ='version'
        and a.PROPERTY_VALUE=b.TARGET_NAME
        and b.TARGET_TYPE='oracle_mysql_cluster'
   </query>
  </Rule>
</Rules>However, after I deploy it to OMS and added targets for it. There were still no topology display on EM interface (Target -> Configuration -> Topology). I am sure the SQL has data returned, and the GC$ECM_CONFIG.run_assoc_deriv_rule was executed successfully.
SQL>       select 'runs_on_cluster' as assoc_type,
  2                a.target_guid as source_me_guid,
  3                b.target_guid as dest_me_guid
  4        from MGMT$TARGET_PROPERTIES a,MGMT$TARGET b
  5        where a.PROPERTY_NAME ='version'
  6          and a.PROPERTY_VALUE=b.TARGET_NAME
  7          and b.TARGET_TYPE='oracle_mysql_cluster';
ASSOC_TYPE                     SOURCE_ME_GUID                   DEST_ME_GUID
runs_on_cluster                309C19DEEDC84BA78748C22F6E56D29F BCBF699C02E8984F79B180A14A1D1501
runs_on_cluster                69482E4EDEC000BDD7B8E7567A484860 BCBF699C02E8984F79B180A14A1D1501
SQL> DECLARE                                                                                           
  2      temp GC$DERIV_ASSOC_CHANGE_LIST := GC$DERIV_ASSOC_CHANGE_LIST();                              
  3  BEGIN                                                                                             
  4      GC$ECM_CONFIG.run_assoc_deriv_rule(                                                           
  5        p_target_guid => hextoraw('309C19DEEDC84BA78748C22F6E56D29F'),                              
  6        p_rule_name => 'mysql_cluster_contains',                                                    
  7        p_column_flag => 'S',                                                                       
  8        p_change_list => temp);                                                                     
  9        COMMIT;                                                                                     
10  END;                                                                                              
11  /                                                                                                 
PL/SQL procedure successfully completed.
SQL> DECLARE                                                                                           
  2      temp GC$DERIV_ASSOC_CHANGE_LIST := GC$DERIV_ASSOC_CHANGE_LIST();                              
  3  BEGIN                                                                                             
  4      GC$ECM_CONFIG.run_assoc_deriv_rule(                                                           
  5        p_target_guid => hextoraw('69482E4EDEC000BDD7B8E7567A484860'),                              
  6        p_rule_name => 'mysql_cluster_contains',                                                    
  7        p_column_flag => 'S',                                                                       
  8        p_change_list => temp);                                                                     
  9        COMMIT;                                                                                     
10  END;                                                                                              
11  /                                                                                                 
PL/SQL procedure successfully completed.
SQL> DECLARE                                                                                           
  2      temp GC$DERIV_ASSOC_CHANGE_LIST := GC$DERIV_ASSOC_CHANGE_LIST();                              
  3  BEGIN                                                                                             
  4      GC$ECM_CONFIG.run_assoc_deriv_rule(                                                           
  5        p_target_guid => hextoraw('BCBF699C02E8984F79B180A14A1D1501'),                              
  6        p_rule_name => 'mysql_cluster_contains',                                                    
  7        p_column_flag => 'S',                                                                       
  8        p_change_list => temp);                                                                     
  9        COMMIT;                                                                                     
10  END;                                                                                              
11  /                                                                                                 
PL/SQL procedure successfully completed.Would please let me know what I did wrong?
Best wishes,
Satine

Similar Messages

  • Validation failure when trying to add derived associations

    Hi,
    I am trying to add derived associations to my plugin. I want to add an association between my plugin target and a target from outside my plugin (an ASM instance).
    However, during the validation of the plugin, it fails with this message:
    Violation type: NON SDK Access detected
    Validation Type: Meta data Embedded SQL
    Artifact being accessed: VIEW CM$MGMT_ASM_DISK_ECM
    Accessed by: SQL String sql0 in /home/oracle/src/oem_pi_emc_vmx3/stage/oms/metadata/derivedAssocs/emc_vmx3_assocs.xml
    Source file path: /home/oracle/src/oem_pi_emc_vmx3/stage/oms/metadata/derivedAssocs/emc_vmx3_assocs.xml
    The SQL query embedded in the above file or class is accessing a non SDK DB object. For legibility only SQL IDs are mentioned here. The actual SQL Strings corresponding to these IDs are mentioned towards the end of the report.I read the Programmer's Reference doc, chapter 10.3.1, sub "DB Objects Referenced by Rule Queries", which specifies:
    For security reasons, the SYSMAN_RO user will execute your rule query. Therefore, only objects accessible by this user are allowed to be referenced. For objects created outside of your plug-in you can reference views exposed by the Extensibility Development Kit (EDK) at your plug-in level, including those prefixed with MGMT$ and GC$.However, I want to use table cm$mgmt_asm_disk_ecm as my query needs the "PATH" column. I cannot find this in any MGMT$ or GC$ table?
    I saw thread metadata with defining Derived Associations valided failed. about same issue but haven't been able to solve my problem with that yet.
    Any input appreciated!
    Thanks,
    Ed

    This issue is not longer a question, as it was solved by using table MGMT$METRIC_CURRENT instead.
    Just restrict the table to the required target_Type and select the required metric_column. THe value column will then give the value that's needed.
    Regards,
    Ed

  • Problem loading metadata with ODI : "Single sign on validation failed"

    Hi,
    When I load metadata in Planning using ODI, the load fails at the step "Prepare for loading" with this error message : "Single sign on validation failed".
    Can you help me please ?
    Thanks.
    Virgile.

    "com.hyperion.odi.planning.ODIPlanningException: Single sign on validation failed."
    Means you have put the incorrect account details in the topology manager, update the username/password
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Token-based server access validation failed with an infrastructure error

    Hi
    We have a new Win 2008 Enterprise x64 server running SQL 2008
    When we try to connect to the server using Windows Authentication, from a user account which is a domain administrator, we get the following message:
    "Token-based server access validation failed with an infrastructure error"
    What needs to be configured here for this to work ?
    Thanks
    Bruce

    Hi,
    I am encountering the same error message but it is more around the login, this problem happens only on one server but it is fine on another three, my investigation show it is a ghost SID associated with AD user account
    Background
        1- An Active Directory (AD) account was created for a user [Domain\UserA]
        2- A SQL login was created for the account above and then granted access to a number of databases
        3- The AD account was renamed/modified to [Domain\UserB]
        At this stage the user would encounter an error when connecting to the server
        The sql log show this error message
        Error: 18456, Severity: 14, State: 11.
        Message
        Login failed for user 'domain\user'. Reason: Token-based server access validation failed with an infrastructure error. Check for previous errors.     [CLIENT: xxx]
    Action on Server 1 SQL (the one with the problem)
        1- Dropped the user from the databases
        2- Re-Created the login from the windows account [Domain\UserB]
        3- Created the user in the respective databases
        But the user still unable to connect to the server
    Investigation
        On server 1, the SID of the user in SYSUSERS was Matching SYSLOGINS and matches with result of SUSER_SID(Domain\UserA)
        But it does not match the SID in the AD
        The rest of the servers all have the correct SIDs
        When I use SUSER_SNAME(Incorrect-Sid) and SUSER_SNAME(Correct-Sid) on this server they both return [Domain\UserB]
        The problematic server is always returning the incorrect SID when recreating the user login and when using SUSER_SID(Domain\UserA) as if it is cached somewhere.
    I can't specify the SID when creating the SQL login because it is using the Windows account
    Your ideas on how to fix this problem are much appreciated
    Regards,
    DGL

  • I have an itouch that will not let me sign in to my itunes account. The email address that it is associated with is no longer valid. I keep entering the correct password but it says that it is incorrect. I cant get a reset all of my credentials dont work.

    I have an itouch that will not let me sign in to my itunes account. The email address that it is associated with is no longer valid. I keep entering the correct password but it says that it is incorrect. I can’t get a reset all of my credentials don’t work. Now all my apps won’t work. it looks like they load for half a second then disappear. What can I do?

    - Try contacting iTunes for the password problem:
    Apple - Support - iTunes - Contact Us
    - For the other problem you can try a reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - The next standard thing to do is to download/install a new app but you cant 'do that.
    - Instead, try restoring from backup.

  • Xml validation in File to RFC Sync Scenario with Validation fails message

    Hi All,
    We are using PI 7.4 (Dual Stack) the Requirement is File to RFC Sync Scenario(File <---> RFC).and need to do XML validation against XSD Schema. if any Validations fails Response message should send back to sender.RequestResponseBean standard module is using for File to RFC Sync scenario but how to send the response message to sender if any validation fails. adapter level XML validation is not helpful for this requirement. please help out me how to achieve the requirement with graphical mapping.
    Thanks in advance.

    to validate schema you cannot solve it with graphical mapping but validating the schema in the AAE or the integration engine.
    y recomend you to use the AAE validation at sender side, coz the sender system will be notified in case of schema errors.
    The response will be validated at Integration Server level.
    you can search in the forum, you will get many document about how to configure it.
    take a look to my blog: PI 7.3  - XML Validation

  • Eclipse XQuery expression validation failed: The current configuration is out of sync with the XQuery resource in the repository.

    I created a wsdl based on a dbadapter in jdeveloper, imported into eclipse and created the biz and the proxy and uploaded to oracle service bus, it works fine,
    but happens now that i need to have a xsd and wsdl with business names and not table names, invented to create a xsd and wsdl file in jdeveloper
    and then went to eclipse and tried t xquery tranformation, but when i add the replace in the message flow in the filed in Variable : body and Expression i look for the xquery and in the binding trying to put
    $body/input parameter, get the following error [RouteNode1, Replace action] XQuery expression validation failed: The current configuration is out of sync with the XQuery resource in the repository.
    what im doing wrong or its configuration
    thanks in advance sonia

    thanks
    ok have created a table with only in column varchar2(1)
    then the type object and the procedure to insert it works the proxy in the osb if i test it inserts
    now in jdeveloper i created an xml file with
    <?xml version="1.0" encoding="windows-1252" ?>
    <vessel>
    <barco>a</barco>
    </vessel>
    then i created a xsd based on this xml, and a wsdl based on the xsd
    in eclipse created a xquery transformation and selected source as the xsd created in adf and target the xsd input parameter, dont know why in the purple ball of the input parameter it puts a ?, an a f.
    then in the proxy xpath not writing anything in variable body and in the expression select the xquery and in binding select the parameter

  • Non-SysAdmins get error 18456 Severity 14 State 11 Login Failed for user _ Reason Token-based server access validation failed with an infrastructure error.

    I have a SQL 2008 R2 system (10.50.4000) where I'm having problems connecting any user that is not a SysAdmin.  Example: I setup a new SQL Login to use Windows Authentication and grant that user db_datareader on the target database.  The user attempts
    to connect using Excel client or Access or SQL Management Studio and receives Error 18456.  The SQL Server Logs shows Error 18456 Severity 14 State 11 Login Failed for user _ Reason Token-based server access validation failed with an infrastructure error.
    The strange part is that if I temporarily grant the user the sysadmin server role then the user can connect successfully and retrieve data.  But, if I take away that sysadmin server role then the user can no longer connect but again receives the Error
    18456 Severity 14 State 11 Login Failed for user _ Reason Token-based server access validation failed with an infrastructure error.
    We've turned off UAC on the client machine to see if that was the problem, but no change.
    I have dropped and re-added the user's SQL Login (and the related database user login info).  No success.
    The Ring Buffers output shows:
    The Calling API Name: LookupAccountSidInternal
    API Name: LookupAccountSid
    Error Code: 0x534
    Thanks for any help.
    -Walt

    Yes, you understand correctly.  The user is logging onto a workstation (not the server) with a Windows Authenticated id.  The user is using either Excel or Access or SSMS and connecting to the server using a Windows Authenticated SQL Login account.
     If the account has sysadmin role (which is only for testing) then the connection is successful.  If I take away sysadmin role from the account then the connection is unsuccessful and the SQL Server Log shows Error
    18456 Severity 14 State 11 Login Failed for user _ Reason Token-based server access validation failed with an infrastructure error.
    (SQL Authentication is not an option here.  I must use Windows Authentication).
    Any other troubleshooting assistance you can offer would be appreciated.  Thanks.
    -Walt 

  • WSDL Validation Failed (Web Services)

    I want to create a Web Service-Based Application in LabVIEW and I'm
    trying to go through the steps in the tutorial
    http://zone.ni.com/devzone/cda/tut/p/id/4728.
    I tried the following web services, but I always get the same error.
    http://coeservice.en.kku.ac.th:8080/TemperatureConvertor/TemperatureConvertorService?WSDL
    http://www.ecubicle.net/iptocountry.asmx?wsdl
    Error:
    WSDL Validation Failed.
    Validation failed. The URL is not formatted correctly and should be in the folowing form: http://localhost/test/good.asmx?WSDL
    I defined a proxy server with authentication. Without doing, that I get another error:
    Validation Failed.
    Possible Reasons are:
    1. The URL does not exist or the WSDL is bad.
    2. Authentication is not correct.
    3. Proxy information is not correct.
    So it seems that the proxy information is ok. But the web service I want to access isn't located on the localhost - I want to access a service in the internet. Can somebody give me a hint? I already tried to change some settings of the LabVIEW webserver. But it didn't help anything.
    David
    Solved!
    Go to Solution.

    In my browser I don't need to define a proxy (the proxy is detected automatically). But I still tried to define a proxy for the webservice - I got the informations from our IT department.
    I attached 3 screenshots of the webservice wizard with the error message...
    Attachments:
    ImportWebService1.gif ‏19 KB
    ImportWebService2.gif ‏22 KB
    ImportWebService3.gif ‏6 KB

  • WSDL validation failed, can't generate WS stub

    I've searched this forum for this and could not find anything relevant.
    I'm new to JDeveloper, and just installed 10.1.2. I have the Oracle Press book, "Oracle JDeveloper 10g handbook". In the book, chapter 14 contains a "Hands-on Practice" of creating an application that uses a web service. The example uses the Google Web APIs.
    When I get to the step to generate a web service stub from the GoogleSearch.wsdl, JDeveloper produces the following error:
    "WSDL validation failed with the following exception: The WSDL document is ill defined or incomplete and cannot be used to generate a stub."
    I've also tried the google wsdl that is available at the URL, http://api.google.com/GoogleSearch.wsdl
    It too yields the same error.
    I'm going to proceed with other WSDL files and see what happens. If anyone has any info to share on this, I would appreciate it.
    Thanks
    Morgan

    Ok, I found the problem.
    I was also getting a "can not find main class" error on startup. This thread
    Could not find the main class. Program will fail
    pointed out that you should not install JDeveloper into a folder with an embedded space. I had it subordinate to Program Files. So, I moved it from there and now it gets past the WSDL error when generating a stub from the WSDL.
    Onward!

  • Checksum validation failed for some Xtext Maven artifacts and corresponding problems

    Hi
    I've been noticing some Checksum validation warnings during the build
    for some Xtext Maven artifacts, e.g.,
    [INFO] Downloading:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [INFO] Downloading:
    https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [WARNING] Checksum validation failed: Checksum validation failed,
    expected 872cc77705d19d8f59e22b784036430356246697 but is
    56dfb41a5a16e797f052660debc509bd44d10880 for
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [INFO] Downloaded:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    (649 B at 3.2 KB/sec)
    [INFO] Downloaded:
    https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    (380 B at 0.9 KB/sec)
    [INFO] Downloading:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/2.8.3/org.eclipse.xtext.util-2.8.3.pom
    [WARNING] Checksum validation failed: Checksum validation failed,
    expected 25d651226b11727df3b99a6325e989f4e08c82ee but is
    453418e3e74ace9b69e7c34094ee712f81c55991 for
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/2.8.3/org.eclipse.xtext.util-2.8.3.pom
    similar for org.eclipse.xtext.dependencies, org.eclipse.xtext.xbase.lib
    This hasn't prevented the build from completing so far; but now that I
    started to play with some mwe2 custom generator fragments in my DSL,
    when running the mwe2 workflow during the build it fails with such
    exception, which I guess might be related:
    java.lang.SecurityException: class
    "org.eclipse.xtext.util.XtextSwitch"'s signer information does not match
    signer information of other classes in the same package
    can it be related?
    thanks in advance
    Lorenzo
    Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
    HOME: http://www.lorenzobettini.it
    Xtext Book:
    http://www.packtpub.com/implementing-domain-specific-languages-with-xtext-and-xtend/book

    We have the same problem for weeks now. Seems, that there is really a wrong checksum in the maven repo.

  • ORA-19563:  header validation failed for file

    hai all ,
    i faced problem when restore database from tape backup ,
    my current database 11.1.0.7.0 , with AIX OS
    im running RMAN to restore with set new name to change poiting to new lun.
    but when end of restore show this :
    channel c05: restore complete, elapsed time: 01:00:34
    channel c06: piece handle=PRFN_DB_bk_31518_1_831778821 tag=HOT_DB_BK_LEVEL0
    channel c06: restored backup piece 1
    channel c06: restore complete, elapsed time: 01:01:39
    Finished restore at 22-NOV-13
    released channel: c01
    released channel: c02
    released channel: c03
    released channel: c04
    released channel: c05
    released channel: c06
    released channel: c07
    released channel: c08
    released channel: c09
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of switch command at 11/22/2013 15:13:04
    ORA-19563:  header validation failed for file
    im open alert.log and see the error
    Errors in file /oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/trace/PROD_m000_5243492.trc:
    ORA-51106: check failed to complete due to an error.  See error below
    ORA-48251: Failed to open relation due to following error
    ORA-48122: error with opening the ADR block file [/oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/metadata/HM_FINDING.ams] [0]
    ORA-27041: unable to open file
    IBM AIX RISC System/6000 Error: 22: Invalid argument
    Additional information: 2
    ORA-01122: database file 30 failed verification check
    ORA-01110: data file 30: '/oradata51/PROD/data/ctxd01.dbf'
    ORA-01565: error in identifying file '/oradata51/PROD/data/ctxd01.dbf'
    ORA-27037: unable to obtain file status
    IBM AIX RISC System/6000 Error: 2: No such file or directory
    Additional information: 3
    Fri Nov 22 15:11:58 2013
    Errors in file /oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/trace/PROD_m000_5243494.trc:
    ORA-51106: check failed to complete due to an error.  See error below
    ORA-48251: Failed to open relation due to following error
    ORA-48122: error with opening the ADR block file [/oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/metadata/HM_INFO.ams] [0]
    ORA-27041: unable to open file
    IBM AIX RISC System/6000 Error: 22: Invalid argument
    Additional information: 2
    ORA-01122: database file 221 failed verification check
    ORA-01110: data file 221: '/oradata51/PROD/data/a_txn_data86.dbf'
    ORA-01565: error in identifying file '/oradata51/PROD/data/a_txn_data86.dbf'
    ORA-27037: unable to obtain file status
    IBM AIX RISC System/6000 Error: 2: No such file or directory
    Additional information: 3
    info
    '/oradata51/PROD/data/a_txn_data86.dbf' --> path original from production
    SET NEWNAME FOR DATAFILE 221 TO '/oracle/PROD/db/apps_st/data/a_txn_data86.dbf' --> path in Testing that do full restore
    this file already exist a_txn_data86.dbf
    someone can help me ?
    Imron

    Hi Imron,
    Ensure the file is available at the OS level, if yes then follow the below link and see if it helps you
    https://forums.oracle.com/thread/2544292
    https://forums.oracle.com/message/1237966
    https://forums.oracle.com/message/
    Thanks &
    Best Regards,

  • NetworkManager lead to WPA association/authentication failed

    Hey, guys.
    I cann't connect to WIFI using NetworkManager in Gnome 3 since a few days ago. Neither can I in the terminal using netctl.
    And journalctl -xe says 'WPA association/authentication failed'.
    I searched and found some people met the same problem, but I couldn't find a solution that worked for me.
    Accidentally, I fount that after stoping NetworkManager (systemctl stop NetworkManager), I could connect to WIFI using netctl.
    I found this solution when I did a first fresh installation of Arch on my office computer (I first met the problem on my personal computer).
    So, it's the problem of NetworkManager? But it seems there isn't any people reporting this problem.
    I wonder why does this problem arise and how could I get rid of it?
    And have you met the same problem with NetworkManager?

    Head_on_a_Stick wrote:
    I have just recently switched away from NetworkManager in my GNOME setup and gone back to dhcpcd.service (it seems more in keeping with the Arch Way).
    I had no problems with NetworkManager, but as JWR says you have to make sure all other network-related services are `disable`d (as well as `stop`ped)...
    What is the output of:
    systemctl --all --no-pager
    The output is as follows:
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File
    dev-cdrom.device loaded active plugged TSSTcorp_CDDVDW_TS-L633F
    dev-disk-by\x2did-ata\x2dTSSTcorp_CDDVDW_TS\x2dL633F_R82E6GEB714119.device loaded active plugged TSSTcorp_CDDVDW_TS-L633F
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290.device loaded active plugged WDC_WD7500BPVT-24HXZT1
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart1.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Win
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart2.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Arc
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart3.device loaded active plugged WDC_WD7500BPVT-24HXZT1 3
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart5.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sof
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart6.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Stu
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart7.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Ent
    dev-disk-by\x2did-ata\x2dWDC_WD7500BPVT\x2d24HXZT1_WD\x2dWXL1A6131290\x2dpart8.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sto
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1.device loaded active plugged WDC_WD7500BPVT-24HXZT1
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart1.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Win
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart2.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Arc
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart3.device loaded active plugged WDC_WD7500BPVT-24HXZT1 3
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart5.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sof
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart6.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Stu
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart7.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Ent
    dev-disk-by\x2did-wwn\x2d0x50014ee6ac298cc1\x2dpart8.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sto
    dev-disk-by\x2dlabel-Arch.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Arc
    dev-disk-by\x2dlabel-Entertainment.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Ent
    dev-disk-by\x2dlabel-Software.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sof
    dev-disk-by\x2dlabel-Storage.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sto
    dev-disk-by\x2dlabel-Study.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Stu
    dev-disk-by\x2dlabel-Windows7.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Win
    dev-disk-by\x2duuid-06F8BE17F8BE0549.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Ent
    dev-disk-by\x2duuid-16E807CFE807ABD5.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Win
    dev-disk-by\x2duuid-6E64C85464C820A7.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sto
    dev-disk-by\x2duuid-824AAC0F4AAC0251.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Stu
    dev-disk-by\x2duuid-933247f4\x2d9fa0\x2d4789\x2d8291\x2dbfde1dc9dce8.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Arc
    dev-disk-by\x2duuid-A630853630850F0D.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sof
    dev-sda.device loaded active plugged WDC_WD7500BPVT-24HXZT1
    dev-sda1.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Win
    dev-sda2.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Arc
    dev-sda3.device loaded active plugged WDC_WD7500BPVT-24HXZT1 3
    dev-sda5.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sof
    dev-sda6.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Stu
    dev-sda7.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Ent
    dev-sda8.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sto
    dev-sr0.device loaded active plugged TSSTcorp_CDDVDW_TS-L633F
    dev-ttyS0.device loaded active plugged /dev/ttyS0
    dev-ttyS1.device loaded active plugged /dev/ttyS1
    dev-ttyS2.device loaded active plugged /dev/ttyS2
    dev-ttyS3.device loaded active plugged /dev/ttyS3
    sys-devices-pci0000:00-0000:00:01.0-0000:01:00.0-backlight-acpi_video0.device loaded active plugged /sys/devices/pci0000:00/00
    sys-devices-pci0000:00-0000:00:02.0-backlight-acpi_video1.device loaded active plugged /sys/devices/pci0000:00/00
    sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2dLVDS\x2d1-intel_backlight.device loaded active plugged /sys/devices/pci0000:00/00
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged 6 Series/C200 Series Chips
    sys-devices-pci0000:00-0000:00:1c.1-0000:03:00.0-ieee80211-phy0-rfkill2.device loaded active plugged /sys/devices/pci0000:00/00
    sys-devices-pci0000:00-0000:00:1c.1-0000:03:00.0-net-wlp3s0.device loaded active plugged Centrino Wireless-N 1000 [
    sys-devices-pci0000:00-0000:00:1c.3-0000:04:00.0-net-enp4s0.device loaded active plugged RTL8111/8168/8411 PCI Expr
    sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill0.device loaded active plugged /sys/devices/pci0000:00/00
    sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill1.device loaded active plugged /sys/devices/pci0000:00/00
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Win
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Arc
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device loaded active plugged WDC_WD7500BPVT-24HXZT1 3
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sof
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Stu
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Ent
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda8.device loaded active plugged WDC_WD7500BPVT-24HXZT1 Sto
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged WDC_WD7500BPVT-24HXZT1
    sys-devices-pci0000:00-0000:00:1f.2-ata5-host4-target4:0:0-4:0:0:0-block-sr0.device loaded active plugged TSSTcorp_CDDVDW_TS-L633F
    sys-devices-platform-serial8250-tty-ttyS0.device loaded active plugged /sys/devices/platform/seri
    sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/seri
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/seri
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/seri
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-module-fuse.device loaded active plugged /sys/module/fuse
    sys-subsystem-net-devices-enp4s0.device loaded active plugged RTL8111/8168/8411 PCI Expr
    sys-subsystem-net-devices-wlp3s0.device loaded active plugged Centrino Wireless-N 1000 [
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File S
    media-Entertainment.mount loaded active mounted /media/Entertainment
    media-Software.mount loaded active mounted /media/Software
    media-Storage.mount loaded active mounted /media/Storage
    media-Study.mount loaded active mounted /media/Study
    media-Windows7.mount loaded active mounted /media/Windows7
    proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File
    run-user-1000-gvfs.mount loaded active mounted /run/user/1000/gvfs
    run-user-1000.mount loaded active mounted /run/user/1000
    sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted Temporary Directory
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests
    session-c2.scope loaded active running Session c2 of user vanitas
    accounts-daemon.service loaded active running Accounts Service
    atd.service loaded active running ATD daemon
    ● auditd.service not-found inactive dead auditd.service
    bumblebeed.service loaded active running Bumblebee C Daemon
    colord.service loaded active running Manage, Install and Genera
    cronie.service loaded active running Periodic Command Scheduler
    dbus.service loaded active running D-Bus System Message Bus
    dhcpcd.service loaded active running dhcpcd on all interfaces
    dm-event.service loaded inactive dead Device-mapper event daemon
    emergency.service loaded inactive dead Emergency Shell
    gdm.service loaded active running GNOME Display Manager
    geoclue.service loaded active running Location Lookup Service
    [email protected] loaded inactive dead Getty on tty1
    goagent.service loaded active running GoAgent Service
    httpd.service loaded active running Apache Web Server
    kmod-static-nodes.service loaded active exited Create list of required st
    ldconfig.service loaded inactive dead Rebuild Dynamic Linker Cac
    logrotate.service loaded inactive dead Rotate log files
    lvm2-lvmetad.service loaded inactive dead LVM2 metadata daemon
    man-db.service loaded inactive dead Update man-db cache
    mkinitcpio-generate-shutdown-ramfs.service loaded inactive dead Generate shutdown-ramfs
    netctl.service loaded inactive dead (Re)store the netctl profi
    netctl@wlp3s0\x2dPandoraBox.service loaded active exited Networking for netctl prof
    ● plymouth-quit-wait.service not-found inactive dead plymouth-quit-wait.service
    ● plymouth-quit.service not-found inactive dead plymouth-quit.service
    ● plymouth-start.service not-found inactive dead plymouth-start.service
    polkit.service loaded active running Authorization Manager
    rescue.service loaded inactive dead Rescue Shell
    rtkit-daemon.service loaded active running RealtimeKit Scheduling Pol
    shadow.service loaded inactive dead Verify integrity of passwo
    ● syslog.service not-found inactive dead syslog.service
    systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests
    systemd-ask-password-wall.service loaded inactive dead Forward Password Requests
    systemd-backlight@backlight:acpi_video0.service loaded active exited Load/Save Screen Backlight
    systemd-backlight@backlight:acpi_video1.service loaded active exited Load/Save Screen Backlight
    systemd-backlight@backlight:intel_backlight.service loaded active exited Load/Save Screen Backlight
    systemd-binfmt.service loaded inactive dead Set Up Additional Binary F
    systemd-firstboot.service loaded inactive dead First Boot Wizard
    systemd-fsck-root.service loaded inactive dead File System Check on Root
    systemd-initctl.service loaded inactive dead /dev/initctl Compatibility
    systemd-journal-catalog-update.service loaded inactive dead Rebuild Journal Catalog
    systemd-journal-flush.service loaded active exited Trigger Flushing of Journa
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-modules-load.service loaded active exited Load Kernel Modules
    systemd-networkd.service loaded active running Network Service
    systemd-random-seed.service loaded active exited Load/Save Random Seed
    systemd-remount-fs.service loaded active exited Remount Root and Kernel Fi
    [email protected] loaded active exited Load/Save RF Kill Switch S
    [email protected] loaded active exited Load/Save RF Kill Switch S
    [email protected] loaded active exited Load/Save RF Kill Switch S
    systemd-shutdownd.service loaded inactive dead Delayed Shutdown Service
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-sysusers.service loaded inactive dead Create System Users
    systemd-timesyncd.service loaded active running Network Time Synchronizati
    systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Direc
    systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes
    systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and
    systemd-udev-hwdb-update.service loaded inactive dead Rebuild Hardware Database
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-update-done.service loaded inactive dead Update is Completed
    systemd-update-utmp.service loaded active exited Update UTMP about System B
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    udisks2.service loaded active running Disk Manager
    upower.service loaded active running Daemon for power managemen
    [email protected] loaded active running User Manager for UID 1000
    wpa_supplicant.service loaded active running WPA supplicant
    -.slice loaded active active Root Slice
    system-getty.slice loaded active active system-getty.slice
    system-netctl.slice loaded active active system-netctl.slice
    system-systemd\x2dbacklight.slice loaded active active system-systemd\x2dbackligh
    system-systemd\x2drfkill.slice loaded active active system-systemd\x2drfkill.s
    system.slice loaded active active System Slice
    user-1000.slice loaded active active user-1000.slice
    user.slice loaded active active User and Session Slice
    dbus.socket loaded active running D-Bus System Message Bus S
    dm-event.socket loaded active listening Device-mapper event daemon
    lvm2-lvmetad.socket loaded active listening LVM2 metadata daemon socke
    syslog.socket loaded inactive dead Syslog Socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility
    systemd-journald-dev-log.socket loaded active running Journal Socket (/dev/log)
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-udevd-control.socket loaded active running udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    swapfile.swap loaded active active /swapfile
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    emergency.target loaded inactive dead Emergency Mode
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network-pre.target loaded inactive dead Network (Pre)
    network.target loaded active active Network
    nss-lookup.target loaded inactive dead Host and Network Name Look
    nss-user-lookup.target loaded inactive dead User and Group Name Lookup
    paths.target loaded active active Paths
    remote-fs-pre.target loaded inactive dead Remote File Systems (Pre)
    remote-fs.target loaded active active Remote File Systems
    rescue.target loaded inactive dead Rescue Mode
    shutdown.target loaded inactive dead Shutdown
    slices.target loaded active active Slices
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    time-sync.target loaded active active System Time Synchronized
    timers.target loaded active active Timers
    umount.target loaded inactive dead Unmount All Filesystems
    logrotate.timer loaded active waiting Daily rotation of log file
    man-db.timer loaded active waiting Daily man-db cache update
    shadow.timer loaded active waiting Daily verification of pass
    systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    205 loaded units listed.
    Should I disable dhcpcd.service to use NewworkManager?
    Last edited by vanitas (2014-12-07 12:55:23)

  • OAM:Database Validation Failed While Trying to Add New RDBMS Profile

    It's about DB connection with OAM 10.1.4 through OCI in Windows Server 2003.
    The error in OAM identity console: Database Validation Failed
    The error in OAM component logs: TNS:could not resolve the connect identifier specified%0a Error Code from OCIErrorGet^12154
    My working environment is 'Integrated IDM 10.1.4' downloaded in FF, the following is its description:
    This image is based off the OIM 9.0.3 image built by Sanjay Rallapalli. The underlying environment on which the image is built includes the following component and any associated user name/password combinations:
    Windows 2003 Active Directory (Administrator/abcd1234)
    Exchange 2003 (Administrator/abcd1234)
    Sun One Directory Server (cn=Directory Admin/abcd1234)
    Microsoft IIS
    Microsoft Certificate Authority
    Tomcat J2SE Server
    The image also includes a number of Oracle components including:
    Oracle DB 10G (sys, system/abcd1234)
    Oracle OC4J (http://ten.mydomain.com:7777/em oc4jadmin/abcd1234)
    Oracle Identity Manager (xelsysadm/xelsysadm)
    Oracle Virtual Directory (cn=admin/abcd1234)
    Oracle Access Manager (Administrator/abcd1234)
    Owner: Michael Terra     Creation Date: 24-JUL-08     Rating: Not Rated
    VM OS: Windows Server 2003     
    It seems an old problem as there are many articles in metalink treating it.
    Although I tried every solution proposed by metalink, I still get my 'Database Validation Failed'. I have restarted my system and rechecked in metalink several times.
    I'd like to know is there anyone who has successfully configured OAM connecting with Oracle DB through OCI in Windows? Could you tell me is there anything special I have to do? Thanks a lot.

    Hi All,
    I am trying to configure the audting for OAM 10.4.0.1 with OID as user store/Policy store. My oracle DB (10.1.0.5.0--comes bundled with OID) is on same host.
    I am trying to configure the audit database in OCI mode as there is some issue with installation of ODBC driver that i was not able to resolve.
    While creating RDBMS profile i am also getting the same error *"Database validation failed*" and in identity server logs stated as "*SqlAdapter Error OCIerrormap cpp:53 'OCI failed to create environment variable' method^OCI Adapter::OCI Adapter ociRetcode^ OCIError"*
    Does anyone able to successfully configure the audit database with same environment or let me know where i am missing or additional steps required.
    Thanks in advance!

  • Error running reports Parameter validation failed

    Hi All
    I have a user who gets an error when running reports from a remote console. If I log on with my account on his console I am able to run the report..
    I have checked a few things and now open to some suggestions.. please
    SMSAdminUI.log
       at System.Management.ManagementObject.Initialize(Boolean getObject)
       at System.Management.ManagementBaseObject.get_wbemObject()
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at System.Management.ManagementBaseObject.GetPropertyValue(String propertyName)
       at System.Management.ManagementBaseObject.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.GetInstance(String objectPath)\r\nManagementException details:
    instance of SMS_ExtendedStatus
     Description = "Error retrieving object ResourceID=83886343";
     ErrorCode = 2151811598;
     File = "e:\\nts_sccm_release\\sms\\siteserver\\sdk_provider\\smsprov\\SspInterface.h";
     Line = 1198;
     Operation = "GetObject";
     ParameterInfo = "SMS_MachineSettings.ResourceID=\"83886343\"";
     ProviderName = "ExtnProv";
     StatusCode = 2147749890;
    \r\n
    [17, PID:8664][10/23/2014 08:27:20] :System.Management.ManagementException\r\nInvalid class \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()\r\nManagementException details:
    instance of __ExtendedStatus
     Operation = "ExecQuery";
     ParameterInfo = "SELECT * FROM SMS_Identification";
     ProviderName = "WinMgmt";
    \r\n
    [23, PID:8664][10/23/2014 08:27:59]  Parameter validation failed. It is not possible to provide valid values for all parameters. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not possible
    to provide valid values for all parameters.

    ReportServerService.log
    (/ConfigMgr_J01/Site - Discovery and Inventory Information/Computers with duplicate MAC addresses).
    library!ReportServer_0-20!358!10/24/2014-10:18:47:: i INFO: Call to GetPropertiesAction(/ConfigMgr_J01/Site - Discovery and Inventory Information, PathBased).
    library!ReportServer_0-20!358!10/24/2014-10:18:47:: i INFO: Call to GetReportParametersAction(/ConfigMgr_J01/Site - Discovery and Inventory Information/Computers with duplicate MAC addresses).
    processing!ReportServer_0-20!358!10/24/2014-10:18:47:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not
    possible to provide valid values for all parameters.;
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetDataSourceContentsAction(/ConfigMgr_J01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetPropertiesAction(/ConfigMgr_J01, PathBased).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetDataSourceContentsAction(/ConfigMgr_J01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to CreateDataSourceAction({5C6358F2-4BB6-4a1b-A16E-8D96795D8602}, /ConfigMgr_J01, True).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to ListTasksAction(Catalog).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to SetPropertiesAction(/ConfigMgr_J01).
    processing!ReportServer_0-20!358!10/24/2014-10:19:07:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not
    possible to provide valid values for all parameters.;

Maybe you are looking for