Dynamically apply gather_plan_statistics hint to a sql_id

Hello,
We have set statistics_level=typical in our production database. And we do not have GATHER_PLAN_STATISTICS hint in any of our queries either. The reason being it can be performance inhibitor in production.
Now I want to get ALLSTATS for a particular sql_id that is running in production no matter what session it's in. My question is whether there is any way I can dynamically apply GATHER_PLAN_STATISTICS hint to a specific sql_id just for a few minutes in production and get detailed information for a few executions and then turn it off after a while? It would be tantamount to setting a 10046 trace for a session for a while.
Does anyone know if and how to do this?
Also, is there any way to add MONITOR hint to a sql_id in similar fashion?
Thanks

Hi,
sure I can, but it's not suppressing anything:
SQL> set termout off
SQL> select 1 from dual connect by level<=50;
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
         1
50 rows selected.
SQL>Best regards,
Nikolay

Similar Messages

  • Is it even possible to dynamically apply view criteria in an ADF Web App?

    This is one of those situations where something that should take an hour ends up taking days.
    * I have a view.
    * The view has Bind Variables associated with it.
    * The view has View Criteria associated with it.
    * Each of the View Criteria use different Bind Variables.
    * I have a search criteria input page that receives from the user what will ultimately be used to set the bind variables.
    * I have a search results page that uses the view to display a table.
    * I have the code that dynamically sets view criteria and parameters. It is based on the following:
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#BCGFHAGA
    * This code works great, until the iterator associated with the table binding to the view is initialized. At that time, the view is reset to its defaults, and all of my code's doings are discarded. How do I know this? Because I have gone so far as to run my code that sets view criteria and binding variables dynamically in a phase event handler for the search results page in the render response phase. There is no other point at which to dynamically modify the view.
    This is turning into a situation where it seems I will need 5 different views and 5 different pages in order to show a single set of query results. I cannot get dynamically applied view criteria to work in an ADF web app. Has anyone else done it? Can anyone relate to this? Are there any other suggestions before I conclude that it's not possible for this framework to handle this simple scenario?
    Thanks

    There must be a setting or something that I am still missing here. If I write code just like this and make sure it is executed, I still only see the results of my view executed without the view criteria applied using the default bind variable values that I supplied in the view object.
    It's like the fact that I set the bind variables, the view criteria, and executed the view query programmatically is lost on the iterator -- it's like it never happened. What setting is used to ensure that the iterator uses the outcome of what I executed programmatically? There has to be a critical set or setting that I am missing.
    Here is the iterator and search region definitions defined in the page def "executables" section:
      <executables>
         <iterator Binds="CustomSearchView1" RangeSize="25"
                  DataControl="AppModuleDataControl"
                  id="CustomSearchView1Iterator"/>
        <searchRegion Binds="CustomSearchView1Iterator"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      id="CustomSearchView1Query"/>
        </executables>Here's the "tree" binding in the page def file:
      <bindings>
       <tree IterBinding="CustomSearchView1Iterator" id="CustomSearchView1">
          <nodeDefinition DefName="Model.CustomSearchView" Name="CustomSearchView10">
            <AttrNames>
              <Item Value="CustomId"/>
              <Item Value="CustomProjectNumber"/>
              <Item Value="CustomName"/>
              <Item Value="CustomStatus"/>
              <Item Value="CustomStatusDate"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
      </bindings>In an effort to take page flow out of this mess, I had modified this to include the search criteria and search results on a single page. So, I now have a "Search" button. When the "Search" button is clicked, the action method does the following:
        public String searchActionListener ()
              // Get search criteria from select one choice and text input controls.
              AppModule appModule =
                    ( AppModule ) Configuration.createRootApplicationModule (
                        "Model.AppModule",
                        "AppModuleLocal");
              appModule.customSearch( searchCriteria1,
                                                   searchCriteria2,
                                                   searchCriteria3 );
        }In my application module this translates to:
        public void customNoticeSearch ( String searchCriteria1, String searchCriteria2, String searchCriteria3)
           CustomSearchViewImpl searchViewImp =
               ( CustomSearchViewImpl ) this.getCustomSearchView1 ();
           searchViewImp.customExecuteQuery ( searchCriteria1, searchCriteria2, searchCriteria3);
        }Finally, in my custom view object implementation code:
        public void customExecuteQuery ( String searchCriteria1, String searchCriteria2, String searchCriteria3 )
            // Set-up the parameters that are part of the core query.
            this.setp_searchCriteria1( searchCriteria1);
            this.setp_searchCriteria2( searchCriteria2);
            if ( searchCriteria3 != null )
                ViewCriteriaManager vcm = this.getViewCriteriaManager();
                ViewCriteria vc = vcm.getViewCriteria ( "WithLastCriteria" );
                this.setp_searchCriteria3( new Number ( searchCriteria3 ) );
                this.applyViewCriteria( vc );
            System.out.println ("This is fun.");
            this.executeQuery();
        }This code executes, but the results table is empty, and I know that there are results, because I can execute use execute with params to execute the base query and get the correct results back.
    Thanks for taking a look at this.

  • Gather_plan_statistics hint ignored

    Hi,
    I am facing a situation when my gather_plan_statistics hint gets occasionally ignored. ALTER SESSION SET STATISTICS_LEVEL = ALL doesn't help either. I suspect that this may be one of Toad irregularities. I was given advice to run the query in sqlplus to make rowsource stats work. However, there is a problem: I don't know how to suppress the output.
    My concern is that if I don't suppress it, the timing information in the plan will be wrong (because of terminal output being slow).
    I googled and I found suggestion to use set autotrace traceonly. However, it doesn't work because the user doesn't have proper privileges for that (I have to run query under a user that only has access to the application tables, and then use another user to query v$sql, v$sql_statistics etc.).
    So my questions are:
    1) am I right to be concerned about slow terminal output screwing up timing information in the plan?
    2) if yes, then how do I resolve the problem?
    Version information: Oracle 10.2.0.5, Toad 11.0.
    Best regards,
    Nikolay

    Hi,
    sure I can, but it's not suppressing anything:
    SQL> set termout off
    SQL> select 1 from dual connect by level<=50;
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
             1
    50 rows selected.
    SQL>Best regards,
    Nikolay

  • Gather_plan_statistics hint result not visible

    on my Oracle 11.2.0.1, I tried to use that hint as in example:
    set autotrace on explain
    select /*+ gather_plan_statistics */ 'x' from dual;
    Execution Plan
    Plan hash value: 272002086
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |     2 |     2   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| DUAL |     1 |     2 |     2   (0)| 00:00:01 |
    --------------------------------------------------------------------------as you see, there's no additional columns (E-rows, A-rows), and I don't know why.
    what could cause this?
    regards

    This is just yet another limitation to autotrace. Use dbms_xplan and format the data how you need it.
    SQL> select /*+ gather_plan_statistics */ 'x' from dual;
    x
    SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'allstats'));
    PLAN_TABLE_OUTPUT
    SQL_ID  gxug7sz6nhqc3, child number 0
    select /*+ gather_plan_statistics */ 'x' from dual
    Plan hash value: 1388734953
    | Id  | Operation        | Name | Starts | E-Rows | A-Rows |   A-Time   |
    |   0 | SELECT STATEMENT |      |      4 |        |      4 |00:00:00.01 |
    |   1 |  FAST DUAL       |      |      4 |      1 |      4 |00:00:00.01 |
    PLAN_TABLE_OUTPUT
    13 rows selected.Read more about the parameters and usage here:
    http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_xplan.htm

  • Dynamically applying OVS on input field

    Hi,
    I have table with drop DropDownByKey UI element in one column. In all the other columns i have input field. Now based on the value of the DropDownByKey i have to apply the OVS on the input fields of the table column.
    Now my question is how can i apply the OVS dynamically.
    I can not change the properties of attributes, so want to change them dynamically.
    Thanks,
    Reeha Verma.

    Hi,
    You can check the value of context attribute binded to dropdown(KEY) and accordingly formulate the Input structure and output table.
    It seems that you have to do the data declecration in advance for all the possible values of dropdown.
    If you want to avoid the data decleration in advance then i think you have to dynamically create the context node and attribute to acheive the functionality.
    If you have limited values in DropDown then i think you can go with data decleration otherwise please try out with Dynamic context programming.
    Thanks,
    Rahul

  • Can I dynamically apply a page template or embed a region in multiple pages

    I have some pages that I would like to be accessible in two ways:
    1. as a popup (using the Popup template) in Edit mode
    2. as a regular page (using the Application's default template) in New mode
    I don't want to make a copy of each page as that is a maintenance headache that shouldn't be necessary. Is there a way to either:
    1. Dynamically select the template when the page loads OR
    2. Create a region that can be shared by two or more pages (like an asp "Include"). I looked for this option in my Shared Components and could not find it.
    As always, creative solutions much appreciated!
    Sydney

    Hello,
    I believe page 0 is what you are looking for. Please read more about it in here -
    http://download-uk.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/ui.htm#sthref1159
    Regards,
    Arie.

  • Dynamically applied css is ignored

    Hello,
    I have come up against a recurring problem when using edge; when I try to apply css through code (rather than through the UI and timeline), it seems to get ignored if I have designed a value into that element's base state. I think I must be missing something, as this functionality is so basic to things like giving user feedback on button clicks.
    Case in point: I have a symbol "bigButton" on the stage. bigButton contains three divs(Easy, Medium and Hard) of different colours, each with a border. To target one of these, and test I'm getting the right element, I do the following:
    var theButton = sym.getSymbol("bigButton");
    var easyBtn = theButton.$("Easy");
    easyBtn.css("border", "3px solid red");
    No red border is applied, but developer tools reveal that I am targeting the correct element. I did a similar test in another document, with shapes that i had not applied a border to, and this time the red border appeared. If anyone has any suggestions or workarounds I would love to know.
    Many thanks,
    Tim

    Try:
    sym.getSymbol("bigButton").$("Easy").css({"border": "3px solid red"});
    Which is simpler. Also, in your button you mention 3 divs. I suppose you should hide the other divs. 
    Now another simple way would be to have 3 labels in your button for each state and stop at these states as needed. You can hide and show each div as necessary for exemple state1 show the red border, state 2 something else... Then play each state with a stop at the label.
    sym.getSymbol("bigButton").stop('state1');
    Etc...
    Sent from Mailbox
    On Mon, Jun 30, 2014 at 2:03 AM, Tim. Signore <[email protected]>

  • Report Developer Control Of Applying Hints to Analytics Queries

    There are numerous ways to apply hints to the queries generated by Analytics:
    - Table level
    - Join level
    - Evaluate calculation
    Each has its advantages and drawbacks.
    - Table level: applies the hint to every query that references the table.
    - Join level: applies the hint whenever the join is used in the query.
    - Evaluate: allows the report developer to include a hint, but can't control where Analytics decides to apply the hint.
    I propose another method for the report developer to apply hints, when needed, that uses join level hints. All the report developer
    does is add the hint column to the Answer or add a filter based on the hint column to the Answer to apply the hint.
    Setup
    NOTE: I suggest you do consistency checks along the way, especially before starting work in the next Layer, to be sure that all setup errors are resolved early.
    1) Start by defining a Logical SQL table in the Physical Layer using the following SQL: Select 1 Hint from dual
    2) Alias this table for each hint to be defined for report developer usage. As an example, alias the hint table, creating
    No Star and Parallel alias tables.
    3) Join each alias to the physical layer fact tables, using a complex join, where the hint could be applied. In the Join definition screen, put the hint in the HINT field and enter 1=1 for
    in the Expression section. Yes, we are creating a cartesian join between the hint and the other joining table. As the hint table always returns one and only one row, there
    is no effect on the rows returned by the query. For No Star, you
    put NO_STAR_TRANSFORMATION in the Hint field. For Parallel, you put PARALLEL(<physical table name>, default, default), where the physical table name
    is the name of the actual database table, not the name of the alias table (Analytics will put the alias in the place of the database table name
    when it generates the SQL). Additionally, for hints that have no parameters, you only need to join it
    to the Fact tables in a query and not necessarily the dimensions. If you include fields from multiple fact tables, the hint will be applied
    for each fact table. So, you may see the hint multiple times in the SQL (something like SELECT /*+ NO_STAR_TRANSFORMATION NO_STAR_TRANSFORMATION */ t00001.col1...)
    4) Add the hint alias tables to the BMM Layer.
    5) Rename the Hint field in each of the BMM hint tables to identify the hint being applied. For No Star, change the column name from Hint to No Star Hint. For Parallel,
    change the column name from Hint to Parallel Hint.
    6) Set the hint column as a key.
    7) Join the BMM hint tables to the appropriate fact tables, using a complex join.
    8) Define each hint table as a dimension.
    9) Set the Logical Level in the Content tab in each of the sources of the joined tables to use the Detail of the hint dimension.
    10) Create a folder in the Presentation Layer called Hints
    11) Place each BMM hint field into the Presentation Layer Hints folder.
    To apply a hint to your Answer, either add the Hint field to your Answer or create a filter where the Hint field is equal to/is in 1 (the number one). Check that the SQL generated
    contains the hint, in Answers, go into Administration, Session Manager, and view the log for the user (the user log level will need to have been set to 7 to see the SQL generated).
    Use of hints in more complex setups can be done by performing a setup of the hints that is parallel to the fact table setup. As an example, if you specify fragmentation content and a where
    clause in your BMM for your fact tables, you would setup parallel physical layer hint tables and joins, BMM objects and joins, fragmentation content, and where clauses based on the
    hint tables (only hint tables are referenced in the where clause).
    As any database person knows, hints can either help or degrade the performance of queries. So, taking the SQL of the pre-hint Answer and figuring out which hints give the best
    performance is suggested, prior to adding the hint fields/filters to the Answer.

    Hi Oliver,
    I would suggest you to have a look at the below WLST script which would give you the required report of the active threads and it would be send an email too.
    Topic: Sending Email Alert for Threads Pool Health Using WLST
    http://middlewaremagic.com/weblogic/?p=5433
    Topic: Sending Email Alert for Hogger Threads Count Using WLST
    http://middlewaremagic.com/weblogic/?p=5423
    Also you can use the below script in case of the stuck threads, this script would send you an email with the thread dumps during the issue occurred.
    Topic: Sending Email Alert For Stuck Threads With Thread Dumps
    http://middlewaremagic.com/weblogic/?p=5582
    Regards,
    Ravish Mody

  • Get IDoc-number from flat IDoc using dynamic configuration

    Dear experts
    In an IDoc2File scenario I have added the IDoc-number to dynamic configuration using the folling code in an UDF:
    DynamicConfiguration conf = (DynamicConfiguration)
    container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey FileName = DynamicConfigurationKey.create("http:/"+"/sap.com/xi/XI/System/File","DOCNUM");
    conf.put(FileName, a);
    The information is stored in the SOAP message
    <SAP:DynamicConfiguration SOAP:mustUnderstand="1">
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="DOCNUM">0000000000012345</SAP:Record>
    </SAP:DynamicConfiguration>
    Can anybody tell me how I can access this information in the "variable substitution" section of the CC? Perhaps something like "message:docnum"?
    Additional information:
    Taking the IDoc-number from the payload using e.g. "payload:ORDERS05,1,IDOC,1,EDI_DC40,1,DOCNUM,1" does not work, since the XML-IDoc has been converted to an flat-IDoc.
    Thanks in advance for any good ideas
    Markus

    Dear Rodrigo and Sarvesh
    Thanks for your help so far! I applied your hints and now it is working fine.
    But now I have the following additional questions
    1.) My message mapping only maps the input IDoc to an output IDoc of the same type and structure. The MM is only required to process the UDF. Is there another, better solution to achieve my requirement that the IDoc-number shall be part of the filename?
    2.) In the CC you have the possibility to use temporary files (section "Processing", Option "Put File" = "Use Temporary File". I think this will not work with the given solution, will it?
    To possibly help somebody else or clarify the mechanism once again, I wrote down how my solution now looks like.
    My UDF in the message-mapping looks like this
    - Input = DOCNUM of IDoc, e.g. ORDERS05/IDOC/EDIDC/DOCNUM
    - Outpt = DOCNUM of IDoc, e.g. ORDERS05/IDOC/EDIDC/DOCNUM
    - UDF:
    public String putDynamicConfiguration(String docnum, Container container) throws StreamTransformationException{
    try
         DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
         DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
         String filename = "Prefix_" + docnum + ".txt";
         conf.put(key, filename);
         return docnum;
    catch (Exception e)
         return docnum;
    In the CC the settings are now as follows
    File Name Scheme = . -> only a dot or something else, because this field is obligatory, even if it is not used in this case.
    Variable substitution (...)
        Enable -> unchecked
    Adapter-Specific Message Attributes
        Use Adapter-Specific Message Attributes -> checked
        Fail If Adapter-Specific Message Attributes Missing -> checked
        File Name -> checked
        Directory, File Type, Temporary Name Scheme for Target File Name -> unchecked
    When I send an IDoc to PI and view the Adapte-Engine Version of the message (the SOAP-document, not the payload) I can find the Filename:
    <SAP:DynamicConfiguration SOAP:mustUnderstand="1">
    <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">Prefix_0000000000012345.txt</SAP:Record>
    </SAP:DynamicConfiguration>

  • Database hints in select statement

    Hi all,
    i need to apply the databaser hints for my select statement where i am using for all entries clause .But the issue is that i am getting the dump when i am tring with the same .
    If i use the hint without all entries clause ,it runs fine.
    The query where  i need to apply the hint is :
      SELECT * FROM bsim                                        "n443935
             INTO CORRESPONDING FIELDS OF TABLE g_t_bsim_lean   "n443935
               FOR ALL ENTRIES IN t_bwkey   WHERE  bwkey = t_bwkey-bwkey
                                            AND    matnr IN matnr
                                            AND    bwtar IN bwtar
                                            AND    budat >= datum-low.
    and the DB hint is:
    Addition of database hints for DB6 as per OSS message 649621
      %_HINTS
      DB6 'USE_OPTLEVEL 7'        " Insert CR-1000000473 Tr-D11K934315
      DB6 '&SUBSTITUTE VALUES&'.
    Let me know whats the issue for the dump in for all entries in clause.

    Did you check if [https://service.sap.com/sap/support/notes/1520152|https://service.sap.com/sap/support/notes/1520152] applies?

  • More than 1 Hint in Select

    Hi
    Is possible put more than a hint in Select ? How can I do ?

    Well, I support what was said by Mark... partially.
    Indeed, hints should be avoided whenever possible. However, I wouldn't claim that hinting is something that should be avoided at all cost.
    How about ALL_ROWS and FIRST_ROWS hints?
    How about DYNAMIC_SAMPLING hint?
    Should we avoid using APPEND hint, after all?
    In my opinion, we need to understand that:
    1. There are hints that have nothing to do with CBO decisions (APPEND, for example). They can't really hurt.
    2. There are hints that sometimes help CBO to make better decisions (DYNAMIC_SAMPLING). I wouldn't call them "bad" as well.
    3. Hints to change optimizer goal (like FIRST_ROWS, ALL_ROWS) - again, they are harmless if applied properly.
    And finally:
    4. Hints that force optimizer to use some fixed access path, join method - in other words to restrict optimizer's search space. These ones are surely bad. They should be used very rarely and considered a "path of last resort".
    But then again - before applying such hints we must understand the nature of underlying problem, the underlying cause of bad execution plans. If we blindly hint one query, it's very likely that we'll need to hint many other queries as the problem tends to re-appear in many places of application code.
    And by the way - Tom uses similar categorization of hints, too:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:23566649273765#47839217291071
    Kind regards.

  • Code hint javascript api

    I am extending dreamweaver to add code hinting and color
    coding to my proprietary scripting language. I am fine with the
    Javascript but I am not sure where I actually place the code so
    that is executed. Any help?

    V_Gary_Nelson wrote:
     I am extending dreamweaver to add code hinting and color
    coding to my proprietary scripting language. I am fine with the
    Javascript but I am not sure where I actually place the code so
    that is executed. Any help?
    Are your code hints static or dynamic?
    Code hints which are static (always the same) can simply be defined in XML. in the Configuration/CodeHits folder
    Code hints which are dynamic (based on objects defined in code) will need to use the JS API.
    HTH,
    Randy

  • Check marks or dynamic items for run-time shortcut menus

    Labview version: 8.0
    I'd like to create a run-time shortcut menu for my Xcontrol, that would
    allow user to toggle between two states of the control. Is it possible
    to either
    1) dynamically apply check marks to run-time shortcut menus or
    2) dynamically modify the run-time shortcut menu content
    Tomi
    Tomi Maila

    Hi Tomi,
    Great question.  Yes, you can do what you want with run-time shortcut menus in LabVIEW 8.0.  If you want to dynamically modify the menu content, you have to do it in the "Shortcut Menu Activation?" event in the facade VI of the XControl.  In the event data for this event is a parameter called "MenuRef" which works with the same menu primitives that have been around since LabVIEW 5 for editing the menu bar at run-time. 
    With these primitives, you can add/delete/modify menu items to the shortcut menu.  The items that are already in the MenuRef when this event case executes are always the ones that are statically defined, either by LabVIEW or by customizing them.  You do not have control over the state of the items that LabVIEW adds, but you can remove them and add ones with the same text (just with a different tag).  In your case, you would probably want to use the Insert Menu Item primitive to add an item such as "Toggle State".  Give it a tag such as "USER_TOGGLE_STATE".  Then you'll want to use the Set Menu Item Info primitive to set the checkmark for that item based on the state of the XControl.
    Then, you'll need to add an event case for the "Shortcut Menu Selection (User)" event so you can handle the item being selected.  Wire the Item Tag parameter from the event data to a case structure and add a case to look for "USER_TOGGLE_STATE".  And in that case, toggle the state of your XControl.  That's all you need to do!
    The Dual Mode Thermomter shipping example in <LabVIEW 8.0>\examples\general\xcontrols\Dual Mode Thermometer\Simple Dual Mode Thermometer XControl.lvproj is a simple example of how you can modify the menu and respond to the items selected.  It's a little different than what you want to do, but it might help you to look at it.
    Good luck!  Let me know if you have questions.
    Robbie

  • Load an external .mov (quicktime movie hinted) file

    Hi guys!
    Sorry for the bad bad bad english ^_^'
    I have some .mov files that they are dynamic realizations
    (movie hinted). This movie files have the possibility to explore
    itself through mouse and keyboard.
    If the .mov file were a normal movie I would have resolved
    the problem. Problems are:
    - Flash doesn't recognize the "special" format (movie hinted)
    if I try to import it.
    - If I convert the .mov in a .flv it produces a static image
    and not an interactive movie as I want.
    - The mediaplayback component is limited to the use of the
    .flv, right?
    - The "loadMovie" string doesn't load the .mov.
    I'd try, maybe, all possibility. I don't know if exist a
    tutorial that explain how load .mov files in flash simply
    specifying a link.
    Can you help me? I use Flash MX 2004 Pro
    Thanks, bye

    Hello.
    This post was a very long time ago but I am having this
    problem now and I was wondering if you had any solutions?
    I have a 3D phone that my client wants to spin around so the
    consumer can see it from all sides. The .mov file works fine as it
    is but, apparently, you cannot use anything but .flv in Flash. Any
    help would be like gold and thank you in advance.

  • Code Sample: Improved Calender code applying to form.

    Hi friends,
    Here I developed a Code for dynamically applying Calender code to form. The code is available to your mail address.
    regards,
    Praveenkumar Talla

    <font color=red size=4><b>Everyone READ THIS</b></font>
    <p>Praveenkumar Talla has not participated in any Oracle forum since 2004, so he will not be reading your requests here.
    <p>His website is here,
    <p>and you can email him directly at:   [email protected]
    <p>or:   [email protected]
    <p>Or why don't you go to Oracle's website where you can download a calendar form example. Read this thread, and the post by a.j.woodward: Re: Calendar Source Code available
    <p><font color=red size=4>Do not post a request with your email address here!</font>

Maybe you are looking for