GetGeneratedKeys() functionality in 10G

Hello,
The getGeneratedKeys() function on Statement or PreparedStatement class does not seems to be supported? Also not when using Oracle 10g JDBC driver (version 10.1.0.2.0) when connecting to 9I database (9.2.0.5)? When trying it I get SQLException: Unsupported feature.
Is the getGeneratedKeys() function supported when connecting to a 10g database?
I'm migrating from another database platform (Informix), and found the use of serial keys handy. What I have done now on Oracle is created a sequence and "before insert" trigger which automatically inserts new value for key field. I had hoped that the getGeneratedKeys() function should have worked...
In case it is not supported, what is the advised way to retrieve new key value?
Thanks!
Kristof Adriaenssens

Thanks for the tip Avi.
In the meanwhile I already found that getGeneratedKeys() is indeed not supported: http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#02_04
I however found a solution which requires some more code then I hoped for, but it works. Here an example:
PreparedStatement statement=con.prepareStatement("INSERT INTO autoinc_test (NAME) VALUES (?)");
statement.setString(1,"Test");
statement.executeUpdate();
Statement getAutoGenValueStatment=con.createStatement();
ResultSet rs=getAutoGenValueStatment.executeQuery("select autoinc_test_seq.currval from dual");
if (rs.next())
System.out.println("Serial value: "+rs.getInt(1));
rs.close();
getAutoGenValueStatement.close();
statement.close();
The retrieval of currval on a sequence returns correct value as it is session dependent. So even when another session inserts a record in same table after our session inserted a record and before retrieving the currval, we are sure that we will get correct value.

Similar Messages

  • Function in 10g & 11g

    Hi all,
    i have a function which is running fine in Oracle 10g But in 11g iam getting a error
    FUNCTION START_date RETURN DATE AS
    BEGIN
    select TO_DATE(test_VALUE,'YYYYMMDDHH24:MI:SS') INTO test_start_time from tst_rslt  WHERE tst_NAME='VM_START_TIME';
    RETURN vm_run_start_time;
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
            vm_run_start_time:=SYSDATE;
    RETURN vm_run_start_time;
         WHEN OTHERS THEN
            RAISE_APPLICATION_ERROR(-20000, 'Error in START_date '|| sqlerrm ,TRUE);
           return NULL;
    END;in 10g
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Release 10.2.0.4.0 - Production
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> SELECT testb.START_date  FROM DUAL;
    START_date
    02-SEP-10in 11g
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>SELECT testb.START_date  FROM DUAL;
    ERROR at line 1:
    ORA-20000: Error in testb.START_date   ORA-01841: (full) year must be
    between -4713 and +9999, and not be 0
    ORA-06512: at "ULIM.testb", line 16741
    ORA-01841: (full) year must be between -4713 and +9999, and not be 0

    In Oracle 10g
    SQL> select * from nls_session_parameters;
    PARAMETER
    VALUE
    NLS_LANGUAGE
    AMERICAN
    NLS_TERRITORY
    AMERICA
    NLS_CURRENCY
    $
    PARAMETER
    VALUE
    NLS_ISO_CURRENCY
    AMERICA
    NLS_NUMERIC_CHARACTERS
    NLS_CALENDAR
    GREGORIAN
    PARAMETER
    VALUE
    NLS_DATE_FORMAT
    DD-MON-RR
    NLS_DATE_LANGUAGE
    AMERICAN
    NLS_SORT
    BINARY
    PARAMETER
    VALUE
    NLS_TIME_FORMAT
    HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT
    DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT
    HH.MI.SSXFF AM TZR
    PARAMETER
    VALUE
    NLS_TIMESTAMP_TZ_FORMAT
    DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY
    $
    NLS_COMP
    BINARY
    PARAMETER
    VALUE
    NLS_LENGTH_SEMANTICS
    BYTE
    NLS_NCHAR_CONV_EXCP
    FALSE
    17 rows selected.In Oracle 11g
    SQL> select * from nls_session_paramet
    PARAMETER
    VALUE
    NLS_LANGUAGE
    AMERICAN
    NLS_TERRITORY
    AMERICA
    NLS_CURRENCY
    $
    PARAMETER
    VALUE
    NLS_ISO_CURRENCY
    AMERICA
    NLS_NUMERIC_CHARACTERS
    NLS_CALENDAR
    GREGORIAN
    PARAMETER
    VALUE
    NLS_DATE_FORMAT
    DD-MON-RR
    NLS_DATE_LANGUAGE
    AMERICAN
    NLS_SORT
    BINARY
    PARAMETER
    VALUE
    NLS_TIME_FORMAT
    HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT
    DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT
    HH.MI.SSXFF AM TZR
    PARAMETER
    VALUE
    NLS_TIMESTAMP_TZ_FORMAT
    DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY
    $
    NLS_COMP
    BINARY
    PARAMETER
    VALUE
    NLS_LENGTH_SEMANTICS
    BYTE
    NLS_NCHAR_CONV_EXCP
    FALSE
    17 rows selected.

  • Incorrect Results When Using an In-Line View and User Function in 10g

    My developers are complaining of incorrect Select statement results when using an in-line view along with a user defined function. Below is the statement:
    select test_f(wo1)
    from
    (SELECT a.WORK_ORDER_NBR, b.work_order_nbr wo1/*, facility_f(A.FACILITY),
    A.PLANNER, A.WO_STATUS, mil_date(A.WO_STATUS_DATE)*, A.WORK_ORDER_TYPE,
    A.WO_DESCRIPTION
    FROM TIDWOWRK A, TIDWOTSK B
    WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR))
    where wo1 is null;
    Test_f() is a user defined function and the above query returns thousands of rows. It should return 308 rows. It is apparent that the target database is not evaluating the "where wo1 is null;" clause.
    select to_char(wo1)
    from
    (SELECT a.WORK_ORDER_NBR, b.work_order_nbr wo1/*, facility_f(A.FACILITY),
    A.PLANNER, A.WO_STATUS, mil_date(A.WO_STATUS_DATE)*, A.WORK_ORDER_TYPE,
    A.WO_DESCRIPTION
    FROM TIDWOWRK A, TIDWOTSK B
    WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR))
    where wo1 is null;
    In the above query return 308 rows. The user function was replaced by an Oracle function. The Where clause is now evaluated correctly.
    The query is executed from an Oracle 10g R2 database and retrieves data from a 9.2.0.6 database.
    I've seen a little information on Metalink. It appears that there was some trouble in 9i, but were fixed in a 9.2.0.6 patch. I don't see any information about a 10.2.0.2 database.
    Anyone have any experiences or a successful solution. I suspect that I will need to report this to Oracle and wait for a patch.
    Thanks,
    John

    I can only think of two reasons for this behaviour:
    1) You are executing these two queries from two different users and there is some policy on the table.
    2) The function doesn't do an upper, but returns null a lot of times, even when the input is a not null value, like this:
    SQL> create table tidwowrk
      2  as
      3  select 1 id, 'A' work_order_nbr, 'DST' facility from dual union all
      4  select 2, null, 'TRN' from dual union all
      5  select 3, 'C', 'DST' from dual
      6  /
    Tabel is aangemaakt.
    SQL> create table tidwotsk
      2  as
      3  select 'A' work_order_nbr from dual union all
      4  select 'B' from dual
      5  /
    Tabel is aangemaakt.
    SQL> create or replace function test_f (a in varchar2) return varchar2
      2  is
      3  begin
      4    return case a when 'A' then null else a end;
      5  end;
      6  /
    Functie is aangemaakt.
    SQL> select count(*)
      2    from ( SELECT a.WORK_ORDER_NBR
      3                , test_f(b.work_order_nbr) wo1
      4             FROM TIDWOWRK A
      5                , TIDWOTSK B
      6            WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR
      7              and a.facility in ('DST', 'TRN', 'SUB')
      8         )
      9   where wo1 is null
    10  /
                                  COUNT(*)
                                         3
    1 rij is geselecteerd.
    SQL> select count(*)
      2    from ( SELECT a.WORK_ORDER_NBR
      3                , to_char(b.work_order_nbr) wo1
      4             FROM TIDWOWRK A, TIDWOTSK B
      5            WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR
      6              and a.facility in ('DST', 'TRN', 'SUB')
      7         )
      8   where wo1 is null
      9  /
                                  COUNT(*)
                                         2
    1 rij is geselecteerd.Regards,
    Rob.

  • Width of interMedia / Locator subset of Spatial functionality in 10g?

    Hi,
    I'm fairly new in this forum, but I'll hope for open arms anyway ;-)
    I'd like to do a "poll" with this post:
    - For applications you manage or know that are built on 10g Spatial, how well does the "standard" functionality i.e. the Locator subset (interMedia install option) cover applications' needs in 10g? (Interesting, since 10g seem to include all of 9i Spatial in the default feature set - see catmd.sql / catmdloc.sql)
    - How many of your apps (in %) requires EE plus the Spatial license option, and what's the main functionality required?
    Thanks!
    Message was edited by:
    orafad

    Answering your question is really akin to making an assumption about what "standard" features are. You are correct, quite a few of the features found in Oracle8i and Oracle9i Spatial are now included for free with Oracle Locator. However, many of the features that people feel are "standard" - in that they see more benefit in using what come with Oracle Spatial rather than developing those features themselves - happen to only come with Oracle Spatial such as geocoding and network modeling. Given that these are "new", standard features of Oracle Spatial a better way to gauge what people are using with regards to Oracle Locator or Oracle Spatial might be to first ask which people are simply using the SDO_GEOMETRY storage model behind their COTS GIS applications (like Autodesk, Intergraph, ESRI, etc.). The reason: most COTS GIS applications primarily make use of the SDO_GEOMETRY storage model rather than the features that surround it. Once you can get an answer to this you may be able to narrow down what people are using in terms of features. However, again, because Oracle Locator and Oracle Spatial are essentially based on the same exact technology, many may still find it hard to answer your question as they may - as part of their apps - be using one or two functions that only come with Oracle Spatial.
    -Justin

  • Encrypt function in 10g - RAW maximum size issue

    Hello,
    I m trying to encrypt some data using the ENCRYPT function provided by Oracle 10g.
    It appears that the function uses only RAW type and RAW apparently has a maximum size of 2000 bytes.
    And in my situation, the RAW data I would get after encrypting would be well above 2000 bytes. Can some one throw some light on how I can work around this situation.
    I'd appreciate any help here.
    Thanks
    Nikhil

    Should I convert the 9i database?You can, but not mandatory.
    from WE8MSWIN1252 to UTF8?I strongly advise you to read the following metalink
    notes :
    * Changing WE8ISO8859P1/ WE8ISO8859P15 or
    WE8MSWIN1252 to (AL32)UTF8 with ALTER DATABASE
    CHARACTERSET - Note:260192.1
    * NLS considerations in Import/Export - Frequently
    Asked Questions - Note:227332.1
    Nicolas.Nicolas:
    These links were very helpful!
    I actually was not aware of the fact that CHAR and VARCHAR2 are, by default, defined in terms of bytes, not characters when declaring column size. It seems like all I have to do is alter my tables in the 10g environment to be NVARCHAR2 instead of VARCHAR2, and that will define the columns in characters, not bytes.

  • Search function  on 10g Documentation break

    Hi,
    The search function on the main documentation page 10g
    http://www.oracle.com/pls/db102/homepage
    is break, I have error 404 :
    We're sorry, the page you requested was not found.
    We have recorded this error (404) to help us fix the problem.
    You may wish to try again using one of the tools below.
    Nicolas.
    Seems better now...
    Message was edited by:
    N. Gasparotto

    I have reported the issue to the web team. I'll rattle the chains again.
    Some clarification, the FuseTalk forums run on the ColdFusion platform, but are not an Adobe product. It is like Photoshop. It runs on a Macintosh, but it isn't an Apple product. It runs on Windows, but isn't a Microsoft product.
    Most folks here know that I'm pretty neutral about comparing the two forums. But I recently had to run some reports on them and activity is about the same on both, with the Macromedia Forums being a little more busy than the Adobe ones. Most people are comfortable with the system they know. At the time of the Adobe/Macromedia merger there were a number of performance issues with the Macromedia Forums. Most of them have been addressed.
    There was only one attempt to move from WebCrossing to FuseTalk, and that never saw the light of day. It was back in August 2006 and the project got killed before anything happened. I don't know where the comment about ColdFusion product managers wanting to use that platform for all forums comes from, I've never heard that internally.
    In October 2007 we imported all of the data from the Macromedia forums into Web Crossing and did release it for two weeks and that didn't work out well (a big understatement). It was so bad that most people who went through it have suffered some sort of amnesia. They seem to recall that we were moving the other direction (WebX to Fusetalk). But that is not the case. All forums were running on Web Crossing during that experience.
    John

  • Function Key 10g as version 61

    Hi Guru,
    Is it posible to configure function key on version 10g as same as version 6 ?
    ex :
    F6 - Create record
    F7 - Enter Query
    F8 - Execute Query
    F9 - List of value
    F10 - Save / Commit
    Why I need it ?
    Since the user already get use to with those key, I am worry it will be slowdown
    data entry.
    Thank you,

    Find the file fmrweb.res in the DevSuiteHome_1\forms folder.
    Rename it to something like fmrweb_orig.res
    Copy the file fmrpcweb.res as fmrweb.res. The fmrpcweb file has settings to match the Windows 6i keys.
    By the way, you can edit the fmrweb file with a simple text editor to see how to change it.

  • WebUtil -- OLE functions Forms 10G

    We could use severl webutil functions but OLE.
    When calling it is failing right in the first line....
    application:=CLIENT_OLE2.create_obj('Outlook.Application');     
    generating below error in Java Console.....Any help is appreciated..
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkLink(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java:537)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

    Its all in the first line:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
    This probably means that you did not correctly sign the JAR files....hence a security exception accessing the jacob library
    Regards
    Grant Ronald
    Oracle Product Management

  • Need Help with Connect by  function oracle 10g

    Hi all.
    I've a recursive table containing follow data:
    ID ParentID PARENT_NAME PAGE_NAME
    1363416     1     Central de Relacionamento     Back Office
    1363416     1     Central de Relacionamento     Campanhas da Central de Relacionamento
    1363416     1     Central de Relacionamento     Cartas de Cobrança
    1363416     1     Central de Relacionamento     Cartão Pernambucanas
    1363416     1     Central de Relacionamento     Comunicados
    1363416     1     Central de Relacionamento     Localização
    1363416     1     Central de Relacionamento     Lojas
    1363416     1     Central de Relacionamento     Monitoria Qualidade
    1363416     1     Central de Relacionamento     PDD - Provisão para Devedores Duvidosos
    1363416     1     Central de Relacionamento     Pessoas
    1363416     1     Central de Relacionamento     Tabela de desconto para repactuação
    1363416     1     Central de Relacionamento     Telefones Úteis
    1363416     1     Central de Relacionamento     Voip
    1363416     1     Central de Relacionamento     Últimas Notícias
    2554644     1363416     Telefones Úteis     Escritorios de Cobrança
    2554644     1363416     Telefones Úteis     Ramais dos Supervisores
    2554644     1363416     Telefones Úteis     Telefone das Seguradoras
    2554661     1363416     Monitoria Qualidade     Check list
    2554661     1363416     Monitoria Qualidade     Circularização
    2554661     1363416     Monitoria Qualidade     Destaques em Qualidade
    2554661     1363416     Monitoria Qualidade     Dicas
    2554661     1363416     Monitoria Qualidade     Elogios
    2554661     1363416     Monitoria Qualidade     Estratégia da Monitoria
    2554661     1363416     Monitoria Qualidade     Etapas do Atendimento
    2554661     1363416     Monitoria Qualidade     O presente
    2554661     1363416     Monitoria Qualidade     Pontuação
    2554661     1363416     Monitoria Qualidade     Premiação
    2554661     1363416     Monitoria Qualidade     Quadro de Reclamações
    2554661     1363416     Monitoria Qualidade     Reciclagem 2008
    2554661     1363416     Monitoria Qualidade     Sugestão de frases para atendimento
    2920342     18955293     Aniversariantes do Mês     Escala de festa de aniversariantes do mês
    2925074     18955293     Treinamento Inicial     Projeto Tutor
    2925111     68690269     Cartão Pernambucanas      Anuidade
    2925111     68690269     Cartão Pernambucanas      Atendimento ao Cliente
    2925111     68690269     Cartão Pernambucanas      Bloqueio do Cartão
    2925111     68690269     Cartão Pernambucanas      Limite do cliente e Composição do Minimo
    2925111     68690269     Cartão Pernambucanas      Pagamentos
    2925111     68690269     Cartão Pernambucanas      Produtos Financeiros
    2925111     68690269     Cartão Pernambucanas      Repactuação
    2925111     68690269     Cartão Pernambucanas Tarifas e Taxas
    2927101     2925111     Pagamentos     Dúvidas sobre pagamento não baixado
    5429937     1363416     Cartas de Cobrança     Modelo de carta que pode ser utilizada pela loja
    5429937     1363416     Cartas de Cobrança     Regua de Cobrança CRP
    5431168     17275745     Cartas de Cobrança - 10 dias em atraso     Cliente Alto ticket - 10 dias
    5431168     17275745     Cartas de Cobrança - 10 dias em atraso     Cliente Antigo - 10 dias
    5431168     17275745     Cartas de Cobrança - 10 dias em atraso     Cliente Novo com PPA
    5431168     17275745     Cartas de Cobrança - 10 dias em atraso     Cliente Padrão - 10 dias
    5431251     17275745     Carta de Cobrança - 50 dias em atraso     Cliente Alto ticket- 50 dias
    5431251     17275745     Carta de Cobrança - 50 dias em atraso     Cliente Antigo - 50 dias
    5431251     17275745     Carta de Cobrança - 50 dias em atraso     Cliente Padrão- 50 dias
    5431251     17275745     Carta de Cobrança - 50 dias em atraso     Cliente novo com PPA - 50 dias
    5431521     17275745     Carta de Cobrança - 75 dias     Cliente Alto ticket -75 dias
    5431521     17275745     Carta de Cobrança - 75 dias     Cliente Antigo - 75 dias
    5431521     17275745     Carta de Cobrança - 75 dias     Cliente Padrão - 75 dias
    5431521     17275745     Carta de Cobrança - 75 dias     Cliente novo com PPA - 75 dias
    5431575     17275745     Carta de Cobrança - 90 dias     Cliente Alto Ticket - 90 dias
    5431575     17275745     Carta de Cobrança - 90 dias     Cliente Antigo - 90 dias
    5431575     17275745     Carta de Cobrança - 90 dias     Cliente Padrão - 90 dias
    5431575     17275745     Carta de Cobrança - 90 dias     Cliente novo com PPA - 90 dias
    9484330     1363416     Últimas Notícias     Ura Ativa
    11350383     1363416     Campanhas da Central de Relacionamento     Campanha de Incentivo 2009
    11350383     1363416     Campanhas da Central de Relacionamento     Result campanha de arrecadação Brinquedos
    17275745     5429937     Regua de Cobrança CRP     Carta de Cobrança - 50 dias em atraso
    17275745     5429937     Regua de Cobrança CRP     Carta de Cobrança - 75 dias
    17275745     5429937     Regua de Cobrança CRP     Carta de Cobrança - 90 dias
    17275745     5429937     Regua de Cobrança CRP     Carta de cobrança de 90 a 120 dias - Reforço
    17275745     5429937     Regua de Cobrança CRP     Cartas de Cobrança - 10 dias em atraso
    18955293     1363416     Pessoas     Aniversariantes do Mês
    18955293     1363416     Pessoas     Critérios para participação no processo
    18955293     1363416     Pessoas     Serviço de fonoaudiologia
    18955293     1363416     Pessoas     Treinamento Inicial
    18955293     1363416     Pessoas     Troca de turno
    19652362     1363416     Comunicados     AcordoReacordo
    19652362     1363416     Comunicados     Assessoria Externa
    19652362     1363416     Comunicados     Atendimento
    19652362     1363416     Comunicados     Etapas do atendimento
    19652362     1363416     Comunicados     FaturasBoletos
    19652362     1363416     Comunicados     Mastercard
    19652362     1363416     Comunicados     Procedimentos Internos da Central de Relacionamento
    19652362     1363416     Comunicados     Produtos Financeiros
    19652362     1363416     Comunicados     Recado
    19652362     1363416     Comunicados     Rediscagem
    19652362     1363416     Comunicados     Result
    19652362     1363416     Comunicados     Rotativo
    19652362     1363416     Comunicados     Todos os Comunicados
    19657794     19652362     AcordoReacordo     036 - Procedimentos para acordos - repactuação
    19657881     19652362     Assessoria Externa     009 - Cobrança Externa
    19657881     19652362     Assessoria Externa     025 - Bloqueio telefones – Envio Escritórios
    19657881     19652362 Assessoria Externa     CI 01409 - Opção de envio de Boleto Bradesco pelos Escrit
    19658018     19652362     Etapas do atendimento     01407 - Etapas de atendimento - fechamento
    19658018     19652362     Etapas do atendimento     01707 - Etapas do Atendimento- Negociação
    19658018     19652362     Etapas do atendimento     04706 - Etapas de atendimento - Identificação
    19658018     19652362     Etapas do atendimento     04806 - Etapas de atendimento - Fundamentação
    19658018     19652362     Etapas do atendimento     05906 - Argumentação utilizada para pag da dívida
    19658123     19652362     Atendimento     00408 - Consulta contrato - Artigos
    19658123     19652362     Atendimento     00709 - Abordagem de Cliente em Dia
    19658123     19652362     Atendimento     00907 - Informações sobre limite de crédito - análise.
    19658123     19652362     Atendimento     00908 - Cartas de Cobrança enviada com menos de 10 dias
    19658123     19652362     Atendimento     01107- Cobrança de Funcionários
    19658123     19652362     Atendimento     01306 - Procedimento para cliente falecido
    19658123     19652362     Atendimento     01508 - Script de encerramento do atendimento
    19658123     19652362     Atendimento     01806 - Reclamações e Faltas Graves
    19658123     19652362     Atendimento     02207 - Erro no Tempo de atraso do Cartão Pernambucanas Ma1
    19658123     19652362     Atendimento     02207 - Erro no Tempo de atraso do Cartão Pernambucanas Mas
    19658123     19652362     Atendimento     02606 - Fluxo de reclamações
    19658123     19652362     Atendimento     03506 - Transferência para CCPE
    19658123     19652362     Atendimento     03707 - Plano de crédito - 100 dias para pagar
    19658123     19652362     Atendimento     03806 - Agendamento no prazo de bloqueio
    19658123     19652362     Atendimento     03906 - Informações sobre Ação Judicial
    19658123     19652362     Atendimento     06206 - Acionamento de cadastro - Blended
    19658123     19652362     Atendimento     06306 - Espera de cliente em linha
    19658123     19652362     Atendimento     CI 00409 - Fluxo de depósito identificado
    19658123     19652362     Atendimento     CI 00809 - Notificação Extrajudicial
    19658123     19652362     Atendimento     CI 02708 - Novas regras para SACs (CCPE)
    19658123     19652362     Atendimento     Procedimento para alteração desbloqueio e inclusão de tel
    19658123     19652362     Atendimento     Queda de ligaçãoTel mudo
    19658192     19652362     FaturasBoletos     CI 00609 - Boleto Bancário
    19658192     19652362     FaturasBoletos     CI 01109 - Projeto Boleto
    19658253     19652362     Mastercard     00309 - Cobrança do cartão Pernambucanas Mastercard
    19658253     19652362     Mastercard     00807 -Telas para consulta do cartão Pernambucanas masterca
    19658253     19652362     Mastercard     01808 - Problemas Mastercard
    19658253     19652362     Mastercard     02808 - Pagamento do cartão Mastercard enquadrado
    19658253     19652362     Mastercard     03607- Atraso na Baixa de pagamento Mastercard
    19658253     19652362     Mastercard     05407 -Piloto Cartão de Crédito
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     006 - 08 Alteração conduta
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     01906 - Contato com terceiros
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     01907 - Novos números 0800
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     022-08 - Proc concessão de des
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     02507 - Políticas de cobrança
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     03206 - Segmen de cobrança
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     06407 - GAB -Gestão das
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 00105 - Orientação do uso
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 00909 - Saldo Residual no
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 01108 - Alteração da taxa de
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 01509 - Mensagem (Ura
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 01609 - Envio de SMS
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 01709 - Procedimento para
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 02308 - Cobrança G30
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 02408 - Tarifa de Cobrança
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     CI 02508 - URA ativa
    19658308     19652362     Procedimentos Internos da Central de Relacionamento     Custo Efetivo Total - CET
    19658364     19652362     Produtos Financeiros     012 - Informações sobre seguro
    19658364     19652362     Produtos Financeiros     01208 - Seguro de Acidentes Pessoais
    19658364     19652362     Produtos Financeiros     01807 - Cobrança de Seguro
    19658364     19652362     Produtos Financeiros     02707 - Procedimentos para clientes que possuem seguro
    19658364     19652362     Produtos Financeiros     028 - Roteiro cobrança
    19658364     19652362     Produtos Financeiros     03107 - Garantia estendida por telemarketing
    19658364     19652362     Produtos Financeiros     060 - Plano odontológico (OdontoPrev)
    19658364     19652362     Produtos Financeiros     CI 01608 - Auto Crédito Fácil Pernambucanas
    19658428     19652362     Recado     CI 00707- Abordagem no telefone de referência
    19658428     19652362     Recado     CI 01406 - Recados (complemento V)
    19658428     19652362     Recado     CI 02008 - Recados acima de 90 em atraso
    19658428     19652362     Recado     CI 04006 - Recados em caixa postal - Inclusão de telefones
    19658461     19652362     Rediscagem     CI 00106 - Rediscagem
    19658461     19652362     Rediscagem     CI 02306 - Rediscagem Estado do Mato Grosso
    19658502     19652362     Result     CI 00108 - Cobrança Suspensa – Alteração de result
    19658502     19652362     Result     CI 00208 - Registro das negociações
    19658502     19652362     Result     CI 00607 - Adequação de result (sem contato com o cliente
    19658502     19652362     Result     CI 01307 - Novo Detalhe (Hospitalizado_Detido_Incapacitado)
    19658502     19652362     Result     CI 03306 - Result - Acima de 3 Recados
    19658502     19652362     Result     CI 04506 - Rotinas Internas - Limpeza da base
    19658502     19652362     Result     CI 05206 - Circularização – Novo result
    19658502     19652362 Result     CI 05806 - Result Chamada Consulta
    19658729     19652362     Rotativo     CI 00406 - Rotativo e parcelado
    19658729     19652362     Rotativo     CI 00508 - Cobrança do Rotativo - Consulta extrato
    19658729     19652362     Rotativo     CI 00606 - Cobrança Saldo Rotativo
    19658729     19652362     Rotativo     CI 02607 - Despesa financeira indevida - rotativo
    19658729     19652362     Rotativo     CI00308 - Alteração na data de corte do Rotativo (Dezembro
    19786821     18955293     Serviço de fonoaudiologia     Dia Mundial da Voz
    19786821     18955293     Serviço de fonoaudiologia     Uso consciente do headset
    43616876     2554661     Elogios     Alexandre Porfírio da Costa
    43616876     2554661     Elogios     Edson Oliveira Carvalho
    43616876     2554661     Elogios     Ludmila Balbino
    43616876     2554661     Elogios     Maria de Nazaré Castro
    49660886     18955293     Critérios para participação no processo     Processo Seletivo Interno - (Blended)
    63947787     11350383     Campanha de Incentivo 2009     Ganhadores de Junho - 07 a 60 Manhã
    63947787     11350383     Campanha de Incentivo 2009     Ganhadores de Junho - 07 a 60 Tarde
    63947787     11350383     Campanha de Incentivo 2009     Ganhadores de Junho - Blended Manhã
    63947787     11350383     Campanha de Incentivo 2009     Ganhadores de Junho - Blended Tarde
    68690269     1363416     Cartão Pernambucanas     Cartão Pernambucanas Mastercard
    68690269     1363416     Cartão Pernambucanas     Plano Parcelado
    68690269     1363416     Cartão Pernambucanas     Plano Rotativo
    68692287     68690269     Plano Rotativo     Extrato Rotativo
    68692287     68690269     Plano Rotativo     Tabela de vencimento e data de corte
    68692287     68690269     Plano Rotativo     Taxas do Rotativo
    69758205     1363416     Localização     Procedimentos
    69758205     1363416     Localização     Result's e Gab
    69758205     1363416     Localização     Sites para consulta de telefone
    72482521     1363416     Lojas     Abertura de Lojas - Feriado 02.11.09
    72482521     1363416     Lojas     Abertura de Lojas 01.11.2009

    ok and what do you want us to do?
    Even before you complete your questin please make sure we have
    create/inserts
    actual o/p expected o/p
    Thanks,
    Bhushan

  • WebUtil -- OLE functions Forms 10G -- OutLook Access dialog window

    Hello:
    I am using OLE to open outlook compose dialog email dialog box from Forms.
    When we invoke Outlook Compose/draft window, an Outlook Dialog window/alert comes up with a message "A program is trying to access e-mail addresses you have stored in Outlook. Do you want to allow this? etc.."
    How can I suppress this dialog box?
    Thanks

    Hello,
    take a look at this thread:
    Re: E-mail from oracle form - suppress dialog window
    and first off all, contact your system administrator.
    Bernd

  • Urgent: need weekly, monthly report function in 6i for 10g

    Hi, we are trying to move some reports built in 6i to 10g. Need some help urgently.
    The y-axis is values, x-axis is date, if there is a value between 2 dates, , a line will connect them. If there is no value, it will skip it and try next date. I have two problems here to create same graph in 10g.
    1. The report built in 6i has a function you can specify a graphic x-axis for a time period, i.e., from date1 to date2, then choose, weekly, monthly or quarterly.... dates will be put into those period accordingly by the report builder automatically. Do we still have this kind of function in 10g?
    2. How can graph builder in 10g skip a date and jump to next date if there is no value for it? Now, if there is no value for a date, it will treat it as 0, so the line will go back to 0 in stead of move forward to next date.
    Thanks!

    Validate the parameter for null and then go for something like
    Col LIKE (CASE WHEN Parameter='' THEN '%%' ELSE Parameter END)

  • Any method has similar function as 'when_mouse_enter' trigger in 10g

    in 10g, we cannot use 'when_mouse_enter', 'when_mouse_leave' functions, is there any other functions have similar interactive functions in 10g?

    We use when-mouse-click when on the web to emulate the when_mouse_enter trigger. Or in some cases, when-mouse-click with ctrl button (Checking :System.Mouse_button_shift_state).
    Instead of when-mouse-leave, we just started a non-repeating timer, and did the same as the wme trigger after 3 seconds.

  • Any method have similar function as 'when_mouse_enter' trigger in 10g

    in 10g, we cannot use 'when_mouse_enter', 'when_mouse_leave' functions, is there any other functions provide similar interactive functions in 10g?

    We use when-mouse-click when on the web to emulate the when_mouse_enter trigger. Or in some cases, when-mouse-click with ctrl button (Checking :System.Mouse_button_shift_state).
    Instead of when-mouse-leave, we just started a non-repeating timer, and did the same as the wme trigger after 3 seconds.

  • Does ORACLE functions work with Oracle Database 10G

    Hi,
    I am wondering if ORACLE functions work with Oracle Database 10G or is it mandatory to use OCI functions?
    Thanks in advance!

    I was able to run a simple query with ora_* functions using 10g on Windows.
    The Oracle OCI calls used by PHP's ora extension still exist in the Oracle 10g libraries
    But I cannot recommend this obsolete extension.
    -- cj

  • Upgrading from 9,2.0.6 (HP-UX) to 10g or 11g on Redhat Linux?

    Generally what are the steps to upgrade from 9,2.0.6 (HP-UX) to 10g or 11g on Redhat Linux?
    Can I exp the database on 9.2.0.6 (HP-UX) then imp the database to a new 10/11g database (RedHat Linux)?
    Is this the simplest way?

    To change platforms require the database instance be re-built and / or the data moved using one of the following methods:
    Export / Import to include the use of Datapump facilities. all versions support Export/Import but for Datapump 10.1.0.2 or higher is required
    Transportable Tablespaces 10G or Later
    RMAN Convert Database functions. 10G or Later
    Streams Replication
    Create Table As Select (CTAS)
    Oracle Golden Gate
    As your database is 9.2.0.6 you can only use export/import. Please refer to the MOS doc 733205.1 for further clarification

Maybe you are looking for

  • Achieving thisin obiee

    How to achieve the below function in obiee. Please help add_months(to_date(to_char(Date_Column,'MM')||'-'||:p_year,'MM-YY'),-7) where p_year is a year prompt

  • 17,000 images moved to trash

    While doing a routine update to Nik software I closed Aperture, and when I re-opened it all my 17,000 images were in Aperture Trash.  Aperture Help says to control click on trash image and select 'put back'.  But there is no 'put back' to select and

  • Focus point. Display in Lightroom 4.4 64Bit Canon 7D RAW file.

    By accident a while ago I saw the focus point displayed on the library photo in Lightroom.  This was useful for quick elimination of slightly out of focus shots.  It can be shown in camera on the preview.  Any ideas?

  • Best way to duplicate slideshow dvd with music

    I have a DVD slideshow put to music made as a tribute.  What is the easiest way to make duplicate copies of this?  The audio is in one directory and the pictures in another directory.  Running MacBook Pro with 10.5.8 OS

  • Iphone require me to local every single file.. why

    Not sure is it something wrong with the database. I just re-installed leopard and I copy the entire iphone library from my backup. When I opened the application it seems fine, all the thrumbnail and folder is there but when I click onto it. it said t