Meaning of key words NDC, SCHEMA, ATTRIBUTE,  AGGEGATE , Diffrence between

Hi,
pls guide me what is the meaning of following key words.
1.NDC
2. SCHEMA
3. ATTRIBUTE
4. AGGEGATE
5.Diffrence between TRANSFORM AND TRANSACTION
I searched in google but it given not only DBMS/RDBMS information but other related information also.
pls guide me.
Regards,
Venkat

http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/toc.htm

Similar Messages

  • Reference Object and New Key Word

    Hi,
    I am having a Class call ThreadHandler which implements Runnable()
    I loop through 10 times like below
    for (int i = 0; i < 10; i++) {
    ThreadHandler oTHandler = new ThreadHandler();
    Thread oTh = new Thread(oTHandler);
    oTh.start();
    Question:
    1. Will this create unnecessary referencing to ThreadHandler?
    2. Can I just instantiate ThreadHandler at the attribute declaration and just use new key word every time in the loop
    E.g :
    ThreadHandler oTHandler
    Thread oTh
    for (int i = 0; i < 10; i++) {
    oTHandler = new ThreadHandler();
    oTh = new Thread(oTHandler);
    oTh.start();
    }

    Suppose we say:
    for(ndx = 0; ndx < 1000; ndx++) {
        Type foo = new Type("etc");
    // <-- foo is no longer in scopeI'm not 100% sure what you mean "unnecessary referencing of..." but if you declare inside the for loop then there will be nothing referenced by foo after the loop. So, if anything there is less referencing going on.
    It is considered good practice to declare things close to where you use them. Because your intent is clearer that way.

  • What is use of LOAD key word in ABAP-HR

    what is use of LOAD key word in ABAP-HR?

    Hi,
    LOAD keyword is used to load all the parameter values.
    Basic form
    LOAD REPORT prog PART part INTO itab.
    Variants
    1. LOAD REPORT prog PART 'HEAD' INTO itab.
    2. LOAD REPORT prog PART 'TRIG' INTO itab.
    3. LOAD REPORT prog PART 'CONT' INTO itab.
    4. LOAD REPORT prog PART 'DATA' INTO itab.
    5. LOAD REPORT prog PART 'DDNM' INTO itab.
    6. LOAD REPORT prog PART 'DATV' INTO itab.
    7. LOAD REPORT prog PART 'SELC' INTO itab.
    8. LOAD REPORT prog PART 'STOR' INTO itab.
    9. LOAD REPORT prog PART 'LITL' INTO itab.
    10. LOAD REPORT prog PART 'SYMB' INTO itab.
    11. LOAD REPORT prog PART 'LREF' INTO itab.
    12. LOAD REPORT prog PART 'SSCR' INTO itab.
    13. LOAD REPORT prog PART 'BASE' INTO itab.
    14. LOAD REPORT prog PART 'INIT' INTO itab.
    15. LOAD REPORT prog PART 'DATP' INTO itab.
    16. LOAD REPORT prog PART 'TXID' INTO itab.
    17. LOAD REPORT prog PART 'COMP' INTO itab.
    Effect
    Loads the specified part of the generated version of the program prog into the internal table itab (for analysis purposes only).
    The return code value is set as follows:
    SY-SUBRC = 0 The load for the program prog exists and is current.
    SY_SUBRC = 4 The load for the program prog does not exist.
    SY-SUBRC = 8 The load for the program prog exists, but is not current. In some cases, this SY-SUBRC may mean that the program load has been destroyed. You can resolve this by generating the program. With PART 'LREF' , SY-SUBRC = 8 means that the line reference table is incorrect for the program. With PART 'CONT' , it means that the reference part of the internal table is empty.
    itab has been filled only if SY-SUBRC = 0 .
    Reward points if useful.
    Regards,
    Sekhar

  • Using Key Words to Find Photos

    I've figured out how to apply key words to photos in my iPhoto Library, and I know how to find photos by typing in a key word. But how do I search using multiple key words (e.g. woman + brunette) or by excluding key words (e.g. woman - brunette)?
    I assume the answer is in video tutorial "Finding Photos" at
    http://www.apple.com/ilife/tutorials/#iphoto-organize-4 but it won't play for me.
    Thanks.

    David:
    Go to the search field at the bottom of the iPhoto window, click on the Magnifying glass button and select keywords to bring up this window:
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Return key word

    i know that when u write a mutator method ie getter that you specify the return type and u can specify the key word return.
    but am still confused about when you you sholud use it, i know that people say when u want to return a value , but that still doesn't explain it enough how do u know if u want to return a value..
    thanks

    i mean if a method had to perform a calculation and
    then the result had to be used else where in the
    program i would use the return keyword but thats the
    only case i know about
    public class bukaroo
      public static void main (String[] args)
        bukaroo b = new bukaroo();
        String theQuestion = "Why is dustpan sooooo cool?";
        String theAnswer =  bukaroo.AnswerMyQuestion( theQuestion );
        System.out.println("Aha, The answer is: "+theAnswer);
      public String AnswerMyQuestion(String myQuestion)
        String answer = JOptionPane.showMessageDialog(null, myQuestion, "My Question is:", JOptionPane.QUESTION_MESSAGE);
        return answer;

  • Regarding key word "Table_line"

    Hi abapers,
    I came across a key word "TABLE_LINE".
    I am able to understand that it is a pseudo component but unable to understand anything more about it.
    Can u people explain me about its use with a sample code.
    Also I came across standard, sorted and hashed table and their syntax. i saw keywords such as "ANY TABLE" and "INDEX TABLE". please give a code snippet about their usage and importance also their purpose.

    Hi Lucky,
    TABLE_LINE:
    In internal tables, you can generally address the entire table row in a key specification by using the pseudo component TABLE_LINE. This is particularly useful for tables whose line type does not have a structure.
    You can, for example, define a
    sorted table of integers as follows and process it in a loop with a WHERE condition:
    DATA: wa   TYPE i,
          itab TYPE SORTED TABLE OF i WITH UNIQUE KEY TABLE_LINE.
    LOOP AT itab INTO wa WHERE KEY table_line > 5.
    ENDLOOP.
    As TABLE_LINE is similar to a row component, the underlying row structure should not contain a component of the same name.
    The old form TABLE LINE (without the underscore) is obsolete. SAP was unable to provide continued support since this form does not allow you to use references in tables to access attributes of the object referenced.
    In ABAP Objects, that is, classes and class pools, a stricter syntax check is performed.
    In the following example, ITAB is a table of object references. The associated class has an attribute NAME. You can access this attribute by specifying TABLE_LINE->NAME in a LOOP statement.
    CLASS my_class DEFINITION.
      PUBLIC SECTION.
      DATA: name TYPE string.
    ENDCLASS.
    DATA: wa   TYPE REF TO my_class,
          itab TYPE TABLE OF REF TO my_class.
    CREATE OBJECT wa. wa->name = 'Hugo'.  INSERT wa INTO TABLE itab.
    CREATE OBJECT wa. wa->name = 'Nora'.  INSERT wa INTO TABLE itab.
    CREATE OBJECT wa. wa->name = 'Jimmy'. INSERT wa INTO TABLE itab.
    CREATE OBJECT wa. wa->name = 'Nora'.  INSERT wa INTO TABLE itab.
    LOOP AT itab INTO wa WHERE table_line->name = 'Nora'.
    ENDLOOP.
    For the remaining things check the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Importing key words and ratings from iphoto

    I have a bunch of folders from the last 5 years on an external Hard drive with ratings and key words from iphoto...I now want to consolidate them all into iphoto 6 because it claims it can handle 250,000 photos...so the problem is when I import them the key words and ratings dont come with it, which for thousands of photos is a nightmare..any solutions..
    thanks'
    jim

    James:
    What form are the files in? Are they just jpg files that you exported out of iPhoto to save as jpg files? Did you use the Share->Burn menu option that creates a CD with a mini library on it that can be viewed and imported back into iPhoto?
    Since they are in folders on the external HD and not in another library, they will not have keywords embedded in them. iPhoto does not embed keywords or any other metadata in the files. It keeps the keywords, ratings, etc. in database files for use within the library only.
    I'm afraid you're out of luck on that.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How do I Change sub category to a key word tag in Elements 6. When I right click the sub category is the possibility to change not selectable

    I want to change a sub category to a key word tag in Elements 6. When I right click the sub category is the possibility to change not selectable. How to do it?

    If you want to change the category you need to change the feed, which means changing it in WordPress. You need to pick one category and, if there is one, one sub-category from the official list here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    It is possible to have further categories, though I don't know whether WordPress will allow that, but you should put the most relevant one in first.
    Once you've amended it simply re-upload the feed and wait for the Store to catch up. You don't need to resubmit.

  • 3.0 EA3, Key-Words should not be translated at all.

    Hi all,
    at first my compliment to the dev team. The raptor is about to fledgeup ....
    A little hint (not a real problem):
    From the Schema Browser chose a table (mark it via mouse) and Drag it into the SQL area. A dialog box appears with radio buttons to pick up the action of your choise.
    In german the translation is a bit silly. Don't translate these texts here - it makes no sense.
    OK is: Insert = INSERT and update = UPDATE.
    But "Löschen"= DELETE is strange, and "Wählen" = SLECT is simply silly at all.
    To make a long story short, Key-Words should not be translated at all.
    Thank you!
    Andre

    Unfortunately, the custom style sheet "feature" is still horribly broken, even in the latest 3.0.3. Setting a file in the preferences still doesn't set the correct URI in the preferences (either that, or Safari still doesn't know how to use a Windows file path to locate the style sheet).
    I'm also encountering problems where Safari will crash when using an ad blocking custom stylesheet.
    Also, when having the custom stylesheet set, trying to use the "Inspect Element" feature will crash Safari.

  • Creating Materialized View with the Distinct key word

    Hi
    I need help to create Materialized View with the Distinct key word.
    my query is
    select distinct col1, col2 from t1;
    is there any alternate of DISTINCT because I can not refresh the MV as fast on demand if I am using it and Fast on Demand is a must for me.

    hi
    check out this link
    http://download-west.oracle.com/docs/cd/B12037_01/server.101/b10736/basicmv.htm#i1007299
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/intro.htm#sthref183
    hope this helps
    CHeers

  • Converting Schema attributes to elements

    I have trouble registering a schema into Oracle. The problem seems to be that the schema defines Attributes and Oracle does not like Attributes.
    Does someone have a XSL to convert schema attributes into elements?
    I am able to convert the attributes in the XML data file to elements.
    Any help will be appreciated
    Thanks
    SP

    The following xml schema is from the Oracle XML guide. It has attributes in it.
    I've used XMLSpy to validate my xsd before, and it indicated they where valid when indeed it was not. That is why I now use the link I sent previously.
    The purchase-order XML schema is contained in file po.xsd:
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:annotation>
    <xsd:documentation xml:lang="en">
    Purchase order schema for Example.com.
    Copyright 2000 Example.com. All rights reserved.
    </xsd:documentation>
    </xsd:annotation>
    <xsd:element name="purchaseOrder" type="PurchaseOrderType"/>
    <xsd:element name="comment" type="xsd:string"/>
    <xsd:complexType name="PurchaseOrderType">
    <xsd:sequence>
    <xsd:element name="shipTo" type="USAddress"/>
    <xsd:element name="billTo" type="USAddress"/>
    <xsd:element ref="comment" minOccurs="0"/>
    <xsd:element name="items" type="Items"/>
    </xsd:sequence>
    <xsd:attribute name="orderDate" type="xsd:date"/>
    </xsd:complexType>
    <xsd:complexType name="USAddress">
    <xsd:sequence>
    <xsd:element name="name" type="xsd:string"/>
    <xsd:element name="street" type="xsd:string"/>
    <xsd:element name="city" type="xsd:string"/>
    <xsd:element name="state" type="xsd:string"/>
    <xsd:element name="zip" type="xsd:decimal"/>
    </xsd:sequence>
    <xsd:attribute name="country" type="xsd:NMTOKEN" fixed="US"/>
    </xsd:complexType>
    <xsd:complexType name="Items">
    <xsd:sequence>
    <xsd:element name="item" minOccurs="0" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="productName" type="xsd:string"/>
    <xsd:element name="quantity">
    <xsd:simpleType>
    <xsd:restriction base="xsd:positiveInteger">
    <xsd:maxExclusive value="100"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="USPrice" type="xsd:decimal"/>
    <xsd:element ref="comment" minOccurs="0"/>
    <xsd:element name="shipDate" type="xsd:date" minOccurs="0"/>
    </xsd:sequence>
    <xsd:attribute name="partNum" type="SKU" use="required"/>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>

  • How to translate the key words in ABAp program from lower case to upper cas

    How to translate the key words in ABAp program from lower case to upper case?

    Hi Kittu,
    You need to set the Pretty Printer settings to achieve key words in ABAP program from lower case to upper case.
    Utilities -> Settings -> Pretty Printer (tab) -> Select third radio button.
    Thats all.
    <b>Reward points if this helps.
    Manish</b>

  • Help on web.xml file, what if the parameters contains key words ?

    Hi:
    I am just wondering what should I do if I want to include key words suchs
    as <param> in web.xml file for a servlet config.
    Example:
    <servlet>
    <servlet-name>testServlet</servlet-name>
    <parameter>
    <param-name>some name</param-name>
    <param-value>some value</param-value>
    </parameter>
    </servlet>
    What should I do if I want to repleace 'some value' with '</param-value>some
    value' and still to prevent the engine to terminate parsing the param-value
    at the fake ending? Is there a standard way in XML to distanguish that?
    (in URL format it can be replaced %xx for some chars).
    ie,
    <param-value> </param-value>some value</param-value>
    where the second </param-value> is the real ending.
    Thank you!
    Gang

    Hi!
    You can use "& lt ;" and "& gt ;" xml entities for that. Or wrap text element in <![CDATA[...]]> section.
    Regards,
    Ignat.

  • Is there a way to identify the key words being used for SEO when I'm visiting a web site?

    When I am on a web site, looking at a product for sale, is there an app or add on I can use to see what that site has for key words, meta tags etc? It would be helpful when adding products to my own site to see what works elsewhere.

    Do search engines even look at those anymore? URL, title and page content are what's relevant.
    * http://www.metatags.org/google_ignores_meta_tags_in_ranking
    In any case, you can look at the source code. Click the Firefox button, then Web Developer, then View Source. You can also press Ctrl+U.
    All 'SEO' add-ons:
    * https://addons.mozilla.org/firefox/search/?q=seo&sort=users

  • Apple should do something for the equipment stolen something like block and only activated by key words given to register the device on the apple's website

    Apple should do something for the equipment stolen something like block it(them) and only activated by key words given to register the device on the apple's website

    Tell Apple:
    http://www.apple.com/feedback
    Doubtful that this would happen.  Privacy laws would likely be tested with this.
    No manufacturer does this.

Maybe you are looking for

  • Use of WITH clause

    Hi, I am using Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 . I am working in a procedure where I want to manipulate the data produced by a WITH AS clause.  But it is giving "PL/SQL: ORA-00942: table or view does not exist" error. A smal

  • Is it possible to run a java application within a web browser?

    Hello everyone here! I have a question about running a java application within a web browser and I would appreciate it very much if anyone here can give me some answers. I have a standalone java application written with AWT. Basically this free appli

  • Check for Duplicate address

    Hi, Can anyone help me, I have a problem where the address for 2 plants is same , so while replicating the two plants from R/3 to SRM the one plant is getting replicated and otherone is not getting replicated. I hope there is a check for this in SPRO

  • My mail shuts down after opening

    my mail shuts down after 5 seconds

  • Itunes is asking me to restore to factory setting

    Itunes is asking me to restore  my phone to factory settings, says it cannot read the contents of the phone, I know I did backups to my computer only yeasterday, will I be able to find it?