_optim_peek_user_binds and cursor_sharing=SIMILAR

Hello evey DBA,
Please tell me If I am wrong :
I think that the setting of "_optim_peek_user_binds" has no sens, if "cursor_sharing=similar"
Because, when the cursor_sharing=similar, oracle ALWAYS peeking the bind variables to check of the repartition of the corresponding columns on the histograms, and decide if it can use the same plan or if it's better to generate a new plan ...
Assume that the columns in question have their histogram.
Am I wrong ?

Hemant K Chitale wrote:
There are very many references to ""_optim_peek_user_binds" on MetaLink. So it isn't exactly "undocumented ... there is no official description of its purpose". The cat is out of the bag.How about - this is a deliberately hidden parameter. Hidden parameters are hidden for a reason.
According to Metalink note 315631.1 "NB:It is never recommended to modify these hidden parameters without the assistance of Oracle Support.Changing these parameters may lead to high performance degradation and other problems in the database." And Note 790268.1 shows a method of finding sessions that have set hidden parameters.
Based on information in Metalink and other sources, one could reasonably conclude that
- hidden parameters may change in impact or meaning at any upgrade or patch, so even version is not enough to properly discuss them in all cases;
- hidden parameters should not be published or discussed at length in a public forum, lest newbies misinterpret and use them to potentially disasterous effect;
- hidden parameters could be discussed in specialty and advanced forums (such as Oracle Scratchpad) because advanced readers tend to be careful;
- information about hidden parameters should be researched in Metalink, or with Support, first before use;
- impact of hidden parameters should be evaluated in a test environment, not in a debate.
That said, this one is well discussed in note 387394.1 ]:)

Similar Messages

  • SQL versions with cursor_sharing=similar

    Hello,
    We have a Peoplesoft DB and we have been obliged to use cursor_sharing=similar to solve some of our problems. We have just noticed that with Oracle *9.2.0.7*, when a table is partitioned, many versions of the same sql are created in the SGA. Here is the demo
    CREATE TABLE T5
      ID    NUMBER(2),      
      NAME  VARCHAR2(15 BYTE)
    PARTITION BY RANGE (ID) 
      PARTITION P1 VALUES LESS THAN (10),
      PARTITION P2 VALUES LESS THAN (20),
      PARTITION P3 VALUES LESS THAN (30),
      PARTITION P_MAXVALUE VALUES LESS THAN (MAXVALUE));
    alter session set cursor_sharing=similar;
    select count(*) from t5 where id = 1;
    select count(*) from t5 where id = 10;
    select count(*) from t5 where id = 30;
    select count(*) from t5 where id = 5;  
    select count(*) from t5 where id = 15;Now we check the SGA:
    SQL> select hash_value,CHILD_NUMBER,EXECUTIONS,sql_text from v$sql where SQL_TEXT like '%t5%';
    HASH_VALUE CHILD_NUMBER EXECUTIONS SQL_TEXT
    602987019            0          1 select count(*) from t5 where id = :"SYS_B_0"
    602987019            1          1 select count(*) from t5 where id = :"SYS_B_0"
    602987019            2          1 select count(*) from t5 where id = :"SYS_B_0"
    602987019            3          1 select count(*) from t5 where id = :"SYS_B_0"
    602987019            4          1 select count(*) from t5 where id = :"SYS_B_0"Is there a way to avoid all these child cursors?
    Has anyone had this same problem before?

    Well, I just tried it, but this time with a table NOT partitioned, no histograms and no range operation, with Oracle version 10.2.0.1 and I got the same results:
    SQL> CREATE TABLE T6
      ID    NUMBER(2),
      NAME  VARCHAR2(15 BYTE)
    SQL> alter session set cursor_sharing=similar;
    Session altered.
    SQL>
    SQL> select count(*) from t6 where id = 1;
      COUNT(*)
             0
    SQL> select count(*) from t6 where id = 10;
      COUNT(*)
             0
    SQL> select count(*) from t6 where id = 30;
      COUNT(*)
             0
    SQL> select count(*) from t6 where id = 5;
      COUNT(*)
             0
    SQL> select count(*) from t6 where id = 15;
      COUNT(*)
             0
    SQL> select hash_value,CHILD_NUMBER,EXECUTIONS,sql_text
    from v$sql where SQL_TEXT like '%t6%';
    HASH_VALUE CHILD_NUMBER EXECUTIONS SQL_TEXT
    2780697141            0          1 select count(*) from t6 where
                                       id = :"SYS_B_0"
    2780697141            1          1 select count(*) from t6 where
                                       id = :"SYS_B_0"
    2780697141            2          1 select count(*) from t6 where
                                       id = :"SYS_B_0"
    2780697141            3          1 select count(*) from t6 where
                                       id = :"SYS_B_0"
    HASH_VALUE CHILD_NUMBER EXECUTIONS SQL_TEXT
    2780697141            4          1 select count(*) from t6 where
                                       id = :"SYS_B_0"
    2776262046            0          2 select hash_value,CHILD_NUMBER
                                       ,EXECUTIONS,sql_text from v$sq
                                       l where SQL_TEXT like '%t6%'
    6 rows selected.So?

  • Cursor_sharing=similar or cursor_sharing=exact

    Hai,
    I have doubt regarding setting cursor_sharing parameter exact and similar at session level.
    On my database cursor_sharing is set similar at system level.
    test >show parameter cursor
    NAME                                 TYPE                             VALUE
    cursor_sharing                       string                           SIMILARI have fired a simple select statement without setting any cursor_sharing at session level
    TEST >variable b1 number;
    TEST >exec :b1:=7499;
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    TEST >select empno,job from emp where job='SALESMAN' and empno=:b1;
         EMPNO JOB
          7499 SALESMANchecking the hash value for query fired
    test >select sql_text,invalidations,hash_value,executions,loads from v$sqlarea
    16:14:50   2  where sql_text like '%select empno,job from%';
    SQL_TEXT
    INVALIDATIONS HASH_VALUE EXECUTIONS      LOADS
    select empno,job from emp where job=:"SYS_B_0" and empno=:b1
                0 3727168047          1          1Literal job='SALESMAN' is converted into system generated bind variable job=:"SYS_B_0" as my cursor_sharing=similar
    Fired the same statement by setting cursor_sharing=exact at session level
    TEST >alter session set cursor_sharing=exact;
    Session altered.
    Elapsed: 00:00:00.00
    16:15:25 TEST >select empno,job from emp where job='SALESMAN' and empno=:b1;Checking the hash value for newly fired query with cursor_sharing=exact
    SQL_TEXT
    INVALIDATIONS HASH_VALUE EXECUTIONS      LOADS
    select empno,job from emp where job='SALESMAN' and empno=:b1
                0 2065003705          1          1
    select empno,job from emp where job=:"SYS_B_0" and empno=:b1
                0 3727168047          1          1literal job='SALESMAN' is not converted into bind variable as my cursor_sharing=exact
    At the same session fired the same query by setting cursor_sharing=similar ..to check which hash value would be shared.
    16:15:28 TEST >alter session set cursor_sharing=similar;
    Session altered.
    Elapsed: 00:00:04.09
    17:27:54 TEST >select empno,job from emp where job='SALESMAN' and empno=:b1;
         EMPNO JOB
          7499 SALESMAN
    16:28:26 test >select sql_text,invalidations,hash_value,executions,loads from v$sqlarea
    17:28:13   2  where sql_text like '%select empno,job from%';
    SQL_TEXT
    INVALIDATIONS HASH_VALUE EXECUTIONS      LOADS
    select empno,job from emp where job='SALESMAN' and empno=:b1
                0 2065003705          2          *2*
    select empno,job from emp where job=:"SYS_B_0" and empno=:b1
                0 3727168047          1          1The hash value 2065003705 (cursor_sharing=exact) is shared as executions column is changed from 1 to 2.
    So after setting parameter cursor_sharing = similar why the hash value of 3727168047(cursor_sharing=similar)
    is not shared?I guess something is cached at session level but i want to know the exact reason..
    Again i flushed the shared pool
    test >alter system flush shared_pool;
    System altered.
    Elapsed: 00:00:03.09
    17:39:40 test >select sql_text,invalidations,hash_value,executions,loads from v$sqlarea
    17:39:44   2  where sql_text like '%select empno,job from%';
    SQL_TEXT
    INVALIDATIONS HASH_VALUE EXECUTIONS      LOADS
    select empno,job from emp where job='SALESMAN' and empno=:b1
                0 2065003705          0          2The hash value of 3727168047(cursor_sharing=similar) is removed ..not hash value 2065003705
    What is the reason behind that ...
    Regards,
    Meeran

    Meeran wrote:
    The hash value 2065003705 (cursor_sharing=exact) is shared as executions column is changed from 1 to 2.
    So after setting parameter cursor_sharing = similar why the hash value of 3727168047(cursor_sharing=similar)
    is not shared?I guess something is cached at session level but i want to know the exact reason..Because there is a query in the shared_pool with same literal value so it doesn't have to use the hash 3727168047 and substitute the bind where it already has a plan for the same statement which is 2065003705.
    I think with setting CURSOR_SHARING=similar again, If you try the query with JOB='ANALYST' then it will use the plan 3727168047 and substitute the bind with 'ANALYST'.
    Again i flushed the shared pool
    test >alter system flush shared_pool;
    System altered.
    Elapsed: 00:00:03.09
    17:39:40 test >select sql_text,invalidations,hash_value,executions,loads from v$sqlarea
    17:39:44   2  where sql_text like '%select empno,job from%';
    SQL_TEXT
    INVALIDATIONS HASH_VALUE EXECUTIONS      LOADS
    select empno,job from emp where job='SALESMAN' and empno=:b1
    0 2065003705          0          2The hash value of 3727168047(cursor_sharing=similar) is removed ..not hash value 2065003705
    What is the reason behind that ...If you have noticed, the executions for the hash plan 2065003705 are 0 after the shared_pool flushing. It seems that with flush shared_pool, oracle doesn't flush the queries with literals and just reset their stats. As literals are always the culprits.
    You may also wanna read this, as good document on CURSOR_SHARING.

  • Is there any server from vmware which supports OSGI and works similar to all functionalities of vFabric tc server?

    Hi,
         We have currently  built web applications which are in complience with OSGI and runs on  FUSE ESB. Recently we have gone through vFabric tc server which is based  on open source Apache tomcat. Is there any other server from vmware which supports OSGI and works similar to all functionalities of vFabric tc server?
    I  am not sure whether this is the right place to post this question.   Please let me know if i have to post this question anywhere else?
    Thanks,
    Prathap

    Hi Prabhat Y,
    Per my understanding that you are doing the migration from SSRS 2005 to SSRS 2008 and now you are re-creating the 3500 subscriptions in the SSRS 2008, so you want to the new created subscription in SSRS 2008 will be pause and not execute at this time, right?
    Generally, we have several method to pause the subscription processing, please reference to details information below:
    When you created an subscription, an new Sql Server Agent job will be created too, so you can you can just uncheck the 'enabled' checkbox in the job properties as below to disable the execution of the job,you can also  stop the SQL Server Agent Services
    manually, all your subscriptions will stop running:
    More information, Please reference to: 
    How to temporarily stop SSRS subscriptions
    You can also disable a Shared Data Source, pause a Shared Schedule to pause the subscription processing.
    Pause Report and Subscription Processing
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • How to export iPhoto Album in iMAC and have similar folder structure(with Timestamps) which can be viewed in finder

    How to export iPhoto Album in iMAC and have similar folder structure(with Timestamps) which can be viewed in finder
    In simple terms, I wanted to view the photos in Windows system, similar strcture of iPhotos

    If you want to copy all of your photos to a Windows machine and have them in folders representing the iPhoto Events the were in quickly and easily just do the following:
    1  - open the library with the Finder as shown in this screenshot:
    2 - COPY the Originals/Masters folder to the Desktop.
    3 - copy the Originals/Masters folder to the Windows machine.
    This will give you all of your original image file in their Event folder on the Windows machine.
    NOTE:  With iPhoto 8 or newer the Event folders in the Masters folder will be titled by date (EXIF) if imported from a camera.  If imported from a folder the event folder will have the same title as the source folder.  If imported singularly or in a group without a folder the title will be a date, either the EXIF date or import date.
    With iPhoto 7 (08) and earlier the Event folders in the Originals folder will have the same title as the Event has in the library.
    This method would be quicker but not provide the additional metadata you might have added in iPhoto like keywords, titles, descriptions that exporting out of iPhoto with Format=JPEG and the checkboxes selected to include keywords, titles, places, etc, checked.
    OT

  • Recently PopClip stopped showing "Cut," "Paste," and other similar options

    Hello,
    Recently, PopClip stopped showing "Cut," "Paste," and other similar options. I haven't changed anything in the settings. Maybe this will help:
    2013-06-04 18:55:22.886 PopClip[1167:707] [INFO] PopAppDelegate: PopClip Initializing.
    2013-06-04 18:55:23.089 PopClip[1167:707] Could not find image named 'BuyLabel'.
    2013-06-04 18:55:23.093 PopClip[1167:707] Could not find image named 'BlueTick'.
    2013-06-04 18:55:23.162 PopClip[1167:707] NSWindow does not support nonactivating panel styleMask 0x80
    2013-06-04 18:55:23.164 PopClip[1167:707] [INFO] PopAppDelegate: PopClip will wait 0.500000 seconds to start.
    2013-06-04 18:55:26.591 PopClip[1167:707] .sdef warning for argument 'FileType' of command 'save' in suite 'Standard Suite': 'saveable file format' is not a valid type name.
    2013-06-04 18:55:26.623 PopClip[1167:707] Bartender Loaded
    logout
    Thank you in advance for the help!

    This is something you'll want to address with the developer of PopClip.

  • When I "save page as" I also get a folder with gif images, jscript script files and other similar items. how can I stop this.

    When I "save page as" via the file button at the top edge of the page, I also get a folder containing gif images, jscript script files and other similar items. I am not is allowed to delete it unless I also delete the page I need. How can I stop this from happening. is it the way I've configured firefox perhaps.
    == since I installed firefox

    Make sure that you have selected "Web Page, complete" to save the page.

  • The Apple Mail group my sent and received similar messages in my inbox, how can i disable this? I just want to see the messages i received, not the ones i sent!

    The Apple Mail group my sent and received similar messages in my inbox, how can i disable this? I just want to see the messages i received, not the ones i sent!

    Mail/Preferences/Composing. Do you have the CC myself box checked?

  • I bought a mic for my ipod touch 2nd gen and the mic works yet when its plugged in the speakers dont work, meaning i cant hear, so skype and other similar apps are un-useable, is there a way in which the mic and speakers will both work together?

    I bought a mic for my ipod touch 2nd gen and the mic works yet when its plugged in the speakers dont work, meaning i cant hear, so skype and other similar apps are un-useable, is there a way in which the mic and speakers will both work together?

    Looking at the details for this mic, it appears that the app has to have the option to use the internal specak when a mic is plugged into the headphone jack. Specifically:
    NOTE: When MityMic is plugged into your iPod/iPhone you won’t be able to use the onboard speaker for sound output. You must remove the MityMic then play back your recordings. (The Skype app has an option to enable the onboard speaker even when the mic is plugged in, so you could use MityMic for placing Skype calls. However most other apps do not have this function.)
    The above is from:
    http://touchmic.com/products-page/view-all-products/touchmic-mitymic---voice-rec ording-and-interview-mic/

  • How to get rid of 3rd party and others similar annoying adds????

    How to get rid of 3rd party and others similar annoying adds????

    If you have somehow acquired adware or malware, or maybe some add-ons to your browser
    that can be seen in that part of your preference controls for the browser, you may be able to
    follow instructions on adware removal to be sure that isn't the problem. You can also go into
    the browser and be sure the add-ons don't load.
    Some items such as Spigot, genieo, and others can be included in free download or other sites
    where the content is spiced with badware; sometimes a click-to-download gets you some other
    content instead of what you thought it was. There even are browser redirecting items that keep
    you looking at some page you don't want; and if you click on stuff, you may get more badware.
    •Adware Removal Guide:
    http://www.thesafemac.com/arg/
    •Adware Medic: (removal method)
    http://www.adwaremedic.com/index.php
    •Mac Malware Guide:
    http://www.thesafemac.com/mmg/
    Some may suggest also using a tool by the name Etrecheck, but this by itself does nothing if
    you don't know what to do next, however it does give you a partial list of some potential items
    that could be indicative of troublesome software or adware, stuff to also remove.
    •About EtreCheck
    http://www.etresoft.com/etrecheck_story
    Hopefully this may be of help, and should be useful to understand &/or indentify issues.
    Good luck & happy computing!

  • Problemas com o CURSOR_SHARING = SIMILAR

    Olá,
    Sou DBA de uma empresa que utiliza o Oracle 10G, e recentemente realizei uma alteração (para efeito de teste) do parâmetro CURSOR_SHARING. Alterei ele do seu valor default "EXACT" para o valor "SIMILAR".
    Com a alteração, a taxa de hard parse diminuiu, e obtive um alto índice de reuso de query (ou scripts de modo geral).
    Os testes estavam indo bem, quando és que surge uma consulta semelhante a seguinte:
    select 'teste' as campo, 'Y' as tipo from dual
    union
    select 'teste1', 'N' from dual;
    Com o parâmetro alterado, essa consulta foi interpretada como:
    select '"SYS_B_0"' as campo, '"SYS_B_1"' as tipo from dual
    union
    select '"SYS_B_2"' as campo, '"SYS_B_3"' as tipo from dual;
    Até então, tudo ocorreu conforme esperado, porém na aplicação que faz uso dessa base existia um teste:
    <%
    'Código ASP
    if cstr(rs.fields("tipo")) = "Y" then
    << fazer algo >>
    else
    << fazer algo >>
    end if
    %>
    Mesmo quando o retorno da consulta era = "Y", nunca entre no if (e eu testei a consulta e ela realmente retornava Y).
    Quando fui verificar o retorno pela aplicação, o campo "tipo" retornava "Y ¢¥¥├ò", ou seja, com um lixo após o valor.
    Rodei a mesma consulta pelo sqlplus, e realmente o valor do retorno era apenas "Y".
    Tentei alterar o provider da string de conexão do banco para ver se era esse o problema, mas o mesmo persistiu. O Oracle Client no servidor da aplicação é o 10G.
    Não consegui entender o erro, e em todas as documentações e livros que pesquisei, os problemas oriundos da alteração desse parâmetro acarreta apenas em queda de performance (devido a por exemplo reutilizar um plano NÃO otimizado para uma consulta).
    Esse problema inviabilizou a alteração que se comportara muito bem em outros aspectos.
    Entendo que quando pensamos em reuso através de bind variables, associamos apenas à alterações dos parâmetros na seleção dos dados e não na projeção como é o caso citado.
    Alguém tem alguma ideia sobre o que pode ser e se tem alguma alteração que possa ser feita para conseguir o ganho da performance dos "soft parses"?
    Grato desde já.

    Hi,
    I'm a DBA for a company that uses Oracle 10G (release 10.2.0.3), and recently realized a change (for the purpose of testing) on parameter CURSOR_SHARING. I changed it to value "SIMILAR".
    With the change, the rate decreased hard parse, and got a high degree of reuse of query (and scripts in general).
    The tests were going well, when the query below arose:
    select 'test' as campo, 'Y' as tipo from dual
    union
    select 'test1', 'N' from dual;
    With the changed parameter, this query was interpreted as:
    select '"SYS_B_0"' as campo, '"SYS_B_1"' as tipo from dual
    union
    select '"SYS_B_2"', '"SYS_B_3"' from dual;
    Until then, everything went as expected, but the application that uses the database has a test:
    <%
    'ASP code
    if CStr (rs.Fields ("tipo")) = "Y" then
    << something >>
    else
    << something >>
    end if
    %>
    Even when the query was returning = "Y", never executed the if clause (and I tested the query and it really returned "Y").
    When I check the return by the application, the field "tipo" returned "Y ¢ ¥ ò ¥ ├", with a dirty code after.
    I execute the same query through sqlplus, and really the value of the return was only "Y".
    I tried changing the provider in the string connection of the database to see if that was the problem, but it persisted. The Oracle Client on the application server is 10G.
    I could not understand the error, and all documentations and books I researched, the problems arising from the change of this parameter causes only drop in performance (eg due to reuse a NOT optimized plan for a query).
    This problem prevented the change that had behaved very well in other respects.
    I understand that when we think of reuse through bind variables, only associate the changes of the parameters in the selection of the data and not in the projection as in the case cited.
    Anyone have any idea about what can be and if you have any changes that may be made to achieve the performance gain of the "soft parses"?
    Thankful now.
    <<< Sorry for my english >>>

  • ORA 01745 (invalid host/bind variable name) and CURSOR_SHARING

    For the past couple of weeks, a user has had an issue with an application in the production environment only. I've had the vendor looking at it but they were limited since it could not be reproduced in our DEV environment. I finally had some time to look into it myself and I found the problem SQL statement. The issue boils down to this, "SELECT 'N' INDICATOR FROM DUAL;" returns an ORA-01745 error. If I rename "INDICATOR" to "INDICATO" or if I add an "AS" before the alias, the query works fine. However, it would require the vendor to change the code in the application which is not likely (not for free at least). However, I also found if I change the CURSOR_SHARING from SIMILAR to EXACT, then it works. This was the reason for the difference between DEV & PRD. PRD is set to SIMILAR while DEV is set to EXACT. The prospect of setting PRD to EXACT to appealing as I'm afraid it may affect performance in other areas. But, in the end, that may be the only solution. However, I was hoping there might be some other parameter that I am not aware of that may also fix this issue. I am running 10.2.0.4. Any help would be appreciated.

    I'm not sure.
    To what extent can you reproduce the problem? Can you isolate it to the db only via sql*plus? Or does this other software need to be involved?
    You may to do some end-to-end tracing including client/driver side.
    If you raise with Oracle Support, you may find out more.
    I take it that the software doesn't really issue this statement:
    SELECT 'N' INDICATOR FROM DUAL;" and it's part of a bigger statement?

  • Create  structure and table similar to a dynamic table.

    Hi,
    i need to create a structure  similar to that of a dynamic table. your help will be appreciated.
    Thanks,
    KK.

    REPORT z_dynamic.
    TYPE-POOLS : abap.
    FIELD-SYMBOLS: <dyn_table> TYPE STANDARD TABLE,
                   <dyn_wa>,
                   <dyn_field>.
    DATA: dy_table TYPE REF TO data,
          dy_line  TYPE REF TO data,
          xfc TYPE lvc_s_fcat,
          ifc TYPE lvc_t_fcat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p_table(30) TYPE c DEFAULT 'T001'.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      PERFORM get_structure.
      PERFORM create_dynamic_itab.
      PERFORM get_data.
      PERFORM write_out.
    *&      Form  get_structure
    *       text
    FORM get_structure.
      DATA : idetails TYPE abap_compdescr_tab,
             xdetails TYPE abap_compdescr.
      DATA : ref_table_des TYPE REF TO cl_abap_structdescr.
    * Get the structure of the table.
      ref_table_des ?=
          cl_abap_typedescr=>describe_by_name( p_table ).
      idetails[] = ref_table_des->components[].
      LOOP AT idetails INTO xdetails.
        CLEAR xfc.
        xfc-fieldname = xdetails-name .
        xfc-datatype = xdetails-type_kind.
        xfc-inttype = xdetails-type_kind.
        xfc-intlen = xdetails-length.
        xfc-decimals = xdetails-decimals.
        APPEND xfc TO ifc.
      ENDLOOP.
    ENDFORM.                    "get_structure
    *&      Form  create_dynamic_itab
    *       text
    FORM create_dynamic_itab.
    * Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = ifc
        IMPORTING
          ep_table        = dy_table.
      ASSIGN dy_table->* TO <dyn_table>.
    * Create dynamic work area and assign to FS
      CREATE DATA dy_line LIKE LINE OF <dyn_table>.
      ASSIGN dy_line->* TO <dyn_wa>.
    ENDFORM.                    "create_dynamic_itab
    *&      Form  get_data
    *       text
    FORM get_data.
    * Select Data from table.
      SELECT * INTO TABLE <dyn_table>
                 FROM (p_table).
    ENDFORM.                    "get_data
    *&      Form  write_out
    *       text
    FORM write_out.
    * Write out data from table.
      LOOP AT <dyn_table> INTO <dyn_wa>.
        DO.
          ASSIGN COMPONENT  sy-index
             OF STRUCTURE <dyn_wa> TO <dyn_field>.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
          IF sy-index = 1.
            WRITE:/ <dyn_field>.
          ELSE.
            WRITE: <dyn_field>.
          ENDIF.
        ENDDO.
      ENDLOOP.
    ENDFORM.                    "write_out

  • Soliciting advice on Norton 2007-2008 (and other similar utilities) compatibility....

    ...with the ThinkVantage software suite...
    Just got my t61 (3g, XP Pro) last week and I now want an internet protection software suite that will not slow down my system (as much as NIS does). So my questions are:
    - Does anyone know of compatibility issues with products from Kepersky, AVG, etc and the ThinkVantage suite that is preloaded from Lenovo?
    - Will a simple Control Panel "uninstall" eliminate any trace of the Norton software that could still interfere with my operating system?
    - What else am I not thinking about?

    Hello,
    In my experience, many anti-virus programs leave "remnants" of themselves after automatic removal such as signature update schedulers, file system filter and NDIS stack device drivers, services and so forth.  It is advisable to run the manufacturer's "manual" uninstall utility or follow their instructions to remove any objects left on the system post-uninstall.
    Symantec provides a utility called the Symantec Norton Removal Tool which does this for their software.  The latest version can always be found at http://www.symantec.com/symnrt/.  Other vendors have similar tools.
    Regards,
    Aryeh Goretsky
    I am a volunteer and neither a Lenovo nor a Microsoft employee. • Dexter is a good dog • Dexter je dobrý pes
    S230u (3347-4HU) • X220 (4286-CTO) • W510 (4318-CTO) • W530 (2441-4R3) • X100e (3508-CTO) • X120e (0596-CTO) • T61p (6459-CTO) • T43p (2678-H7U) • T42 (2378-R4U) • T23 (2648-LU7)
      Deutsche Community   Comunidad en Español Русскоязычное Сообщество

  • Look and Feel similar to sub7

    Please dont delete this message, im not promoting illegal activities!
    I just want to know how to produce a LAF similar to the one used in sub7, it looks very modern looking and i like the quick response. Can someone advise me how to produce my own LAF?
    thanks

    Why the extra post, when you already have one response on your earlier post?
    [Want to design a LAF as seen in sub7|http://forum.java.sun.com/thread.jspa?threadID=5306839|nitwit]
    db

Maybe you are looking for

  • Crystal Reports, SAP B1 - connect OINV, OPCH (A/R Invoice, A/P Invoice)

    What I need to do is to connect the two SAP B1 v9.0 tables listed above (A/P Invoice OINV, and A/R Invoice OPCH) in a Crystal report WITHOUT SQL.  How do you connect these tables?  Purpose of report is for sales commissions.  Existing customer report

  • Tasks in iCal XML: Anyone know why?

    Hi, I love the fact we have VCF as a standard for exchanging contacts and ICS as a standard for exchanging schedules, but I'm perplexed why there is no standard for tasks. To that end, does anyone in this forum have a notion why Apple chose to embed

  • What's wrong with my MBP???

    I'm getting the beachball frequently when using Safari and Microsoft Office. At times the beachball doesn't go away for even 1-2 hours, so now I have to frequently hold the power button to reset it. Sometimes when I reset it and get to the start up s

  • New app "Photos" can't edit a photo in another application

    new app "Photos" doesn't allow user to edit a photo in another application. iPhoto allows me to edit a photo in Photoshop.

  • HCM : workflow not triggered

    Hi expert, when i tes my process (hcm fomrs and porcess), i have thi error message Workl item not created !! the worklfow is customze correctly (te exit, type linkage is ok, su53 too) ? what could be the raison ? Thanks