OIM Database Connector recon not working

I am using OIM 9.1.0.0. with connector pack 9.0.4.1 on JBOSS 4.0.3SP1 Windows 2k3sp2
I imported the database connector and tried to recon but i get the following error message
14:36:31,444 INFO [STDOUT] 14:36:31,444 INFO [DBADAPTERLOGGER] DBReconciliation::execute : Check for create/update reconciliation
14:36:31,444 INFO [STDOUT] 14:36:31,444 INFO [DBADAPTERLOGGER] DBReconciliation::doTasks : query is SELECT idmuser.USER_ID FROM idmuser
14:36:31,444 INFO [STDOUT] 14:36:31,444 INFO [DBADAPTERLOGGER] DBReconciliation::createReconEvents : ##### Users present in database ##### 3
14:36:31,459 INFO [STDOUT] 14:36:31,459 INFO [DBADAPTERLOGGER] DBReconciliation::createReconEvents : Reconciliation in Trusted Mode
14:36:31,897 INFO [STDOUT] 14:36:31,897 INFO [DBADAPTERLOGGER] DBReconciliation::createReconEvents : Reconciliation in Trusted Mode
14:36:32,225 INFO [STDOUT] 14:36:32,225 INFO [DBADAPTERLOGGER] DBReconciliation::createReconEvents : Reconciliation in Trusted Mode
14:36:32,881 INFO [STDOUT] 14:36:32,881 INFO [DBADAPTERLOGGER] DBReconciliation::createReconEvents : Create/Update Reconciliation Successfully Completed
14:36:32,897 INFO [STDOUT] 14:36:32,897 ERROR [TASK] Class/Method: SchedulerBaseTask/run encounter some problems: {1}
java.lang.NullPointerException
at com.thortech.xl.integration.dbadapter.reconciliation.DBReconciliation.execute(DBReconciliation.java:267)
at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.run(Unknown Source)
at com.thortech.xl.scheduler.core.quartz.QuartzWrapper$TaskExecutionAction.run(Unknown Source)
at Thor.API.Security.LoginHandler.jbossLoginSession.runAs(Unknown Source)
at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown Source)
at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:477)
I am using Jboss 4.03SP1 with log4j.xml as
<category name="DBADAPTERLOGGER">
<priority value="ALL"/>
</category>
<category name="XL_INTG.OID">
<priority value="WARN"/>
</category>
<category name="WEBAPP"> <priority value="WARN" /></category>
<category name="PERFORMANCE"> <priority value="WARN" /></category>
<category name="ADAPTERS"> <priority value="DEBUG" /></category>
<category name="XELLERATE.DDM">
<priority value="WARN"/>
</category>
<category name="OIMCP.DATC">
<priority value="WARN"/>
</category>
<category name="XELLERATE.DATABASE">
<priority value="WARN"/>
</category>
<category name="Adapter.Oracle-eBizUM">
<priority value="WARN"/>
</category>
<category name="XELLERATE">
<priority value="WARN"/>
</category>
<category name="com.nexaweb.server">
<priority value="WARN"/>
</category>
<category name="com.opensymphony.oscache">
<priority value="WARN"/>
</category>
Here is the xml file for the database adapter
<?xml version="1.0"?>
<xdb_app_map     xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"     name = "mapping" xsi:noNamespaceSchemaLocation = "file:///c:/reconapp/xdb_app_map.xsd" >
     <target_application>
          <target_app_name>reconapp</target_app_name>
          <target_app_ver>1.0</target_app_ver>
          <target_app_provider>xxxx</target_app_provider>
     </target_application>
     <target_database><database name="Oracle"><properties /></database></target_database>
     <database_adapter>
          <operation name="create">
               <task table_name="idmuser" xeltask_type="insert">
                    <column col_name="USER_ID"          data_type="VARCHAR2"     data_typ_size="1024"     col_info="primary"     col_type="xellerate" xel_data_source="xel_usr_id"               required="true" />
                    <column col_name = "FNAME"     data_type = "VARCHAR2"     data_typ_size = "100"                              col_type = "xellerate" xel_data_source = "xel_usr_first_name"     required = "true"/>
                    <column col_name = "LNAME"     data_type = "VARCHAR2"     data_typ_size = "100"                              col_type = "xellerate" xel_data_source = "xel_usr_last_name"     required = "true"/>
                    <column col_name = "PASSWORD"     data_type = "VARCHAR2"     data_typ_size = "100"                              col_type = "xellerate" xel_data_source = "xel_usr_password"     required = "true"/>
                    <column col_name = "STATUS"     data_type = "VARCHAR2"     data_typ_size = "100"                              col_type = "xellerate" xel_data_source = "xel_usr_status"     required = "true"/>
                    <column col_name = "ORG"     data_type = "VARCHAR2"     data_typ_size = "100"                              col_type = "xellerate" xel_data_source = "xel_usr_org"     required = "true"/>
               </task>
          </operation>
          <operation name="reconcileCreateUpdate" enabled="true">
               <task table_name="idmuser" xeltask_type="select">
                    <column table_name="idmuser" col_name="USER_ID" data_type="VARCHAR2" data_typ_size="1024" col_info="primary" required="true" col_type="xellerate" xel_data_source="xel_usr_id" />
               </task>
               <task table_name="idmuser" xeltask_type="select">
                    <column table_name="idmuser" col_name="USER_ID" data_type="VARCHAR2" data_typ_size="1024" col_info="primary" required="true" col_type="xellerate" xel_data_source="xel_usr_id" />
                    <column table_name="idmuser" col_name="FNAME" data_type="VARCHAR2" data_typ_size="100" required="true" col_type="xellerate" xel_data_source="xel_usr_first_name" />
                    <column table_name="idmuser" col_name="LNAME" data_type="VARCHAR2" data_typ_size="100" required="true" col_type="xellerate" xel_data_source="xel_usr_last_name" />
                    <column table_name="idmuser" col_name="PASSWORD" data_type="VARCHAR2" data_typ_size="100" required="true" col_type="xellerate" xel_data_source="xel_usr_password" />
                    <column table_name="idmuser" col_name="STATUS" data_type="VARCHAR2" data_typ_size="100" required="true" col_type="xellerate" xel_data_source="xel_usr_status" />
               </task>
          </operation>
     </database_adapter>
     <mapping_data>
          <mapping_date>30/7/2008 00:00:00</mapping_date>
          <mapping_version>1.0</mapping_version>
     </mapping_data>
</xdb_app_map>
What can be the problem ?? is there something with recon timestamp to do with this ?

fixed it ...
missing operation reconDelete
added the following snippet
<operation name="reconcileDelete" enabled="false" />

Similar Messages

  • OIM Database Connector User not created

    I am using OIM 9.1.0.0 with connector pack 9.0.4.1. When I run trusted recon i see the new user appear in the recon manager, but the user is not created. When I open the event and click on Create User the user is created.
    But before this the recon event shows data missing.
    How can automate it ??

    The GTC framework will generate the rule for you if you configure the matching only property. Please take another look at the docs.
    Or you can follow PInk's suggestion and crate the rule manually.
    Best regards
    /M

  • Creation of a Database Schema is not working (Into a Sync Group)

    Hello,
    We have in: Sql Databases > Sync > Sync Group, a group called "SyncGroupViviendasProyectosVentasPruebas"
    If we go to "Sync Rules" and click "DEFINE SYNC RULES", no matter the databse we choose (there are 2), when we click in "REFRESH
    THE DATABASE SCHEMA" it dont works!
    It seems to be working but minutes later there is no Schema created.
    Why? Why the Create Database Schema is not working?
    Thanks,

    The detail error log from our service backend is:
    'Type=Microsoft.SqlServer.Management.Sdk.Sfc.InvalidVersionEnumeratorException,Message=Operation not supported on version 11.0 SqlAzureDatabase.,Source=Microsoft.SqlServer.SqlEnum,StackTrace=   at Microsoft.SqlServer.Management.Smo.XmlReadDoc.LoadFile(Assembly
    a&#44; String strFile)
       at Microsoft.SqlServer.Management.Smo.SqlObject.LoadInitDataFromAssemblyInternal(Assembly assemblyObject&#44; String file&#44; ServerVersion ver&#44; String alias&#44; StringCollection requestedFields&#44; Boolean store&#44;
    StringCollection roAfterCreation&#44; DatabaseEngineType databaseEngineType)
       at Microsoft.SqlServer.Management.Smo.SqlObject.LoadInitData(String file&#44; ServerVersion ver&#44; DatabaseEngineType databaseEngineType)
       at Microsoft.SqlServer.Management.Sdk.Sfc.ObjectCache.LoadElement(ObjectLoadInfo oli&#44; ServerVersion ver&#44; DatabaseEngineType databaseEngineType)
       at Microsoft.SqlServer.Management.Sdk.Sfc.ObjectCache.GetElement(ObjectLoadInfo oli&#44; ServerVersion ver&#44; DatabaseEngineType databaseEngineType)
       at Microsoft.SqlServer.Management.Sdk.Sfc.ObjectCache.GetAllElements(Urn urn&#44; ServerVersion ver&#44; DatabaseEngineType databaseEngineType&#44; Object ci)
       at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetObjectsFromCache(Urn urn&#44; Object ci)
       at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object connectionInfo&#44; Request request)
       at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object connectionInfo&#44; Request request),'
    It might be a collation/SMO issue after I do some research, so may I know that have you change the collation of you SQL Azure database? If yes, please try to use default collation and try again.
    Regards,
    Bowen

  • My database connectivity is not working inspite of installing sql express

    My database connectivity is not working inspite of installing sql express ...what should I do so that my database works

    Hello karan7,
    In addition to pvdg's post, can you reproduce this issue with a new fresh database? If you can this means it is a SQL Setup related problem. If you cannot, your database file may already corrupt.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Oracle Identity Manger 9.1.0 Recon not working

    I created a database connector using the generic technology connector, and tried to do reconciliation using the auto created scheduled task.
    But on reconciliation it gives the following error:
    java.lang.NullPointerException
    at com.thortech.xl.dataobj.util.tcAttributeSource.getAttrColumnName(Unknown
    Source)
    at com.thortech.xl.dataobj.tcRCE.createUserRecord(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.applyActionRules(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.checkDataSorted(Unknown Source)
    I have already tried this : https://metalink.oracle.com/metalink/plsql/f?p=130:14:6550648944033092167::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,461523.1,1,1,1,helvetica
    which says to
    If "User Type" and "Employee Role" are defined in the reconciliation field mappings for the "Xellerate User" process definition, then they should be updated and changed to "Xellerate Type" and "Role" respectively. The incorrect mappings may be easily corrected through the OIM Design Console (java client) using the following instructions:
    1. Query for the process definition of Xellerate User
    2. Go to Reconciliation Field Mappings tab
    3. Look for fields that are mapped to User Type and Employee Role.
    Note: If no fields are mapped to User Type and Employee Role, then nothing needs to be done. Stop here.
    4. Double click on the field that needs to be remapped and select the correct user attribute as follows
    a. Replace ‘User Type’ with ‘Xellerate Type’
    b. Replace ‘Employee Role’ with ‘Role’
    Note: If the mappings are already set to “Xellerate Type” and “Role”, then the mappings are already correct; no further action is required.
    My Configuration :
    OS for App server is Windows 2003 SP2 [ 5.2.3790 ]
    App Server type/version: Jboss 403SP1 [4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1date=200510231751)]
    No clustering
    DB Type/Version : Oracle 10.2.0
    OIM Connector pack 9041 [ MD5/filename: 8eb9eeb3a4357cd4b06d8ece318a2df1/as_oim_connector_pack_9041.zip ]
    OIM Version/Build Number: 9.1.0.1849.0
    JDK Version : Java version: 1.6.0_03,Sun Microsystems Inc.
    Java VM: Java HotSpot(TM) Client VM 1.6.0_03-b05,Sun Microsystems Inc.
    What can be the problem ?

    Here is the full log
    java.lang.NullPointerException
    at com.thortech.xl.dataobj.util.tcAttributeSource.getAttrColumnName(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.createUserRecord(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.applyActionRules(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.checkDataSorted(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.eventPostUpdate(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.finishDataReceived(Unknown Source)
    at com.thortech.xl.schedule.jms.reconOffline.ProcessOfflineReconMessages.finishReconciliationEvent(Unknown Source)
    at com.thortech.xl.schedule.jms.reconOffline.ProcessOfflineReconMessages.execute(Unknown Source)
    at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
    at com.thortech.xl.schedule.jms.messagehandler.ReconMessageHandlerMDB.onMessage(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:475)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:149)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:101)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:94)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:389)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:1077)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1379)
    at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:256)
    at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:904)
    at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:160)
    at org.jboss.mq.SpySession.run(SpySession.java:333)
    at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    at java.lang.Thread.run(Thread.java:619)
    11:39:37,656 INFO [STDOUT] 11:39:37,656 INFO [DATABASE] DB read: select err_key, err_code, err_desc, err_rowver, err_remedy, err_count, err_last_occurance, err_action, err_help_url, err_severity from err where err_code='DOBJ.GEN_ERROR'
    11:39:37,656 INFO [STDOUT] 11:39:37,656 INFO [PERFORMANCE] Query: DB: 0, LOAD: 0, TOTAL: 0
    11:39:37,656 INFO [STDOUT] 11:39:37,656 INFO [DATABASE] DB read: select evt.evt_key, evt.evt_name, evt.evt_package from dob dob, evt evt, dvt dvt where dob.dob_key=dvt.dob_key and dvt.evt_key=evt.evt_key and (dob.dob_name='com.thortech.xl.dataobj.tcRCE' or dob.dob_name='com.thortech.xl.dataobj.tcTableDataObj' or dob.dob_name='com.thortech.xl.dataobj.tcDataObj' ) and dvt.dvt_post_update_sequence>0 order by dvt.dvt_post_update_sequence
    11:39:37,687 INFO [STDOUT] 11:39:37,687 INFO [PERFORMANCE] Query: DB: 16, LOAD: 0, TOTAL: 16
    11:39:37,687 INFO [STDOUT] 11:39:37,687 ERROR [SERVER] Class/Method: tcDataObj/save Error :Data Update Failed
    11:39:37,687 INFO [STDOUT] 11:39:37,687 INFO [DATABASE] DB read: select err_key, err_code, err_desc, err_rowver, err_remedy, err_count, err_last_occurance, err_action, err_help_url, err_severity from err where err_code='DOBJ.UPDATE_FAILED'
    11:39:37,703 INFO [STDOUT] 11:39:37,703 INFO [PERFORMANCE] Query: DB: 0, LOAD: 0, TOTAL: 0
    11:39:37,703 INFO [STDOUT] 11:39:37,703 ERROR [DATABASE] Class/Method: tcDataBase/rollbackTransaction encounter some problems: Rollback Executed From
    java.lang.Exception: Rollback Executed From
    at com.thortech.xl.dataaccess.tcDataBase.rollbackTransaction(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.rollback(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.doRollback(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcRCE.finishDataReceived(Unknown Source)
    at com.thortech.xl.schedule.jms.reconOffline.ProcessOfflineReconMessages.finishReconciliationEvent(Unknown Source)
    at com.thortech.xl.schedule.jms.reconOffline.ProcessOfflineReconMessages.execute(Unknown Source)
    at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
    at com.thortech.xl.schedule.jms.messagehandler.ReconMessageHandlerMDB.onMessage(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:475)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:149)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:101)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:94)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:389)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:1077)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1379)
    at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:256)
    at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:904)
    at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:160)
    at org.jboss.mq.SpySession.run(SpySession.java:333)
    at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    at java.lang.Thread.run(Thread.java:619)
    11:39:37,765 INFO [STDOUT] 11:39:37,765 INFO [DATABASE] Class/Method: tcDataBase/setTransaction: ##########setTransaction getting called from: #######
    11:39:37,781 INFO [STDOUT] 11:39:37,781 ERROR [JMS] An error occurred while processing the off lined reconciliation events
    11:39:37,781 INFO [STDOUT] 11:39:37,781 INFO [PERFORMANCE] Message Process: com.thortech.xl.schedule.jms.reconOffline.ProcessOfflineReconMessages : 1906
    11:39:37,781 INFO [STDOUT] 11:39:37,781 ERROR [JMS] Processing Reconciliation Message with ID 81 failed.

  • OIM Database Connectors version upgrade

    Hi,
    I need to upgrade the OIM DB User Management Connector from release 9.0.4.1 to 9.0.4.4. and the OIM Database Application Table Connector from release 9.0.4.1 to 9.1.0.1. Any one knows which patches should be applied for these upgrades? I can't find any documentation regarding this.
    Thank you.
    Regards.

    First of all have a look at the read me which comes along with the connector patch and see if the upgrade you are trying to achieve is supported or not. For example:
    The *4 Deploying the Patch Set* section in the latest release *9.0.4.5* of the DB User Management Connector clearly says the following:
    Note:
    Direct upgrade to release 9.0.4.5 from release 9.0.4.3 or earlier releases is not supported.
    Same applies to DB App Tables Connector as well. See and confirm it by yourself because I don't have those versions of the connector.
    Thanks
    Sunny

  • Outlook Social Connector 2013 not working for linkedin

    Hi
    Outlook Social Connector 2013 is not able to connect to linkedin
    When using Social Network Accounts in Outlook 2013, tick linkedin, the entry of username/password immediately after hitting connect is showing "invalid username or password".
    Appears like it never really checked with the account.
    And
    No, there's in no strange signs/keys used in the password
    Yes, it's working from web entry
    Yes, it's working when using Windows Mail (win 8) linking it to my Hotmail account from same PC
    No, the Antivirus is not the issue, same with or without
    Yes, only one profile is used in Outlook 2013
    Yes, have tried to re-installed Office 2013
    Yes, my linked in profile is set to allow 3rd party applications to connect
    Yes I have tried another social network (Facebook) at this one is working
    And finally, yes I have looked at other treads in outlook forum, here, and "google" around for a day.
    Conclusion, the outlook 2013 addin is in some degree working, i'm very far from the only one with the issue, and no-one seems to have an idea what's really blocking for accessing the linkedin social networks from Outlook 2013, and a solution other than standard
    suggestions to try to re-install and set it up from scratch again. Not working...tried that.
    Any suggestions / ideas ?

    Hi
    Outlook Social Connector 2013 is not able to connect to linkedin
    When using Social Network Accounts in Outlook 2013, tick linkedin, the entry of username/password immediately after hitting connect is showing "invalid username or password".
    Appears like it never really checked with the account.
    And
    No, there's in no strange signs/keys used in the password
    Yes, it's working from web entry
    Yes, it's working when using Windows Mail (win 8) linking it to my Hotmail account from same PC
    No, the Antivirus is not the issue, same with or without
    Yes, only one profile is used in Outlook 2013
    Yes, have tried to re-installed Office 2013
    Yes, my linked in profile is set to allow 3rd party applications to connect
    Yes I have tried another social network (Facebook) at this one is working
    And finally, yes I have looked at other treads in outlook forum, here, and "google" around for a day.
    Conclusion, the outlook 2013 addin is in some degree working, i'm very far from the only one with the issue, and no-one seems to have an idea what's really blocking for accessing the linkedin social networks from Outlook 2013, and a solution other than standard
    suggestions to try to re-install and set it up from scratch again. Not working...tried that.
    Any suggestions / ideas ?
    I have the same problem .... I used it for a while without any problems. From a few days is this no longer works for linkedin...
    Boskaz Design

  • SQL Server 2012 Database Email is not working with AWS SES Services

    Hi Greetings to all,
    I have issue with the SQL Server Database mail Services. I have Configured Amazon Simple Email Services (AWS SES) as db profile in SQL Server and for last 2 years its working perfectly. But, from last two days on wards it is not working properly the Emails
    are queued but not sent to the recipients. the SES Services are working fine in outlook. but, not working in SQL Server. 
    Please help on this. tried changing the ports no result only one or two emails only sent remaining are failing.the info messages is as below
    Message
    The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 10 (2015-04-10T17:12:41). Exception Message: Cannot send mails to mail server. (The operation has timed out.).
    RehaanKhan. M

    Hello,
    Try to use port 465, port 2587 or port 587 instead of using port 25, as explained on the following articles.
    http://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-issues.html
    http://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-connect.html
    The first of above URLs is intended for troubleshooting SMTP issues in general.
    Verify you the mail account has not reached any limit. Limit of emails per day, per second, etc.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Dx4-1548dx notebook -power connector is not working.need replacement/ fixing? any idea?

    This is my second HP laptop malfunctioning as many years.  Power connector (slot where you plug in power cord) goes off and on at will. Laptop totally useless if I cannot charge the battary.  Look like I have to toss the laptop.  May be somebody out there can help me save my computer.  Thanks.

    Sir,
    I tried out with another charger but of no use. Also I tried out with the following steps suggested by HP:
    1) Flee power discharge.
    2) Remove and reseat RAM/HDD.
    1 thing:
    Also, sometime back, I contacted a service center for this problem, and they informed me that there is a transistor iin power line of the laptop which is not working. And we need to replace the laptop's mainboard to rectify the problem.
    Thanks.
    Karthik

  • Other database delete is not working on forall statement

    Dear all,
    My scenario is , i create a program, the program fetch the data from database x and i want to delete on the same x database but i am running this program at y database, so
    so i created a view
    create or replace view vw_ibs_pda_bills_x as
    SELECT *
            FROM ibs_pda_bills_x@testarch1my program
    Declare
          CURSOR c2 IS
          SELECT *
            FROM vw_ibs_pda_bills_x
           WHERE bill_month <= '31-dec-2008'; -- AND bpref_no = :cons;
           opr varchar2(10) := 'DELETE';
          TYPE tsch IS TABLE OF c2%ROWTYPE;
          vtsch      tsch;
          cnt        NUMBER := 0;
          stime      NUMBER;
          etime      NUMBER;
          DURATION   NUMBER;
          rcount     NUMBER;
          errorsd   PLS_INTEGER;
          ecode     NUMBER;
          val1   VARCHAR2 (100);
          val2   VARCHAR2 (100);
          val3   VARCHAR2 (100);
          val4   VARCHAR2 (100);
       BEGIN
          BEGIN
             stime := DBMS_UTILITY.get_time ();
             OPEN c2;
             LOOP
                FETCH c2
                BULK COLLECT INTO vtsch LIMIT 1000;
                IF vtsch.COUNT = 1000
                THEN
                   cnt := cnt + 1;
                END IF;
            If opr = 'INSERT' Then
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                          INSERT INTO dlul.ibs_pda_bills
                        VALUES vtsch (i);
            Else
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                        Delete from vw_ibs_pda_bills_x where bill_month = vtsch(i).bill_month;
            End if;
                EXIT WHEN c2%NOTFOUND;
             END LOOP;
             etime := DBMS_UTILITY.get_time ();
             DURATION := ((etime - stime) / 100) / 60;
             rcount :=
                 (cnt * 1000) + vtsch.COUNT - NVL (SQL%BULK_EXCEPTIONS.COUNT, 0);
         If opr = 'INSERT' Then
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS', DURATION, rcount);
         Else
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS-D', DURATION, rcount);
         End if;
             CLOSE c2;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                errorsd := SQL%BULK_EXCEPTIONS.COUNT;
                IF errorsd > 0
                THEN
                   FOR j IN 1 .. errorsd
                   LOOP
                      ecode := SQL%BULK_EXCEPTIONS (j).ERROR_CODE;
                      val1 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).sch_code;
                      val2 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bpref_no;
                      val3 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bill_month;
                      val4 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).service_code;
                  If opr = 'INSERT' Then         
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'INSERT');
              Else
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'DELETE');
              End if;
                   END LOOP;
                END IF;
          END;
       END pda_insert;the program want to do the delet option for all delete is not working. The program executed successful but the operation delete is not happening
    how to solve this issue.
    please help me
    kanish

    No error encountered in my log table
    the new workaround you said, that is instead of for all , already i tried for i in 1.. to like
    instead of forall delete i tried the following way
    Declare
          CURSOR c2 IS
    SELECT *
            FROM ibs_pda_bills_x@testarch1
           WHERE bill_month <= '31-dec-2008'; -- AND bpref_no = :cons;
           opr varchar2(10) := 'DELETE';
          TYPE tsch IS TABLE OF c2%ROWTYPE;
          vtsch      tsch;
          cnt        NUMBER := 0;
          stime      NUMBER;
          etime      NUMBER;
          DURATION   NUMBER;
          rcount     NUMBER;
          errorsd   PLS_INTEGER;
          ecode     NUMBER;
          val1   VARCHAR2 (100);
          val2   VARCHAR2 (100);
          val3   VARCHAR2 (100);
          val4   VARCHAR2 (100);
       BEGIN
          BEGIN
             stime := DBMS_UTILITY.get_time ();
             OPEN c2;
             LOOP
                FETCH c2
                BULK COLLECT INTO vtsch LIMIT 1000;
                IF vtsch.COUNT = 1000
                THEN
                   cnt := cnt + 1;
                END IF;
            If opr = 'INSERT' Then
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                          INSERT INTO dlul.ibs_pda_bills
                        VALUES vtsch (i);
            Else
                   /* fORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                     Delete from vw_ibs_pda_bills_x where to_char(bill_month,'dd-mm-rrrr') = to_char(vtsch (i).bill_month,'dd-mm-rrrr');*/
                     for i in 1..vtsch.count loop
                       delete ibs_pda_bills_x@testarch1 where to_char(bill_month,'dd-mm-rrrr') = to_char(vtsch (i).bill_month,'dd-mm-rrrr');
                     end loop; 
            End if;
                EXIT WHEN c2%NOTFOUND;
             END LOOP;
             etime := DBMS_UTILITY.get_time ();
             DURATION := ((etime - stime) / 100) / 60;
             rcount :=
                 (cnt * 1000) + vtsch.COUNT - NVL (SQL%BULK_EXCEPTIONS.COUNT, 0);
         If opr = 'INSERT' Then
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS', DURATION, rcount);
         Else
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS-D', DURATION, rcount);
         End if;
             CLOSE c2;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                errorsd := SQL%BULK_EXCEPTIONS.COUNT;
                IF errorsd > 0
                THEN
                   FOR j IN 1 .. errorsd
                   LOOP
                      ecode := SQL%BULK_EXCEPTIONS (j).ERROR_CODE;
                      val1 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).sch_code;
                      val2 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bpref_no;
                      val3 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bill_month;
                      val4 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).service_code;
                  If opr = 'INSERT' Then         
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'INSERT');
              Else
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'DELETE');
              End if;
                   END LOOP;
                END IF;
          END;
       END pda_insert;i am receiving the following error
    ORA-02055: distributed update operation failed; rollback required
    ORA-06531: Reference to uninitialized collection
    ORA-06512: at line 77
    ORA-06531: Reference to uninitialized collection
    kanish

  • Oracle 9.10 Database Configuration Assistant not working

    I have installed Oracle 9i Enterprise Edition on Windows XP, Pentium 4 and everything installed successfully but after installation, when I click on Database Configuration Assistant, nothing happened, no error displayed, mouse flashed for a while as loading something then came normal. Any idea please ?
    Even Database Migration Assistant also not working.
    I also could not find svrmgr utility in Oracle 9i to create a new database.
    Best Regards,
    Luqman

    The Server Manager was deprecated in 9i. Instead of using it you have to use the SQL*Plus. Do you have another JRE installed ?
    How to create a database manually in 9i
    Administrator's Guide for Windows Contents / Search / Index / PDF
    http://download-east.oracle.com/docs/cd/B10501_01/win.920/a95491.pdf
    Joel Pérez

  • OIM 10g Design console not working - Help Please

    I recently Installed OIm 10g using Jboss as App Server.
    When trying to run Designconsole after providing username/password I am getting the error message.
    Please help
    Error Keyword: DAE.CLIENT_NOT_BOUND
    Description: Database client has not bound to the server-side database object. Either the client database object has never bound to the server-side database object, or the server-side database object is no longer accessible.
    Remedy: Attempt to login again. If this fails, contact your system adminstrator.
    Action: E
    Severity: H
    Help URL:
    Detail:

    Design console uses RMI.
    Can you check if this port (RMI) has changed in your application server for any reason?
    you can reinstall the design console, as it wont take more than 10 minutes to do it. If in a fresh installation you have the same behaviour, I'd bid that you have a wrong RMI port.
    Regards,

  • Database Upgrade Agent not working for upgrading Oracle 9i DB to Oracle 10i

    Hi All,
    Presently I have completed my Oracle 10i installation on Solaris Server but I am facing an issue during the upgrade process of Oracle 9i to 10g. Whenever I try to upgrade the 9i databases to 10g using DBUA(Database Upgrade assistant) I am facing an issue that Data base not running from oracle home or pfile not found. The exact error message says:-
    The upgrade assistant failed in bringing up the database XIPCOTS. Oracle Home /opt/apps/home/oracle9i/product/releases/92/92 obtained from file /var/opt/oracle/oratab was used to connect to the database. Either the database is not running from Oracle Home /opt/apps/home/oracle9i/product/releases/92/92 or the correct Initialisation parameter file (pfile) was not found. To start the database , Oracle needs the pfile. Provide the full path name of the init file for the database XIPCOTS.
    In reality the XIPCOTS database is running fine in Oracle 9i and we can connect it using PL/SQL developer in windows.I have also provided the path of pfile but it is still not accepting the same.
    Path of pfile I provided :- /XIP/ofaroot/XIPCOTS/pfile/initXIPCOTS.ora
    Any help or suggestions would be greately appreciated.
    Our both Oracle 9i and 10g are installed on same Solaris server where solaris version is 9
    Installation path for 9i :- /opt/apps/home/oracle9i/product/releases/92/92
    Installation path for 10g :- /opt/apps/home/oracle/product/releases/10201
    Oracle 9i version :- 9.2.0.7
    Oracle 10g version :- 10.2.01
    Thanks in advance.
    Best Regards,
    Gourav Banerjee

    Can you please mention the specific folder name under oracle home where we need to put this pfile because there are two folder dbs and ds I have allready tried putting it inside dbs its not working. And my home path is correct I hope and is set for oracle 9i directories in the .oraenv file do we need to set it for oracle 10g before the DBUA upgrade.

  • In WAS 7.0 for windows custom connector VBscript  not working

    Hi ,
    I am using custom connector for windows 2003 server. It has java and vbscript .Java retrieve the dynamic values of servername,userid,password from the server it will pass to the VB .VB will connect to the windows 2003 server and it will create user,update user,delete user etc.I deliverd the connector which is working in the Jboss and Bea weblogic application servers.The customer asking for Websphere application server When i use the Websphere application Server 7.0 The "Vb script is not working for provisioning(Create user function) please help on this .example vbscript code as follows
    Set objNS = GetObject("WinNT:")
    Set objRemote = objNS.OpenDSObject("WinNT://" & strComputer, strAdminUser, strAdminPassword, ADS_SECURE_AUTHENTICATION Or ADS_USE_ENCRYPTION)
    Wscript.echo "Connection established successfully with system: " & strComputer
    Set objUser = objRemote.Create("user", strUserName) ' error is (null): A specified logon session does not exist.
    'It may already have been terminated.
    objUser.FullName = strFullName
    objUser.SetPassword strPassword
    objUser.SetInfo
    above mentioned line i am getting the error . I tried by the hard coding the values for that also same problem.But when remove the script from connector and run it outside its working .Please help on this

    There is usually a button bar with buttons to format text like Bold and Italic just above the text area where you compose and edit the message text.<br />
    That toolbar may also have a button to turn a text link into a clickable hyperlink (look for a chain like button).<br />
    You can select the link text and click that button to turn the link into a clickable hyperlink.<br />
    If you can't find the button then hover them all to check the tooltip of each (e.g. Insert hyperlink).

  • Database Scheduled Jobs not working

    Hai All,
    In my database Scheduled database jobs not working , but it work manullay fine...
    All parameter are correct including job_queue_processes.. Where I can start troubleshoot for this problem.
    Oracle: Oracle 9.2.0.1.0
    Platform : AIX
    Please help ...
    Shiju

    did you enabled the job?Unlikely. DBMS_SCHEDULER was a 10g innovation and as the OP mentioned, they're on 9i.
    Oracle: Oracle 9.2.0.1.0Cheers, APC

Maybe you are looking for

  • How do I access previous saved edit versions using Final Cut Pro X?

    Final Cut Pro X unexpectantly quit and when I reopened it all of my edits were lost. Is there a way to access the automatic save vault so I can get back all of my work? Please help! Thank you. Madeline

  • Activity Report iView

    Hello all, I have a question regarding Activity Report iView. We are using two portals. The support package level is SPS11 patch 6. The activity Report iView only works on one of the portals correctly. The data are displayed well. But the same iView

  • Fios is in my building - so why doesn't Verizon know that?

    Last month Verizon installed Fios in my 8 unit condo and currently has one of the unit owners outfitted with and paying for service.  Upon install, the engineer told my fellow condo association trustee (the one with the service) that the building was

  • Intermittent status_code_error service unavailable messages

    Hi everyone, I just got a new mac mini (2014) and overtime I go to download an app from the App Store or update an app that's already installed, or even in iBooks. When I navigate or download I'll get a "Status_Code_Error Service Unavailable" notific

  • Preview Won't Open for any image?

    I am running OS X Version 10.0.3 and when I try to use preview, I get "The Application Preview Cannot Be Opened -1712." I've read other discussion of this but have been unable to apply the fixes. For example, holding option when I click finder does o