Invoke a WebService using PLSQL - Oracle 11 g

Hi friends,

I need to invoke a web service using PLSQL - oracle 11 g.

I need to pass XML data and get an XML response.

This time, for a COP, I need to get the same entries in the XML response.

could you please help me.

Thank you and best regards,

Arun Thomas T

In this case you certainly many firewalls between the VLANS and subnets and a Web proxy.

If the web service must be reached via proxy, use the proxy feature of UTL_HTTP.

With regard to the tests from a browser. You can test the web service via a browser by asking its definition. Just add the text ? WSDL the Web service endpoint URL (that you had initially).

It is not really feasible to call web service with an envelope using only a browser. In this case, consider a tool such as SoapUI (the Open Source version / free)- because it lets you test web services easily.

SoapUI and the proxy details are also given in that I talked to you on the display with the example code.

Tags: Database

Similar Questions

  • Call a Java Webservice using PLSQL in Oracle

    Hello Experts

    Greetings of the day!

    We are working on a reuirement to call a Web service based on Java (it's in SOA environment) environment EBS PLSQL to get the answer based on some input parameters.

    This webservice is password protected, here are the challenges that we faced:

    (1) we are not able to set the username and password required to connect to the service when it is called from PLSQL.

    (2) even if we connect to the Web service, there is a challenge to store the response of Webservice.

    If one has ever faced such a requirement or had the idea of how to implement, please let us know.

    Any idea will be highly appreciated.

    Thank you

    Mirza Yahya

    Hi Mizra,

    do not too complicated.

    To retrieve the value of XML, you can follow one of the example 2 below depending on the version of DB you have. If you have 11 GR 2 or more then use the second method:

    declare
       l_xml_response         xmltype;
       l_xml_ns1              varchar2(200);
       l_response_address1    varchar2(200);
       l_response_address2    varchar2(200);
       l_response_address3    varchar2(200);
       l_response_address4    varchar2(200);
       l_response_city        varchar2(200);
       l_response_state       varchar2(200);
       l_response_county      varchar2(200);
    
    begin
       l_xml_response :=    xmltype('
    
      
        urn:936AE390E76011E4BFC99D8059113E1A
        
          http://www.w3.org/2005/08/addressing/anonymous
        
        
          http://www.w3.org/2005/08/addressing/anonymous
        
      
      
        
          00282
          00001
          
          
          6200 E Sam Houston Pkwy N                                                                           
          ?
          
          
          Houston                     
          Harris                   
          TX
          770497260
          
          
          N
          2
          
          
          
          
          
          B
          SUCCESS
          
        
      
    ');
    
       l_xml_ns1:= 'xmlns:ns1="http://xmlns.oracle.com/Group1AddressValidateService/AddressValidation"';
    
       -- pre 11gR2 (using extractvalue)
    
       select extractvalue( l_xml_response, '//ns1:ADDRESS_LINE1', l_xml_ns1) as address1
            , extractvalue( l_xml_response, '//ns1:ADDRESS_LINE2', l_xml_ns1) as address2
            , extractvalue( l_xml_response, '//ns1:ADDRESS_LINE3', l_xml_ns1) as address3
            , extractvalue( l_xml_response, '//ns1:ADDRESS_LINE4', l_xml_ns1) as address4
            , extractvalue( l_xml_response, '//ns1:CITY'         , l_xml_ns1) as city
            , extractvalue( l_xml_response, '//ns1:STATE'        , l_xml_ns1) as state
            , extractvalue( l_xml_response, '//ns1:COUNTY'       , l_xml_ns1) as county
         into l_response_address1
            , l_response_address2
            , l_response_address3
            , l_response_address4
            , l_response_city
            , l_response_state
            , l_response_county
         from dual;   
    
       dbms_output.put_line('Pre 11gR2:');
       dbms_output.put_line('Address1 :'||l_response_address1);
       dbms_output.put_line('Address2 :'||l_response_address2);
       dbms_output.put_line('Address3 :'||l_response_address3);
       dbms_output.put_line('Address4 :'||l_response_address4);
       dbms_output.put_line('City     :'||l_response_city);
       dbms_output.put_line('State    :'||l_response_state);
       dbms_output.put_line('County   :'||l_response_county);
    
       -- 11gR2 onwards
       select x.address1
            , x.address2
            , x.address3
            , x.address4
            , x.city
            , x.state
            , x.county
         into l_response_address1
            , l_response_address2
            , l_response_address3
            , l_response_address4
            , l_response_city
            , l_response_state
            , l_response_county
         from xmltable( xmlnamespaces( default 'http://xmlns.oracle.com/Group1AddressValidateService/AddressValidation'
                                     , 'http://xmlns.oracle.com/Group1AddressValidateService/AddressValidation' as "ns1"
                                     )
                      , '//ADDRESS_VALIDATION_RESPONSE'
                       passing l_xml_response
                       columns "ADDRESS1" varchar2(200) path 'ns1:ADDRESS_LINE1'
                             , "ADDRESS2" varchar2(200) path 'ns1:ADDRESS_LINE2'
                             , "ADDRESS3" varchar2(200) path 'ns1:ADDRESS_LINE3'
                             , "ADDRESS4" varchar2(200) path 'ns1:ADDRESS_LINE4'
                             , "CITY"     varchar2(200) path 'ns1:CITY'
                             , "STATE"    varchar2(200) path 'ns1:STATE'
                             , "COUNTY"   varchar2(200) path 'ns1:COUNTY'
              ) x;
    
       dbms_output.put_line('------------------');
       dbms_output.put_line('11gR2 onwards:');
       dbms_output.put_line('Address1 :'||l_response_address1);
       dbms_output.put_line('Address2 :'||l_response_address2);
       dbms_output.put_line('Address3 :'||l_response_address3);
       dbms_output.put_line('Address4 :'||l_response_address4);
       dbms_output.put_line('City     :'||l_response_city);
       dbms_output.put_line('State    :'||l_response_state);
       dbms_output.put_line('County   :'||l_response_county);
    
    end;
    /
    

    Here it the output of the above script:

    Pre 11 GR 2:

    Address1: 6200 E Sam Houston Parkway N

    Address2:?

    Address3:

    Address4:

    City: Houston

    State: TX

    County: Harris

    ------------------

    11 GR 2 from:

    Address1: 6200 E Sam Houston Parkway N

    Address2:?

    Address3:

    Address4:

    City: Houston

    State: TX

    County: Harris

    Kind regards.

    Alberto

  • How to call a report from Oracle 10g lies in the application server to the server of DB using PLSQL

    Hi all

    I have the following requirement

    I have a 10g Oracle compiled report and giving PDF as output...

    1. I want to call the same report server DB using PLSQL to generate reports in bulk.

    2. the production of the above-mentioned reports should be in the path specific and with the specific name

    Please help me on this

    Kind regards

    SH

    What you want is called "Event Driven publication":

    http://docs.Oracle.com/CD/E17904_01/bi.1111/b32121/pbr_evnt001.htm#RSPUB23700

  • Post on a WSDL using PLSQL method

    Hi all

    I'm trying to create a shipment on a party system I tried via WSDL. I use PLSQL for the same thing.

    using UTL_HTTP and already mentioned "Re: PLSQL webservice call" post. Problem is when I run the procedure I get an error message indicating the bad arguments if I use command below

    1. UTL_HTTP. SET_HEADER (t_http_req, ' Content-Length', LENGTH (t_request_body));

    If I do not use this command, then I get an error indicating the length required. We are on Oracle 11 g.

    Concerning

    Ashu

    Hi all

    I understood the question here. It was that my Soap envelope has been more than 32K and so it was a failure. So I used the loop to break into piece of 32 k each.

    http://www.oraclecafe.com/2014/08/calling-wsdl-webservice-from-plsql/@.

  • Application is not able to connect using the Oracle SCAN chain

    Dear Oracle gurus

    We have 11g r2 11.2.0.3.0 2 cluster nodes

    We have configured the scanning using scan-vip single using/etc/hosts file resolution

    Our app to work correctly using the string of double local Vip (10g method)

    Scan works very well in the database server when we check using sqlplus

    Works very well in the database server Oracle SCAN

    Sqlplus DB - 1 test bench / testbed@my-db-scan:1521 / orcl

    When we use it below URL JDBC in Tomcat Version-6 then "doesn't allow not to connect even if there will connect a while but connectivity isn't stable when we reboot the tomcat"

    Hibernate.Connection.URL=jdbc:Oracle:Thin:@My-DB-Scan:1521/ORCL

    Application is not able to connect using the Oracle SCAN chain

    [May 13, 2013 12:48:24] [INFO] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: init() Called.
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: adding the data manager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: *.
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 1: com.cmp.mysm.hibernate.core.system.staff.HStaffDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 2: com.cmp.mysm.hibernate.core.system.systemparameter.HSystemParameterDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 3: com.cmp.mysm.hibernate.core.system.profilemanagement.HProfileDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 4: com.cmp.mysm.hibernate.core.system.accessgroup.HAccessGroupDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 5: com.cmp.mysm.hibernate.systemaudit.HSystemAuditDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 6: com.cmp.mysm.hibernate.datasource.database.HDatabaseDSDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 7: com.cmp.mysm.hibernate.datasource.ldap.HLDAPDatasourceDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 8: com.cmp.mysm.hibernate.sessionmanager.HSessionManagerDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 9: com.cmp.mysm.hibernate.sessionmanager.HASMDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 10: com.cmp.mysm.hibernate.digestconf.HDigestConfDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 11: com.cmp.mysm.hibernate.radius.clientprofile.HClientProfileDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 12: com.cmp.mysm.hibernate.externalsystem.HExternalSystemInterfaceDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 13: com.cmp.mysm.hibernate.servermgr.drivers.HDriverDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 14: com.cmp.mysm.hibernate.servermgr.drivers.subscriberprofile.database.HDatabaseSubscriberProfileDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 15: com.cmp.mysm.hibernate.servermgr.service.HServiceDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 16: com.cmp.mysm.hibernate.servicepolicy.auth.HAuthServicePoilcyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 17: com.cmp.mysm.hibernate.servicepolicy.acct.HAcctServicePoilcyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 18: com.cmp.mysm.hibernate.servicepolicy.dynauth.HDynAuthServicePoilcyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 19: com.cmp.mysm.hibernate.servermgr.server.HServerDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 20: com.cmp.mysm.hibernate.servermgr.service.HServiceDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 21: com.cmp.mysm.hibernate.servermgr.plugin.HPluginDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 22: com.cmp.mysm.hibernate.rm.ippool.HIPPoolDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 23: com.cmp.mysm.hibernate.servermgr.eap.HEAPConfigDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 24: com.cmp.mysm.hibernate.servermgr.alert.HAlertListenerDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 25: com.cmp.mysm.hibernate.servermgr.gracepolicy.HGracePolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 26: com.cmp.mysm.hibernate.radius.clientprofile.HClientProfileDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 27: com.cmp.mysm.hibernate.radius.dictionary.HDictionaryDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 28: com.cmp.mysm.hibernate.radius.policies.accesspolicy.HAccessPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 29: com.cmp.mysm.hibernate.radius.policies.radiuspolicy.HRadiusPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 30: com.cmp.mysm.hibernate.radius.radtest.HRadiusTestDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 31: com.cmp.mysm.hibernate.radius.bwlist.HBWListBLManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 32: com.cmp.mysm.hibernate.rm.concurrentloginpolicy.HConcurrentLoginPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 33: com.cmp.mysm.hibernate.wsconfig.HWebServiceConfigDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 34: com.cmp.mysm.hibernate.diameter.dictionary.HDictionaryDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 35: com.cmp.mysm.hibernate.servicepolicy.diameter.naspolicy.HDiameterNASPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 36: com.cmp.mysm.hibernate.servicepolicy.diameter.creditcontrolpolicy.HCreditControlPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 37: com.cmp.mysm.hibernate.servicepolicy.diameter.eappolicy.HEAPPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 38: com.cmp.mysm.hibernate.servermgr.drivers.HDiameterDriverDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 39: com.cmp.mysm.hibernate.servermgr.transmapconf.HTranslationMappingConfDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 40: com.cmp.mysm.hibernate.diameter.diameterpolicy.HDiameterPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 41: com.cmp.mysm.hibernate.servicepolicy.rm.cgpolicy.HCGPolicyDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 42: com.cmp.mysm.hibernate.reports.userstat.HUserStatisticsDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 43: com.cmp.mysm.hibernate.diameter.routingconf.HDiameterRoutingConfDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 44: com.cmp.mysm.hibernate.diameter.diameterpeerprofile.HDiameterPeerProfileDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 45: com.cmp.mysm.hibernate.diameter.diameterpeer.HDiameterPeerDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 46: com.cmp.mysm.hibernate.core.base.HGenericDataManager
    [May 13, 2013 12:48:24] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: *.
    [May 13, 2013 12:48:24] [INFO] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: Data Manager was initialized successfully.
    [May 13, 2013 12:48:29] [ERROR] [0.0.0.0] - unknown [CONFIG MANAGER]: error during the Configuration Manager operation, reason: failed to open the connection
    [May 13, 2013 12:48:29] [TRACE] [0.0.0.0] - unknown [CONFIG MANAGER] com.cmp.mysm.datamanager.DataManagerException: failed to open the connection
    at com.cmp.mysm.hibernate.core.system.systemparameter.HSystemParameterDataManager.getList (HSystemParameterDataManager.java:45)
    at com.cmp.mysm.blmanager.core.system.systemparameter.SystemParameterBLManager.getList (SystemParameterBLManager.java:71)
    at com.cmp.mysm.web.core.system.cache.ConfigManager.init (ConfigManager.java:47)
    at com.cmp.mysm.web.core.system.servlet.myServlet.init (myServlet.java:27)
    at javax.servlet.GenericServlet.init(GenericServlet.java:212)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1206)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1026)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4421)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4734)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:840)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:463)
    at org.apache.catalina.core.StandardService.start(StandardService.java:525)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:754)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:595)
    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.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
    at org.apache.catalina.startup.Bootstrap.main (Bootstrap.java:414)
    Caused by: org.hibernate.exception.GenericJDBCException: failed to open the connection
    at org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:140)
    at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:128)
    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:52)
    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:449)
    at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:167)
    at org.hibernate.jdbc.AbstractBatcher.prepareQueryStatement(AbstractBatcher.java:161)
    at org.hibernate.loader.Loader.prepareQueryStatement(Loader.java:1596)
    at org.hibernate.loader.Loader.doQuery(Loader.java:717)
    at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:270)
    at org.hibernate.loader.Loader.doList(Loader.java:2294)
    at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2172)
    at org.hibernate.loader.Loader.list(Loader.java:2167)
    at org.hibernate.loader.criteria.CriteriaLoader.list(CriteriaLoader.java:119)
    at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1706)
    at org.hibernate.impl.CriteriaImpl.list(CriteriaImpl.java:347)
    at com.cmp.mysm.hibernate.core.system.systemparameter.HSystemParameterDataManager.getList (HSystemParameterDataManager.java:43)
    ... 21 more
    Caused by: java.sql.SQLException: an attempt by a client to fund a connection has expired.
    at com.mchange.v2.sql.SqlUtils.toSQLException(SqlUtils.java:106)
    at com.mchange.v2.sql.SqlUtils.toSQLException(SqlUtils.java:65)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:527)
    at com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource.getConnection(AbstractPoolBackedDataSource.java:128)
    at org.hibernate.connection.C3P0ConnectionProvider.getConnection(C3P0ConnectionProvider.java:78)
    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:446)
    ... more than 33
    Caused by: com.mchange.v2.resourcepool.TimeoutException: a client has expired while waiting to acquire a resource of com.mchange.v2.resourcepool.BasicResourcePool@47503458--timeout to awaitAvailable()
    at com.mchange.v2.resourcepool.BasicResourcePool.awaitAvailable(BasicResourcePool.java:1317)
    at com.mchange.v2.resourcepool.BasicResourcePool.prelimCheckoutResource(BasicResourcePool.java:557)
    at com.mchange.v2.resourcepool.BasicResourcePool.checkoutResource(BasicResourcePool.java:477)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:525)
    ... 36 more

    May 13, 2013 12:48:29 AM org.apache.catalina.startup.HostConfig deployDescriptor
    NEWS: Deployment descriptor configuration host - manager .xml
    May 13, 2013 12:48:29 AM org.apache.catalina.startup.HostConfig deployDescriptor
    NEWS: Deployment configuration descriptor manager.xml
    May 13, 2013 12:48:29 AM org.apache.catalina.startup.HostConfig deployDirectory
    NEWS: Deployment of the directory docs web application
    May 13, 2013 12:48:29 AM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Examples of Directory deployment web application
    May 13, 2013 12:48:29 AM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploy the web application ROOT directory
    May 13, 2013 org.apache.coyote.http11.Http11Protocol start 12:48:29 AM
    INFO: From Coyote HTTP/1.1 on http-8080
    May 13, 2013 12:48:30 AM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    May 13, 2013 12:48:30 hours departure from org.apache.jk.server.JkMain
    INFO: Jk running ID = time 0 = 0/15 config = null
    May 13, 2013 12:48:30 hours departure from org.apache.catalina.startup.Catalina
    INFO: Starting the server in 16222 ms

    Some time Tomcat to connect to the database*.
    [May 13, 2013 10:02:29] [INFO] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: init() Called.
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: adding the data manager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: *.
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 1: com.cmp.mysm.hibernate.core.system.staff.HStaffDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 2: com.cmp.mysm.hibernate.core.system.systemparameter.HSystemParameterDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 3: com.cmp.mysm.hibernate.core.system.profilemanagement.HProfileDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 4: com.cmp.mysm.hibernate.core.system.accessgroup.HAccessGroupDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 5: com.cmp.mysm.hibernate.systemaudit.HSystemAuditDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 6: com.cmp.mysm.hibernate.datasource.database.HDatabaseDSDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 7: com.cmp.mysm.hibernate.datasource.ldap.HLDAPDatasourceDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 8: com.cmp.mysm.hibernate.sessionmanager.HSessionManagerDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 9: com.cmp.mysm.hibernate.sessionmanager.HASMDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 10: com.cmp.mysm.hibernate.digestconf.HDigestConfDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 11: com.cmp.mysm.hibernate.radius.clientprofile.HClientProfileDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 12: com.cmp.mysm.hibernate.externalsystem.HExternalSystemInterfaceDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 13: com.cmp.mysm.hibernate.servermgr.drivers.HDriverDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 14: com.cmp.mysm.hibernate.servermgr.drivers.subscriberprofile.database.HDatabaseSubscriberProfileDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 15: com.cmp.mysm.hibernate.servermgr.service.HServiceDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 16: com.cmp.mysm.hibernate.servicepolicy.auth.HAuthServicePoilcyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 17: com.cmp.mysm.hibernate.servicepolicy.acct.HAcctServicePoilcyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 18: com.cmp.mysm.hibernate.servicepolicy.dynauth.HDynAuthServicePoilcyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 19: com.cmp.mysm.hibernate.servermgr.server.HServerDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 20: com.cmp.mysm.hibernate.servermgr.service.HServiceDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 21: com.cmp.mysm.hibernate.servermgr.plugin.HPluginDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 22: com.cmp.mysm.hibernate.rm.ippool.HIPPoolDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 23: com.cmp.mysm.hibernate.servermgr.eap.HEAPConfigDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 24: com.cmp.mysm.hibernate.servermgr.alert.HAlertListenerDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 25: com.cmp.mysm.hibernate.servermgr.gracepolicy.HGracePolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 26: com.cmp.mysm.hibernate.radius.clientprofile.HClientProfileDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 27: com.cmp.mysm.hibernate.radius.dictionary.HDictionaryDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 28: com.cmp.mysm.hibernate.radius.policies.accesspolicy.HAccessPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 29: com.cmp.mysm.hibernate.radius.policies.radiuspolicy.HRadiusPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 30: com.cmp.mysm.hibernate.radius.radtest.HRadiusTestDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 31: com.cmp.mysm.hibernate.radius.bwlist.HBWListBLManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 32: com.cmp.mysm.hibernate.rm.concurrentloginpolicy.HConcurrentLoginPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 33: com.cmp.mysm.hibernate.wsconfig.HWebServiceConfigDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 34: com.cmp.mysm.hibernate.diameter.dictionary.HDictionaryDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 35: com.cmp.mysm.hibernate.servicepolicy.diameter.naspolicy.HDiameterNASPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 36: com.cmp.mysm.hibernate.servicepolicy.diameter.creditcontrolpolicy.HCreditControlPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 37: com.cmp.mysm.hibernate.servicepolicy.diameter.eappolicy.HEAPPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - [DATA MANAGER FACTORY] unknown: 38: com.cmp.mysm.hibernate.servermgr.drivers.HDiameterDriverDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 39: com.cmp.mysm.hibernate.servermgr.transmapconf.HTranslationMappingConfDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 40: com.cmp.mysm.hibernate.diameter.diameterpolicy.HDiameterPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 41: com.cmp.mysm.hibernate.servicepolicy.rm.cgpolicy.HCGPolicyDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 42: com.cmp.mysm.hibernate.reports.userstat.HUserStatisticsDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 43: com.cmp.mysm.hibernate.diameter.routingconf.HDiameterRoutingConfDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 44: com.cmp.mysm.hibernate.diameter.diameterpeerprofile.HDiameterPeerProfileDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 45: com.cmp.mysm.hibernate.diameter.diameterpeer.HDiameterPeerDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: 46: com.cmp.mysm.hibernate.core.base.HGenericDataManager
    [May 13, 2013 10:02:29] [DEBUG] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: *.
    [May 13, 2013 10:02:29] [INFO] [0.0.0.0] - unknown [DATA MANAGER FACTORY]: Data Manager was initialized successfully.
    In data manager: 1
    In data manager: 2
    In data manager: 19
    In data manager: 20
    In data manager: 21
    In data manager: 22
    In data manager: 23
    In data manager: 24
    In data manager: 3
    In data manager: 4
    May 13, 2013 10:02:30 org.apache.catalina.startup.HostConfig deployDescriptor
    NEWS: Deployment configuration descriptor manager.xml
    May 13, 2013 10:02:30 org.apache.catalina.startup.HostConfig deployDescriptor
    NEWS: Deployment descriptor configuration host - manager .xml
    May 13, 2013 10:02:30 org.apache.catalina.startup.HostConfig deployDirectory
    NEWS: Deployment of the directory docs web application
    May 13, 2013 10:02:30 org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploy the web application ROOT directory
    May 13, 2013 10:02:30 org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Examples of Directory deployment web application
    10:02:30 org.apache.coyote.http11.Http11Protocol start may 13, 2013
    INFO: From Coyote HTTP/1.1 on http-8080
    May 13, 2013 10:02:30 org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    Org.apache.jk.server.JkMain 10:02:30 starting May 13, 2013
    INFO: Jk running ID = time 0 = 0/14 config = null
    Org.apache.catalina.startup.Catalina 10:02:30 starting May 13, 2013
    INFO: 6176 SP server startup


    But even once, when we try to stop and start then same problem occurred that we are not able to connect to the database

    Thanks in advanace

    We had solved the problem of our self
    to disable the setting of listener_network

    We also increase the connection timeout on the demand side

  • Run ProcessFlow using PLSQL

    I after installation in OWB

    Under Modules of process flow I module called 'Test_Module' and it has a package called 'test_pkg' and inder there is a flow of process called 'test_flow '.

    Test flow process module first start_1 IO activity have a parameter of type varchar called P_Param1

    I am trying to run this workflow process using PLSQL as below


    BEGIN
    OWF_MGR. WF_ENGINE. CreateProcess (itemtype = > 'test_pkg', itemkey = > process '123445678' = > 'test_flow');
    OWF_MGR. WF_ENGINE. SetItemAttrText (itemtype = > 'test_pkg', itemkey = > '123445678', aname = > "P_Param1", avalue = > 'Value of Test');
    -OWF_MGR. WF_ENGINE. StartProcess (itemtype = > 'test_pkg', itemkey = > '123445678');
    COMMIT;
    EXCEPTION
    WHILE OTHERS THEN
    dbms_output.put_line (SQLERRM);
    END;




    But when I try to do that I am getting below error

    ORA-20002: [WFENG_ITEM_ATTR] TYPE = test_pkg KEY = ATTRIBUTE 123445678 = P_Param1



    It seems that this code PL/SQL parameter unable o recongnise. Anyone know what's wrong with that?


    Thank you

    The path to execution of mappings and processflow of PL/SQL is described in the official documentation of OWB,
    Look here [url http://download.oracle.com/docs/cd/E11882_01/owb.112/e10935/scheduling_etl.htm#CIHJBCCA] the WB_RT_API_EXEC. Function RUN_TASK

    Kind regards
    Oleg

  • Is it possible to integrate a file into a spreadsheet using PLSQL?

    Hi friends,
    I am generating an excel file in utility PLSQL UTL_FILE.
    Now I have to add one more column and for each line, I need to integrate a file in this column.
    Is it possible to integrate a file in excel using PLSQL?
    If this is not the case, can you please suggest solutions of alternative/workaround for this requirement?

    Version of DB: Oracle 8i

    Kind regards
    Anthony Alix.

    There are free packages to generate XML files in a format that excel can read that allow hyperlinks as mentioned above.

    Watch https://xml-spreadsheet.samplecode.oracle.com/

    Concerning
    Marcus

  • Errors when using plsql clob document to e-mail notification

    Bq. salvation
    I'm having a problem to send a document of clob plsql in a notification e-mail. Basically the procedure of retrieves a few rows of data from the database and formats it as HTML before converted to clob. The email is generated fine when only a couple of lines are generated. However, the lines increase when workflow errors. We use the oracle ERP

    "" "" Message - error
    An error occurred in the subscription at the following events: event subscription

    Event error ID: WFE_DISPATCH_GEN_ERR
    Error event message: 3835: error '-20002 - ORA-20002: 2018: impossible to generate the XML notification. Caused by: 2020: error getting to content of the notification. Caused by: ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Wf_Notification.NTF_Table (8 H)
    BATCH_INFO. Batch information (209112, text/html)
    Wf_Notification.GetAttrClob (263883, BATCH_INFO, text/html)
    Wf_Notification.oldGetAttrClob (263883, BATCH_INFO, text/html)
    WF_NOTIFICATION. GetFullBody (nest = & gt; 263883, disptype = & gt; text/html)
    WF_MAIL. GetLOBMessage3 ('encountered during execution of the function Generate' nest = & gt; 263883, WF_XML.) Generate ' event 'oracle.apps.wf.notification.send '.
    Battery error event:
    WF_MAIL. GetLOBMessage3 (263883, WFMAIL, 2020: error getting notification content.) Caused by: ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Wf_Notification.NTF_Table (8 H)
    BATCH_INFO. Batch information (209112, text/html)
    Wf_Notification.GetAttrClob (263883, BATCH_INFO, text/html)
    Wf_Notification.oldGetAttrClob (263883, BATCH_INFO, text/html)
    WF_NOTIFICATION. GetFullBody (nest = & gt; 263883, disptype = & gt; text/html)
    WF_MAIL. GetLOBMessage3 (nest = & gt; 263883, r_ntf_pref = & gt;) MAILHTML), step - & gt; Getting body of text/html)
    WF_XML. GenerateDoc (oracle.apps.wf.notification.send, 263883)
    WF_XML. Generate (oracle.apps.wf.notification.send, 263883)
    WF_XML. Generate (oracle.apps.wf.notification.send, 263883)
    Wf_Event.setMessage (oracle.apps.wf.notification.send, 263883, WF_XML.) Generate)
    Wf_Event.dispatch_internal)

    The procedure is


    Bq. / *------Procedure: BATCH_INFO------goal: program displays the batch level information. ------* /--------Batch_info PROCEDURE (------document_id IN VARCHAR2,------display_type IN VARCHAR2,------document IN OUT NOCOPY CLOB,------document_type IN OUT NOCOPY VARCHAR2------)------IS------table_width VARCHAR2 (8): = 100% "; ------I PLS_INTEGER; ------j PLS_INTEGER; ------l_cells wf_notification.tdtype; ------l_result VARCHAR2 (32767). ------l_je_batch_name VARCHAR2 (100); ------l_period_name VARCHAR2 (15); ------l_control_total NUMBER; ------l_running_total_dr NUMBER; ------l_running_total_cr NUMBER; ------long l_document; ------cdoc clob. ------amount NUMBER; ------charbuff VARCHAR2 (32767). ------charbuff_size NUMBER; ------SLIDER c_get_je (batch_id in NUMBER)------IS------SELECT (SELECT description------OF gl_lookups------WHERE lookup_type = 'BATCH_STATUS'------AND lookup_code = batch_status) batch_status,-je_source,-(SELECT user_je_category_name------OF gl_je_categories------WHERE je_category_name = je_category) je_category,------period_name, batch_name, HostHeaderName,------header_running_total_dr_num flow,------header_running_total_cr_num credit------OF apps.gl_je_batches_headers_v------WHERE je_batch_id = batch_id; ------START--------display_type = wf_notification.doc_text IF-THEN-document: = NULL; ------OR------/ * = second table start = * /-j: = 0; \\ i := 0; \\ j := 1; -/ * Header * /--------l_cells (j): = 'S: "| "State of the lot; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| "Paper Source." \\ j : = j + 1 ; ------l_cells (j): = 'S: "| "Journal category. \\ j : = j + 1 ; ------l_cells (j): = 'S: "| 'Period '. \\ j : = j + 1 ; ------l_cells (j): = 'S: "| "Name of the journal"; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| "Name of the newspaper." \\ j : = j + 1 ; ------l_cells (j): = 'S: "| "Paper flow." \\ j : = j + 1 ; ------l_cells (j): = 'S: "| "Journal of appropriations; \\ j : = j + 1 ; \\ i := 0; ------/ * Body * /--------SELECT NAME, default_period_name, control_total,-running_total_dr, running_total_cr-IN l_je_batch_name, l_period_name, l_control_total,------l_running_total_dr, l_running_total_cr------OF gl.gl_je_batches------WHERE je_batch_id = TO_NUMBER (document_id); ------FOR histr IN c_get_je (TO_NUMBER (document_id))-LOOP-l_cells (j): = 'S: "| histr.batch_status; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| histr.je_source; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| histr.je_category; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| histr.period_name; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| histr.batch_name; \\ j : = j + 1 ; ------l_cells (j): = 'S: "| histr.header_name; \\ j : = j + 1 ; ------l_cells (j): =------'S: "------| NVL (TO_CHAR (histr.debit,-"L999G999G999G999G999G999G999D99"),-'&' |) ("nbsp;"------); \\ j : = j + 1 ; ------l_cells (j): =------'S: "------| NVL (TO_CHAR (histr.credit,-"L999G999G999G999G999G999G999D99"------), \ '&' |) ("nbsp;"------); \\ j : = j + 1 ; \\ i : = i + 1 ; ------END LOOP; ------table_width: = 100% "; -wf_notification.ntf_table (l_cells, 8, 'HL', l_result); -/ * Write data to the clob type * / temporary clob \\--creer------dbms_lob.createTemporary (cdoc, false, dbms_lob.call); ------charbuff_size: = length (l_result); ------ write html data to temporary clob------(cdoc, charbuff_size, l_result); dbms_lob.writeappend- write temporary clob document--------amount: = dbms_lob.getlength (cdoc); ------dbms_lob.copy (document, cdoc, amount, 1, 1); ------END IF; ------document_type: = "text/html"; ------EXCEPTION-others-THEN-wf_core. CONTEXT ('BATCH_INFO', 'Batch information', document_id, display_type); ------LIFT; ------END batch_info;

    Can someone guide me please

    Thank you

    The following stack trace the "ORA-06502: PL/SQL: digital error or value: character string buffer too small" error suggests that it is generated by calling Wf_Notification.NTF_Table. Given the way you described the problem, I guess the HTML code generated by that call to the l_cells data is greater than the length of your l_result variable (32767).

    Have you checked the length of the data generated by this call to one record and then divided by the number 32767 to work the maximum number of lines you can support this appeal?

    If it is simply that you have too much data for WF_Notification.NTF_Table produce the table within the limit of 32767, you try to generate the HTML code into small pieces and add them to the CLOB gradually. For example, if 10 records work, then generate the HTML code of 10 records, cut the result and add it to the clob. Then do the next 10 records (without the header this time) and cut the

    and
    tags and add that to the clob. When you are finished, add the closing tag in the clob and return it.

    I have not done this with a clob to return, but I did it with shorter strings to generate an HTML table with the standard look and feel but with headers in different places that could be done by default.

    theFurryOne

  • Invoke Blackberry Maps using the location document

    Greeting, developers...
    I use call blackberry maps in my application using document location...
    I put 3 rental, my location, Room A and room B
    example:





    but my problem is
    1. how the development of the cards to my location (the first location)
    2. how to make the maps zoom? I use lbs document as above, but there is no zoom at all in blackberry maps...

    Any solution?
    Thanx

    Visit this link for more details on the books and the location tags.

    http://docs.BlackBerry.com/en/developers/deliverables/17954/Invoking_BB_Maps_using_a_location_docume...

    But to my knowledge, I Don t think centeralized zoom is not possible in this method of calling cards.

    There are many ways by which you can invoke the card / use mapField in your application. You must choose the right pair that meets your needs.

  • Is it possible to download the zip from a URL using plsql program

    Hi all

    I know that we can obtain xml from url and save this CLOB but is it possible to download a zip file of URL using plsql program.

    Let me google that for you

  • Showing the output like this using PLSQL

    Hi all

    Asked me to show the output in this way using PLSQL anonymous or named block.

    Suppose we have a string like "12345" in our variable PLSQL.

    Then the output should be like this

    1

    2

    3

    4

    5

    the means to achieve this!

    They also said that without the help of aggregate functions and I don't know how aggregation function will help to achieve this goal?

    Thank you.

    You could just mention that errors in a way u made up instead of move from aggressive words.

    His best start subject here because its not just you and me, there are millions or billions of them here.

    Kind regards

    SoundariyaKumar.R

  • After changing the orainventory place im unable to connect using the oracle user

    Hello

    IM using oracle 12 c on rhel 6 after correctly installing the software, I changed the location of oravinventory in/data/houses

    / u01/app/Oracle

    After making these changes im is no longer able to connect using the oracle user...

    also I back return changes I had made to the orainventory folder still unable to connect using the oracle user...

    any help on this would be greatly appreciated

    Sadia. wrote:

    Hello

    IM using oracle 12 c on rhel 6 after correctly installing the software, I changed the location of oravinventory in/data/houses

    / u01/app/Oracle

    After making these changes im is no longer able to connect using the oracle user...

    also I back return changes I had made to the orainventory folder still unable to connect using the oracle user...

    any help on this would be greatly appreciated

    Newer versions of oracle have implemented a great new technology to help solve problems, called "error messages."  Unfortunately, I can't find any reference to an error message named 'is no longer able to connect.

    And why you are moving your site from inventory?  When you have installed oracle, he put the inventory where he wanted.  There is no reason to try to change or replace.

  • CPU used by ORACLE

    Hello
    on the 11G R2, Win 2008.
    In Windows, you see the background process (mmon, pmon,...). Can we?
    How to see CPU used by Oracle background processes?
    Updated CPU was used to 90% by oracle.
    I ran a CWA. But nothing about them in it. I wonder why Oracle was time CPU?
    Load Profile              Per Second    Per Transaction   Per Exec   Per Call
    ~~~~~~~~~~~~         ---------------    --------------- ---------- ----------
          DB Time(s):                1.5                1.7       0.05       0.05
           DB CPU(s):                0.9                1.0       0.03       0.03
           Redo size:            3,294.8            3,914.9
       Logical reads:           42,405.9           50,387.3
       Block changes:               19.5               23.2
      Physical reads:               14.8               17.6
     Physical writes:                1.2                1.4
          User calls:               27.2               32.3
              Parses:                9.9               11.7
         Hard parses:                0.2                0.2
    W/A MB processed:                0.1                0.1
              Logons:                0.3                0.3
            Executes:               27.9               33.2
           Rollbacks:                0.0                0.0
        Transactions:                0.8
    
    Instance Efficiency Percentages (Target 100%)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                Buffer Nowait %:  100.00       Redo NoWait %:  100.00
                Buffer  Hit   %:   99.97    In-memory Sort %:  100.00
                Library Hit   %:   98.46        Soft Parse %:   97.94
             Execute to Parse %:   64.67         Latch Hit %:  100.00
    Parse CPU to Parse Elapsd %:   10.90     % Non-Parse CPU:   99.92
    
     Shared Pool Statistics        Begin    End
                                  ------  ------
                 Memory Usage %:   81.43   83.60
        % SQL with executions>1:   92.47   84.84
      % Memory for SQL w/exec>1:   86.88   79.50
    
    Top 5 Timed Foreground Events
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                               Avg
                                                              wait   % DB
    Event                                 Waits     Time(s)   (ms)   time Wait Class
    ------------------------------ ------------ ----------- ------ ------ ----------
    DB CPU                                            6,317          60.4
    db file sequential read              44,888       2,407     54   23.0 User I/O
    db file scattered read                5,522         441     80    4.2 User I/O
    control file sequential read          4,725         268     57    2.6 System I/O
    Disk file operations I/O              1,089          73     67     .7 User I/O
    Thank you.

    You can use Process Explorer to look at in the background processes: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

  • SSL mutual authentication using the Oracle stored procedure

    Hello

    DB version:
    Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production

    Is possible to perform mutual authentication SSL uses the Oracle stored procedure?
    I read articles and forums saying that it is not a good approach to call the Web service using the Oracle procedure (and I don't know if it's even possible authentication using procs). But I would like to know if it's possible and how.

    In other is words there a way to incorporate the client certificate information into a procedure that calls a Web service.

    I read the articles to do it in JAVA or .net. But please advice how we can achieve using Oracle procedures.

    Thank you.

    934451 wrote:

    Is possible to perform mutual authentication SSL uses the Oracle stored procedure?

    To learn more. SSL what for?

    Oracle PL/SQL only supports client standard TCP sockets. However, interface for HTTP, Oracle PL/SQL also supports HTTPS - which requires the certificates of authentication of the server to be stored in a portfolio of Oracle web and used during the transmission via HTTPS. See the code example {message identifier: = 1925297} for more details.

    I read articles and forums saying that it is not a good approach to call the Web service using the Oracle procedure (and I don't know if it's even possible authentication using procs).

    Forums and articles written by idiots. For idiots.

    And no, I'm not to embellish my response to this pitch that you met. It is false. It is written by ignorant people who don't know ANYTHING about the use of Oracle and PL/SQL. And feel free to forward my response to these idiots. They find me here if they want to argue...

    As an example of how to call a web service, see {message identifier: = 10158148} and {message: id = 10448611}.

  • Creation of data Mart: OWB, SSIS or the use of Oracle?

    I'm working on creating a data mart as a new application for my work. I am a developer pl/sql, but I have no experience in DW. I am looking at what technology to implement this. Each instance of the project for which I work is quite complicated to deploy. Therefore, the easiest way.

    Could someone advise me on the use of Oracle Warehouse Builder? be useful to use it to create a simple data mart?

    Could I have all of the features needed in a mini - data warehouse by simply using jobs of oracle for the planning of the ETL process created in pl/sql (bulk collect) without using another tool? Is this possible? We do not want to use SSIS.

    The DB is 10g EE R10.2.0.1.0, but we could move to 11g as needed

    Help with that I will be grateful.
    Concerning

    You can surely OWB to create simple to complex datamarts or Data Warehouse of company.
    For more information you can check out the link below

    https://forums.Oracle.com/forums/Ann.jspa?annID=1667

Maybe you are looking for

  • I'm implementing the TB on W10, but it does not accept my connection information to the blank e-mail

    I used the same settings that I use on XP no problem but it get the message "configuration could not be verified - is the name of user or wrong password? Is this a problem with Windows 10?

  • Problem with Apple Mail

    Hi everyone - I use Apple Mail 9.2.  I see the alert when mail is received, but when I go to the post office - I don't see the actual e-mail.  This happens intermittently and not with each account.  What is happening with this?

  • How can I remove a picture background?

    I need to remove the background of my photo in iPhoto so that I can convert it into an embroidery software so that I can take out.  Any suggestions?

  • output analog dc offset

    When I use the example of the expedition: 'Cont Gen tension Wmf - Ext Clk.vi' I get the out waveform on the analog channel without problem.  When I stop the vi there is always a level 3 of VCC on my output string.  This isn't there until after I have

  • Saving files Capture and scanning on Windows 8 HP

    Forgive me if this is a stupid question. I understand it's probably more related to my need to become more fluent with Windows 8 but how after scanning a document using HP Scan and Capture that I can then save this file? I selected in the automatic b