difference between schyncrinize and post

Hello

Please excuse my ignorance, but I want you to answer this question in simple words with an example of cuz I've read in various places and can't understand:

What is the difference synchronize between the two; and post; in oracle 10g form, a form that I use a button to delete a record, the record is deleted and all except that it is always displayed on the screen, I would like to add a "refresh" as command after the delete statement which would eliminate deleted immediately... recording synchronize them and post would do this job?

Thank you very much..

OAIS

Published by: oais on May 18, 2009 08:07

If you browse the block of detail before re - run the query, it will not change the record in the main block.

François

Tags: Oracle Development

Similar Questions

  • What is the difference between extensions and Plugins and Add-ons?

    I'm sorry if here is not the right place for this post.

    What is the difference between extensions and Plugins and Add-ons? Apparantely, they differ in some sense or aspect, but I do not know how. Please, if it is not too complicated, explain in detail and simple language. Thanks in advance to 1 million.

    Kind regards
    Danesh

    Hi Danesh,

    You should take a look at this article for an explanation. Plugins and extensions are essentially types of Add-ons as well as of the characters and themes.

    Hope this helps!

  • Dot1x - difference between "mab" and "mab eap.

    Hi guys,.

    can someone explain the difference between "mab" and "mab eap" for me?

    I'm doing dot1x with EAP - TLS with MAB as a backup method.

    The explanation that I found in the config guides are very poor.

    Thank you for your help.

    Mathias

    Hello Mathias.

    This is an old post but I stumbled across it while trying to find another post I answered before. In case you have not found an answer yet, please take a look at this thread where I think you'll find your answers.

    https://supportforums.Cisco.com/message/3768500#3768500

    Kind regards

    Thanks for the note!

  • JavaScript - the difference between ' window ' and 'document.'?

    Hello

    I'm a Javascript newbie which ended just by the first screen of Captivate (CP9) (HTML5) using Javascript.

    A slide with several text entry areas (TEBs) and a Submit button, which performs a function to validate the TEBs (thank you David for have started me).

    I call the function in the script of the Submit button window and have Javascript code in the Index file.

    In the Javascript code, I used the ' windows ' and 'document '. (don't know if I've used them correctly but the works of Javascript)

    I don't really know the difference between them.

    In Javascript, I know that window is loaded in the browser first, then the document is loaded in the window.

    It's like the window is your browser window and the document is the HTML page inside.

    Also, you can use each of them to access specific properties - and window has a context.

    Some examples of my javascript:

    • window.cpAPIInterface.setVariableValue ("q1_fback", "");         -erase a message of feedback (text of legend with variable) associated with BER
    • document.getElementById("Text_Entry_Box1_inputField").style.border = 'solid red medium. "  -modification of the border of an object invalid BER (red)

    My question is:

    1. What is the difference between ' window ' and "document." in a context of Captivate?

    I will post you more questions to find out how:

    1 use loops to knock down my code

    2 reuse the same function in other slides

    Concerning

    Donal.

    Your assumptions are correct.

    the cpAPIInterface is in the window.

    The Text_Entry_Box1_inputField is in the document, not the window, but you can use:

    window.document.getElementById("Text_Entry_Box1_inputField").style.border = 'solid red medium. "

    Scope of variables depends on how and when they are declared, and it is generally best to limit their scope and not use them globally in the window object. All seem to be available in the cPs variables window.

  • The differences between CAT and table TAB

    1. What is the difference between cat and TAB?
    2. why TAB does not exist in dict?
    3. that the same situation for cat and TAB?

    Thanks a lot for your answer kindly.

    sys@ORCL > cat desc
    Name Null? Type
    ----------------------------------------------------- -------- ------------------------------------
    TABLE_NAME NOT NULL VARCHAR2 (30)
    TABLE_TYPE VARCHAR2 (11)

    sys@ORCL > tab desc
    Name Null? Type
    ----------------------------------------------------- -------- ------------------------------------
    TNOM NOT NULL VARCHAR2 (30)
    TABTYPE VARCHAR2 (7)
    NUMBER OF CLUSTERID

    sys@ORCL > select * dict where table_name = "CAT";

    TABLE_NAME COMMENTS
    ---------- -----------------------------------
    Synonym of cat for USER_CATALOG


    sys@ORCL > select * dict where table_name = 'USER_CATALOG ';

    TABLE_NAME COMMENTS
    -------------------- -----------------------------------------------------------------
    USER_CATALOG Tables, views, synonyms, and sequences belonged to the user

    You've posted enough to know that, for each position, you will need to provide your version of Oracle 4-digit (SELECT * FROM V$ VERSION)
    >
    1. What is the difference between cat and TAB?
    2. why TAB does not exist in dict?
    3. that the same situation for cat and TAB?
    >
    1, 2, 3 - TAB has been deprecated then don't use it.

    Definitioni of base for those located in the reference database
    http://docs.Oracle.com/CD/B28359_01/server.111/b28320/statviews_2127.htm#sthref1535
    >
    CAT

    CAT is a synonym for USER_CATALOG.
    . . .
    USER_CATALOG

    USER_CATALOG lists all the tables, views, clusters, synonyms, and sequences belonged to the current user. Its columns are the same as those of "ALL_CATALOG".
    . . .
    DICT

    DICT is a DICTIONARY.
    . . .
    DICTIONARY

    DICTIONARY contains descriptions of data dictionary tables and views.
    . . .
    TAB

    TAB is included for compatibility. Oracle recommends that you do not use this view.
    >
    TAB has been deprecated. He looks like the cat because it shows the USER objects, but it does not show the sequences, like the cat.

    If you look at the source code for the views TAB and USER_CATALOG you can see the differences. This code is copyrighted by Oracle Corporation, all rights reserved.

    /* Formatted on 1/1/2013 8:50:07 AM (QP5 v5.115.810.9015) */
    CREATE OR REPLACE FORCE VIEW SYS.TAB
    (
       TNAME,
       TABTYPE,
       CLUSTERID
    )
    AS
       SELECT   o.name, DECODE (o.type#,
                                2,
                                'TABLE',
                                3,
                                'CLUSTER',
                                4,
                                'VIEW',
                                5,
                                'SYNONYM'), t.tab#
         FROM   sys.tab$ t, sys."_CURRENT_EDITION_OBJ" o
        WHERE       o.owner# = USERENV ('SCHEMAID')
                AND o.type# >= 2
                AND o.type# <= 5
                AND o.linkname IS NULL
                AND o.obj# = t.obj#(+);
    . . .
    /* Formatted on 1/1/2013 8:54:45 AM (QP5 v5.115.810.9015) */
    CREATE OR REPLACE FORCE VIEW SYS.USER_CATALOG
    (
       TABLE_NAME,
       TABLE_TYPE
    )
    AS
       SELECT   o.name,
                DECODE (o.type#,
                        0, 'NEXT OBJECT',
                        1, 'INDEX',
                        2, 'TABLE',
                        3, 'CLUSTER',
                        4, 'VIEW',
                        5, 'SYNONYM',
                        6, 'SEQUENCE',
                        'UNDEFINED')
         FROM   sys."_CURRENT_EDITION_OBJ" o
        WHERE   o.owner# = USERENV ('SCHEMAID')
                AND ( (o.type# IN (4, 5, 6))
                     OR (o.type# = 2 /* tables, excluding iot - overflow and nested tables */
                         AND NOT EXISTS
                               (SELECT   NULL
                                  FROM   sys.tab$ t
                                 WHERE   t.obj# = o.obj#
                                         AND (BITAND (t.property, 512) = 512
                                              OR BITAND (t.property, 8192) = 8192))))
                AND o.linkname IS NULL;
    
  • Difference between getDBTransaction and getTransaction

    Hi all
    I have a very basic question. What is the difference between getDBTransaction and getTransaction. Is this good to use them interchangeably? Google reminded me an old post on the forum. Unfortunately, the doc in the post has an invalid link.

    Thank you
    Bala

    I'm assuming you are talking about ADF business components, because you mentioned the method getDBTransaction(), that a specific method of the ADF BC.

    Both methods return the Transaction to the correspondent of the ADF BC ApplicationModule root object.

    getTransaction() is a method that is implemented by the oracle.jbo.server.ApplicationModuleImpl class. The method is defined by the oracle.jbo.ApplicationModule interface, if it can be used in client applications ADF BC and components side BC ADF server.

    getDBTransaction() is implemented in the oracle.jbo.server.ViewObjectImpl and oracle.jbo.server.EntityImpl classes. This method is not defined in the interface client-side oracle.jbo.ViewObject), so it can be used in the components side BC ADF server.

    In fact, the Transaction interface is a superinterface of DBTransaction interface. If you use ADF BC local components (i.e. no remote ADF BC), then the two methods return the oracle.jbo.server.DBTransactionImpl AM root object. If you use remote ADF BC, then the ApplicationModule.getTransaction () method returns an object client that implements the interface of the Transaction and which acts as a proxy for the DBTransactionImpl side of the AM root server-side.

    Dimitar

  • Difference between 'Reload' and "Reload (Override Cache)"?

    Https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly#w_navigation, what is the difference between 'Reload' and "Reload (Override Cache)"? What makes "ignore cache"?

    Reloading Web pages and cache bypass aims to obtain a new copy of perhaps obsolete or damaged files currently stored in the disk cache.
    You can do it like the first attempt if a normal charging does not seem to provide a version of a Web site or if you are having problems with a Web site otherwise.

    We usually have advice that if you have questions:

    Reload Web pages and ignore the cache to refresh potentially stale or corrupt.

    • Hold down the SHIFT key and click the Reload button
    • Press 'Ctrl + F5' or 'Ctrl + Shift + R' (Windows, Linux)
    • Press 'Command + shift + R' (Mac)

    Clear the cache and delete cookies only from Web sites that cause problems.
    "Clear the Cache":

    • Firefox/tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox/tools > Options > privacy > "Use the custom settings for history" > Cookies: "show the Cookies".

    Start Firefox in Safe Mode to check if an extension or theme (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problems.

  • is there a difference between 38 and 42mm with their pixel density?

    is there a difference between 38 and 42mm with their pixel density? the 38mm and 42mm watches have same interns?

    You can see the technical details of the Apple Watch here. Apple - Support - technical specifications

  • What is the difference between Firefox and Namoroka 64-bit? I have a 64-bit computer. Which should I use?

    What is the difference between Firefox and Namoroka 64-bit?
    I have a 64-bit computer. Which should I use?

    The officially supported only is Firefox - which is your best choice, unless you want to test the new features...

    http://www.Mozilla.org/en-us/Firefox/new/

  • What is the difference between dawn and the beta?

    What is the difference between dawn and the beta?

    Beta is the next version of Firefox that is due to be released in 5 weeks, and Aurora is the one after that--like an Alpha version of development.

  • Difference between valuation and putting in good shape?

    What is the difference between recovery and formatting?

    I need to download tools and utilities to perform the recovery?

    Recovery recovery image installation.
    Formatting of removal of content from disk HARD integer.

    No, you don't need any download. All you need is CD/DVD recovery for your laptop model.

    To be honest, your questions are a bit funny. If you want to have accurate on such things information please publish your laptop model and it will be much easier to give you exact explanation and instructions how to use recovery CD/DVDs.

  • Qosmio X - 70A - difference between nVidia and driver Toshiba GPU

    Is there a difference between nvidia and one packed by toshiba display driver?
    I'm using the Toshiba but Geforce experience gives me a headache with warnings about a newer driver and toshiba does not appear to provide a.

    Of course there is a difference between the GPU nVidia drivers (or drivers provided by manufacturers of graphics cards) and the drivers provided by Toshiba.

    The Toshiba driver page GPU drivers are changed and made for the mobile use.
    Each laptop model supports various components (CPU, cooling, modules, etc.) and different design. That is why the heat dissipation is always different.

    The GPU driver provided by Toshiba supports a kind of GPU overheating protection and protects the graphics chip of the damage. This means that the GPU performance are controlled by the driver and in case the internal temperature would rise to critical level, it would decrease the performance of the GPU. Also the laptop stops automatically if the temperature is too high.

  • Difference between Satellite and Satellite Pro L100

    What is the difference between satellite and satellite pro? for example - satellite L100 175 and satellite pro L100 176?

    Hello

    the difference between Satellite and Satellite Pro is the operating system:
    Windows XP Home Edition for Satellite
    Windows XP Professional for Satellite Pro

    The difference between the models L100-xxx is just the equipment.
    For example the CPU:
    Sam L100-175: Core Duo T2500; 2.0 GHz
    Satellite Pro L100 176: Core Duo T2400. 1.83 GHz
    For more details look into the specifications of the models.

    Good bye

  • Is the difference between TSMC and Samsung Chip in the real Iphone 6 s? If this is the case, how can I found it before buying a new? How can I

    Is the difference between TSMC and samsung chip processors in the real Iphone 6 s? If this is the case, how can I found it before buying a new one?

    No, it isn't.

  • difference between mathscript and matlabscript

    Hi iam new to labview and learning n do labview project

    What is the difference between mathscript and matlabscript

    I want to do the simulation using matlab

    How can I do

    If one suggests this

    Please answer and provide assistance so that I will perform my project...

    With the LabVIEW MathScript node, the blue rectangular region, you
    can run scripts from files ".m" of your graph (known as LabVIEW programs
    virtual instruments or screw). You can use the MathScript node

    to insert text algorithms in a VI and then use the LabVIEW
    environment of graphical programming to instrument the scripts by adding
    buttons, sliders, buttons, graphics, and other user controls and
    indicators.

Maybe you are looking for

  • Required screen saver?

    Guys and girls A screen saver is necessary for my iMac 27 inches? Phil

  • RAM memory

    Hello, I have the HP Pavilion dv6000 and my laptop has 3 GB of ram merory (2 GB + 1 GB), I want to replace my ram memory (1 GB) with memory G.skill  F2 - 5300CL5S - 2GBSK SO DIMM DDR2 667 mHz CL5... is this possible? Thank you

  • My missing junk e-mail folder

    Summary of the issueOther issues of Windows Live Hotmail Please provide your address affected: E-mail address is removed from the privacy *. Additional detailsHello. I recently discovered that my Junk folder disappeared. I'm afraid that some competit

  • HP Envy 2 x 13D: envy x 2 13D - Intel HD Graphics 5300 Driver for Windows 10

    So far, HP has not published a driver for the Intel HD Graphics card 5300 in Windows 10.  Since the upgrade, I can no longer connect to any external, physically connected or wireless screen.  I found the driver on the Intel site and tried to install

  • BlackBerry Smartphones BB Curve 8330 locked up