Use of EXTPROC_CONNECTION_DATA which specified in tnslistener.ora

Hello experts
what is EXTPROC_CONNECTION_DATA which specified in tnslistener.ora file? and what will happen if i remove this entry from tnslistener.ora file? please enlight me
thanks
nidhi

It is a special service name that is used for external procedures
http://www.adp-gmbh.ch/ora/misc/extproc.html
If You don't use external procedures, You can remove it.

Similar Messages

  • In order to use mscomctl2dtpicker you must specify a license

    I receive a message "in order to use mscomctl2dtpicker you must specify a license.  Use Licenses.Add to add the license string to the Licenses collection"
    I get this when opening a transcription application which uitilizes MS word.  I am running MS Office 2010(32 bit) on Win7 (64 bit).  I do not know what this message means nor how to resolve any help or direction would be appreciated.

    Hi,
    This should be due to the ActiveX controls that have been referenced within this "transcription application" requires for a license.
    Visual Basic has two ways of using an ActiveX control legally:
    Include the ActiveX control license within the compiled executable.
    Load the license for an ActiveX control during run-time before loading the actual control.
    Both ways ensure that the license for the control is checked (either during development or during run-time) prior to the control being used.
    So for this issue, you might need to contact the designer of this application for further assistance.
    Here is the reference you'll need:
    http://support.microsoft.com/KB/190153
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How do I go back to Firefox 5.0? I need to use Selenium IDE, which is not yet compatible with 6.0.

    How do I go back to Firefox 5.0? I need to use Selenium IDE, which is not yet compatible with 6.0.

    The link is to the latest update to 4.o which was 4.0.1
    The 4.0.1 and 5.0 are two separate versions as installing 4.0.1 over 5.0 will just give you the old 4.0.1 as the end result.
    The 5.0 is partially as a security update in place of 4.0.2.
    The Skype extension was only for to make it so you can dial phone numbers on a web page in the separate Skype program right so if you were not using it then no need for the Skype extension for the separate Skype application to work.

  • I want to be able to totally block the FaceTime functionality in my home network.  I would like to do this at the router level.  Does anyone know the hostname or IP address that the FaceTime application uses? Or which port it connects to?

    I want to be able to totally block the FaceTime functionality in my home network so my 4 kids aren't using the Facetime feature- It was easy for Skype just had to enter the work Skype on my Router Security list- and it denies access. I would like to do this at the router level for FaceTime? Only site I find in init.ess.apple.com - is this the startup site for Facetime?   Does anyone know a site I can block, hostname or IP address that the FaceTime application uses? Or which port it connects to?

    I would presume so, but it might be worth your while to experiment and play around with different combinations to see if you can block FaceTime while keeping Game Center open.  Good luck!

  • How to use composite entities which driven by different PU via hibernate

    Hi experts,
    There are 2 different persistence unit in my project.
    PU_A: Application entities, that can execute all crud operations.
    PU_B: This one has some views which contains outside data. I can just read data from here
    But i want to create foreign key in some entities which are in PU_A by using immutable-entity which managed by PU_B persistence-unit.
    If you could view on following snippets. I have IncomingPaperwork entity which is driven by PU_A and ProjectView which is driven by PU_B.
    After i applied this issue; When deploy the application exception that is below occured :
    30-Jan-2013 15:13:05 o'clock EET> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
         at weblogic.ejb.container.deployer.EJBModule$1.execute(EJBModule.java:326)
         at weblogic.deployment.PersistenceUnitRegistryInitializer.setupPersistenceUnitRegistries(PersistenceUnitRegistryInitializer.java:62)
         at weblogic.servlet.internal.WebAppModule.initPersistenceUnitRegistry(WebAppModule.java:411)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:365)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         Truncated. see log file for complete stacktrace
    Caused By: org.hibernate.AnnotationException: @OneToOne or @ManyToOne on com.acme.model.entity.IncomingPaperwork.projectView references an unknown entity: com.acme.integrationmodel.entity.ProjectView
         at org.hibernate.cfg.ToOneFkSecondPass.doSecondPass(ToOneFkSecondPass.java:81)
         at org.hibernate.cfg.AnnotationConfiguration.processEndOfQueue(AnnotationConfiguration.java:456)
         at org.hibernate.cfg.AnnotationConfiguration.processFkSecondPassInOrder(AnnotationConfiguration.java:438)
         at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:309)
         at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1162)
         Truncated. see log file for complete stacktrace
    >
    [03:13:05 PM] #### Deployment incomplete. ####
    Is there a way to achieve this? Any suggestions?
    Thanks in advance
    ___persistence.xml___
    <persistence xmlns="http://java.sun.com/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
    version="2.0">
    <persistence-unit name="PU_A" transaction-type="JTA">
    <description>This unit manages all application entities</description>
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>jdbc/A_DS</jta-data-source>
    <class>com.acme.model.entity.IncomingPaperwork</class>
    <properties>
    <property name="hibernate.jndi.url" value="t3://localhost:7101"/>
    <!--DataSource-->
    <property name="hibernate.connection.datasource"
    value="jdbc/A_DS"/>
    <property name="hibernate.transaction.manager_lookup_class"
    value="org.hibernate.transaction.WeblogicTransactionManagerLookup"/>
    <property name="hibernate.dialect"
    value="org.hibernate.dialect.Oracle10gDialect"/>
    <property name="hibernate.hbm2ddl.auto" value="update"/>
    <property name="hibernate.show_sql" value="true"/>
    <property name="hibernate.format_sql" value="true"/>
    <property name="hibernate.use_sql_comments" value="true"/>
    <property name="hibernate.current_session_context_class" value="jta"/>
    <property name="hibernate.archive.autodetection" value="jar,class"/>
    </properties>
    </persistence-unit>
    <persistence-unit name="PU_B" transaction-type="JTA">
    <description>This unit manages all integration entities</description>
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>jdbc/B_DS</jta-data-source>
    <class>com.acme.integrationmodel.entity.ProjectView</class>
    <properties>
    <property name="hibernate.jndi.url" value="t3://localhost:7101"/>
    <!--DataSource-->
    <property name="hibernate.connection.datasource"
    value="jdbc/B_DS"/>
    <property name="hibernate.transaction.manager_lookup_class"
    value="org.hibernate.transaction.WeblogicTransactionManagerLookup"/>
    <property name="hibernate.dialect"
    value="org.hibernate.dialect.Oracle10gDialect"/>
    <property name="hibernate.hbm2ddl.auto" value="validate"/>
    <property name="hibernate.show_sql" value="true"/>
    <property name="hibernate.format_sql" value="true"/>
    <property name="hibernate.use_sql_comments" value="true"/>
    <property name="hibernate.current_session_context_class" value="jta"/>
    </properties>
    </persistence-unit>
    </persistence>
    ___IncomingPaperwork.class___
    import com.arsivist.structure.BaseEntity;
    import com.acme.integrationmodel.entity.ProjectView;
    import com.acme.model.entity.listener.EntityListener;
    import com.acme.model.entity.listener.IncomingPaperworkListener;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.EntityListeners;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.Id;
    import javax.persistence.JoinColumn;
    import javax.persistence.ManyToOne;
    import javax.persistence.SequenceGenerator;
    import javax.persistence.Table;
    @Entity(name = "IncomingPaperwork")
    @Table(name = "INCOMINGPAPERWORKS")
    @SequenceGenerator(name = "INCOMINGPAPERWORK_SEQ", sequenceName = "INCOMINGPAPERWORK_SEQ", allocationSize = 1)
    @EntityListeners( { EntityListener.class, IncomingPaperworkListener.class })
    public class IncomingPaperwork extends BaseEntity
    private Company company;
    private ProjectView projectView;
    public IncomingPaperwork()
    entityName = "IncomingPaperwork";
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "INCOMINGPAPERWORK_SEQ")
    @Column(name = "ID")
    public int getId()
    return id;
    public void setId(int id)
    this.id = id;
    public void setCompany(Company company)
    this.company = company;
    @ManyToOne(targetEntity = com.acme.model.entity.Company.class, cascade = { })
    @JoinColumn(name = "COMPANYID", nullable = false)
    public Company getCompany()
    return company;
    public void setProjectView(ProjectView projectView)
    this.projectView = projectView;
    @ManyToOne(targetEntity = com.acme.integrationmodel.entity.ProjectView.class, cascade = { })
    @JoinColumn(name = "PROJECTVIEWID")
    public ProjectView getProjectView()
    return projectView;
    ___ProjectView.class___
    import com.arsivist.structure.BaseEntityView;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import org.hibernate.annotations.Immutable;
    import org.hibernate.annotations.Subselect;
    @Entity(name = "ProjectView")
    @Immutable
    @Subselect("SELECT * FROM ProjectView")
    public class ProjectView extends BaseEntityView
    private String code;
    private String name;
    public ProjectView()
    entityName = "ProjectView";
    public ProjectView(int id, String name)
    entityName = "ProjectView";
    this.id = id;
    this.name = name;
    @Id
    @Column(name = "ID")
    public int getId()
    return id;
    public void setId(int id)
    this.id = id;
    public void setCode(String code)
    this.code = code;
    @Column(name = "CODE")
    public String getCode()
    return code;
    public void setName(String name)
    this.name = name;
    @Column(name = "NAME")
    public String getName()
    return name;
    @Override
    public String toString()
    return "" + getName();
    Edited by: webyildirim on Jan 30, 2013 5:36 AM

    Not quite what I meant - I was suggesting you load the entity immediately after reading it from PU_B, or anytime before associating it into PU_A, so before the merge. What you have not shown though is any code on how you are obtaining IntegrationDepartment and integrating it into PU_A, or what you mean by it is returning a refreshed version of Topic. This problem could also be the result of how your provider works internally - this is a TopLink/EclipseLink forum post so I cannot really tell you why you get the exception other than it would be expected to work as described with EclipseLink as the JPA provider.
    So the best suggestions I can come up with are prefetch your entity, try posting in a hibernate forum, or try using EclipseLink/TopLink so someone here might be better able to help you with any problems that arise.
    Best Regards,
    Chris

  • I cracked my screen. I want to use other monitor which I had one. I bought Apple Mini-DP to VGA adapter. It worked. It means I can see ADDITIONAL screen. However I want to use this monitor for the main screen. How can I do?? Please help.

    I cracked my screen. I want to use other monitor which I had one. I bought an Apple Mini-DP to VGA adapter. It worked. It means I can see ADDITIONAL screen. However I want to use this monitor for the main screen. How can I do?? Please help.

    You have the display set in Extended Desktop mode. The Menu Bar and Dock will be on the MacBook display and your background screen on the monitor. In System Preferences>Display on the MacBook screen there should be an Arrangement tab when you have the MacBook hooked up to the monitor and both screens working. When you click the Arrangement tab do you see two monitors side by side? One of them will have a Menu Bar at the top. Just click on the Menu Bar and drag it to the second monitor. That will make the second monitor your main screen. You can now use your MacBook in Clamshell Mode with a wired or Bluetooth keyboard and mouse.  http://support.apple.com/kb/HT3131 When you disconnect from the monitor your Menu Bar will automatically change back to the MacBook.

  • I lost my Iphone 3GS. My brother has given me his Iphone 4 now. We both use the same notebook to update and sync our phones. I would like to know how can i reconnect back to my account using the Iphone which was previous used by my brother.

    I lost my Iphone 3GS. My brother has given me his Iphone 4 now. We both use the same notebook to update and sync our phones. I would like to know how can i reconnect back to my account using the Iphone which was previous used by my brother.

    If you are saying that you both have iCloud accounts and use the same icloud ID, then yes, the contacts will be deleted.  The idea is that all devices using the same icloud ID are kept in sync.  You need to use different IDs.  You can keep the same iTunes ID so you can share the songs and apps.  But use different icloud IDs.

  • How to download itunes for windows  7 64 bit using other system which is running 32 bit

    hi
    i am trying to download itunes 64 bit for my system using other system which is running 32 bit

    Direct links to the installers:
    iTunes 12.1.2.27  (64-bit) - iTunes6464Setup.exe
    iTunes 12.1.2.27 (64-bit "for older video cards") - itunes64setup.exe
    The second of these - which is actually the 32-bit application with a 64-bit installer - should be used if you get a warning about video card incompatibility when you install the standard 64-bit version, but also may resolve issues with playback, QuickTime integration, and problems with third-party applications (including Outlook).

  • I downloaded and installed Lion on an external hard drive using my laptop which is running Snow Leopard I have now decided that I want to install Lion on my Laptop, but when I go to the App store and click on my purchases it will not download

    I downloaded and installed Lion on an external hard drive using my laptop which is running Snow Leopard I have now decided that I want to install Lion on my Laptop, but when I go to the App store and click on my purchases it will not download again

    Thanks Dirk,
                         Tried your suggestion various ways but it had no effect the download button was still greyed out and the install button would not activate will keep trying to find a solution. I dont want to boot from the external hard drive that has Lion on mainly because it is a usb HD and the connection to my wireless modem slows the connection rate and downloading would take about ten hours

  • I cant access my game kingdoms of camelot on mozilla this has been an ongoing problem and while i would love to use firefox i cannot play my game therefore i have to use regular explorer which sucks can you help

    I am able to get on facebook but am not able to access any of the games i play kingdoms of camelot and farmville. Although i would love to use firefox i am not able to play my games therefore am forced to use regular explorer which is slooooow and really sux! what do i have to do in order to get this problem resolved

    I should have explained further. The game opens in a new window over to the upper left of my screen, leaving the original page underneath. I tried minimizing it so that I could get to my toolbar and did the View > Zoom > Reset. This has no effect. The lower portion of the game is still not showing. Using other browsers the window or frame of the game is much larger, therefore everything shows.

  • I'm running OS 10.6.8 and wondering if I should upgrade. I'm also using safari 5, which is about 3 versions ago. Experience says if it ain't broke, don't fix it, but am I missing out?

    I'm running OS 10.6.8 and wondering if I should upgrade. I'm also using safari 5, which is about 3 versions old. Experience says if it ain't broke, don't fix it, but am I missing out?

    One option is to create a new partition (~30- 50 GB), install the new OS, and ‘test drive’ it. If you like/don’t like it it, you can then remove the partition. Do a backup before you do anything. By doing this, if you don’t like it you won’t have to go though the revert process.
    Check to make sure your applications are compatible.
    Application Compatibility
    Applications Compatibility (2)

  • How can I use this account without specify credit cards, only for free applications ?

    How can I use this account without specify credit cards, only for free applications ?

    Click here and follow the instructions.
    (94222)

  • I have redeemed my iTunes giftcard (which was accepted without verification) however when I tried to make a purchase, I am required to verify my identity, and thus I cannot use the giftcard which I HAVE REDEEMED. Is there any way I can un-redeem it?

    I have redeemed my iTunes giftcard (which was accepted without verification; it only needed my password)
    However when I tried to make a purchase, I am required to verify my identity, and thus I cannot use the giftcard which I HAVE REDEEMED. Is there any way I can un-redeem it? I am currently trying to enter all of the possibilities for my questions, and my iPad is new, so the serial number is not registered with my account. According to support, no purchases have been made in my account, so I can't verify my identity through credit card. Please help!~

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    If you just want to have the card un-redeemed, use the form.
    (123638)

  • How to use the DLLs which created from c++ in Java?

    And How to use the DLLs which created from JNI in C++?

    Huh?
    Are you asking how to do JNI - you should read the tutorial.
    Are you asking how to load it - then use System.loadLibrary()
    Are you asking what to do with the output from javah - put it in a C file and write some code, compile it into a dll.

  • Is it possible to read the file using File Adapter which is in client machi

    Is it possible to read the file using file Adapter which is in client machine(on the same network).Then what is thee need of FTP Adapter?

    You can achieve that by exposing your client machine as a drive, then you can go using file adapter.
    FTP adapter will help you to communicate with different machine which is in different network.
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    Thanks,
    Vijay

Maybe you are looking for

  • Fatal Error in Report Generation.

    Hi, When i am trying to run the report from Jdeveloper, i am getting the following error in JSPX page Page Error: The page you are trying to access is having some problems and the following is the log is created in jdeveloper server console. javax.fa

  • Cannot make international call

    Hi, I am having problem to make international call. Below is the config. 022247: *Nov 25 02:08:27.598: %SYS-5-CONFIG_I: Configured from console by admin on vty0 (10.53.5.38)sh run Building configuration... Current configuration : 22590 bytes ! Last c

  • Problem in Database startup

    I installed oracle 8.0.6.0 on Windows 2003 .During the Installation there was no error . After installing i found that services were stop,when i try to start the services it did not start.I check the event viewer and i found the following error Fault

  • 3Gs not playing movies properly -  help !

    I have recently tried playing movies on my new iphone 3gs and now some movies have big green blobs flashing up all over the screen,all these movies played on my last iphone without a problem. P.s. these are mp4's

  • Do we need to apply DST patches on ASM Home?

    Hi there, I have a question. Do we have to apply DSTv11 patches and its inetrm patch (7695070) on ASM Home? We have 10.2.0.4 DB's on Sun Solaris and AIX boxes. I would appreciate , if you could provide this information. Thanks in advance, RM.