How database works in UCM?

Hi,
What is the Oracle UCM database design?
Where is the metadata info stored in UCM? And What are the columns in meta data table?
How are security groups and metadata related?
Thanks,

Can I help? I hope so, but first you will have to specify/correct your question a little bit.
a) why do you ask? what is your intention/use case?
It always helps to understand the context of a question - sometimes, it might be easier (and even more correct) not to do directly what's been asked.
b)
How can i find which meta data is used in which Profile or security groups?A security group is a metadata of an item, and unless the system implements some custom logic, there is no relation between SG and other metadata.
With Profiles your question makes more sense. However, the matter is not that simple:
- first of all, a profile is determined by a profile trigger (metadata) field as described in http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c04_metadata.htm#DAFJDCEH
- a profile consists of rules:
 ♦ a profile can be defined as "Exclude non-rule fields" - see http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c04_metadata.htm#DAFJIEAI How is this fact related in your question? (i.e. if a field is excluded, is it "used" in a profile, or not?)
 ♦ there can be multiple rules affecting the same metadata field (e.g. some of them might "showing" it, the other might be "hiding" it - see also the next point)
 ♦ a rule might have a rule activation condition - see http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c04_metadata.htm#DAFHGFFG These conditions may determine whether or not the rule is applied based on item's metadata, usage (such as checkin vs. search), ... (in fact, whatever condition you may think of). This means that in general unless you have an item it might be impossible to determine what the result of a condition is.
- some metadata cannot be affected by profiles - see this thread on this topic Profile question
To sum up, depending on configuration, answering a question what metadata is displayed by a profile is not a simple task - and you'd need evaluating idocScript to do that. Which IMHO leads coming back to a)

Similar Messages

  • How does works default parameters in a program with logical database PNP?

    Hi Friends,
      I have a basic program, i need to filter info with period parameters in a program that uses logical database PNP, but it doesn't work.
      If i use "person selection period" that it's suposed to filter info according to infotype 0001 (as the sap help says), it doesn't work, i use: PNPBEGPS = today and PNPENDPS = today, and the result it's a lot of registers that doesn't meet that criteria.
      Also i tried with: data selection period, today, up to day, current month. And the result it's with the same problem.
      How does works period parameters in a program with logical database PNP?
    This it's the program example, i use the default category.
    REPORT  ZRPHRTEST.
    tables: pernr.
    infotypes: 0001.
    start-of-selection.
    get pernr.
      write: pernr-pernr, p0001-begda, p0001-endda.
    end-of-selection.
    write 'fin'.

    Hi,
    Define pernr table under tables statement then and use GET PERNR event.This get event is followed by End-Of-Selection.
    Syntax: Tables pernr.
                Get pernr.
    Try, activate and test. This should solve your problem.
    Regards,
    Abhijeet

  • How OEM works with database

    Hi,
    We use OEM (12c),have db (11.2,10.2/1).
    How OEM works with database?
    When oem initated a job aginst  db,What are the steps preformed by OEM?What are the info updated in OEM DB and Normal DB regading jobs?And Where?
    Br

    At what point do you get this message?
    Have a look at the Windows Service. Ensure the EM Agent is running. Your database and Listener may be running, but if the Agent is not running, you will not be able to see correct status.
    Stop and start the Agent

  • How standby database works

    Hi!!
    I have created standby database (testcat) for primary database (test) using Duplicate Command of RMAN on same server (windows XP) on Oracle 11.2 . I know how to create standby database But i don't know how and when standby database works. I checked init.ora file of standby database it contains all parameters prefixed with *. as follow
    *.db_create_file_dest='F:\app\Administrator\oradata'
    *.db_domain=''
    *.db_recovery_file_dest='F:\app\Administrator\flash_recovery_area'
    *.db_recovery_file_dest_size=10737418240
    *.db_unique_name='testcat'
    *.DB_NAME='test'
    *.control_files="D:\APP\ORACLE\ORADATA\TESTCAT\CONTROLFILE\CONTROL_STAND1.CTL‘'
    While init.ora file of primary database contains entries like
    db_create_file_dest=F:\app\Administrator\oradata
    db_recovery_file_dest=F:\app\Administrator\flash_recovery_area
    db_recovery_file_dest_size=4039114752
    control_files="F:\APP\ADMINISTRATOR\ORADATA\TEST\CONTROLFILE\O1_MF_8TXW6QN0_.CTL"
    So I want to know is
              1. IS  there any difference between  parameter that start with .* and start without .*
              2. Can i set db_create_file_dest parameter in init.ora of standby database to another location.
               3. How redo log will be applied to standby database when I run ALTER DATABASE RECOVER ..... command
              4. where archived log files of standby database will stored?

    1. Fetch Archive Log (FAL) Client :- It requests for archived redo log files from the primary site.
    That means FAL Client is required (should exist) on standby database server. Am i right here?
    FAL Client is Standby database, FAL Client requre archived log from FAL Server (primary, Cascading standby database ) for Gap Resolution.
    2. Fetch Archive Log (FAL) Server:- It requests for archive redo logs from FAL Client (Standby database).That means FAL Server is required (should exist) on primary database server.
    If yes then, why it  is required because FAL Server request for archived redo logs from standby database while on other side standby database can not have redo logs as it runs in READ ONLY Access mode (So no DML and DDL) ?.
    Also primary database will be  always one step ahead in terms of archive logs than standby database and hence there is no need to request for archived logs from stanby. Am i right here?
    Yes you are right. Primary  is newer require archived log from  standby. You asked and answered.
    Regards
    Mahir M. Quluzade

  • Trying to understand how beans work.

    I can't seem to figure out how beans work. Or more specifically how to target different parts of a bean. I think not knowing the terminology is a big part of this confusion too.
    For instance. I have a jsp file and a bean. the jsp has a form input that submits to itself. the bean gets the info that was typed in and displays is in the <%= etcetc %> tag. Now, what im trying to do is also submit that value to my mysql db. This has created numerous problems for me. For one, i don't really know how to check if it's working (other than actually looking at the DB table). The other problem is how do i target that part of the bean to tell it to do that function (again, the terminolgy eludes me).
    I'll post all of the code. There is a good chance that the DB code wont work. I'm really just hoping someone can explain to me
    how i call the DB function from the JSP file.
    I mean, is this even possible? Or do i need seperate beans for everything?? It seems kind of silly to not be able to do this.
    ok, so here is the code.
    JSP:
    <!-- JSP Directives -->
    <%@ page errorPage="myError.jsp?from=hello.jsp"%>
    <jsp:useBean id="simpleBean" scope="page" class="jspbook.ch3.simpleBean"/>
    <!-- Set bean properties -->
    <jsp:setProperty name="simpleBean" property="fname"/>
    <html>
    <head>
         <title>Hello</title>
    </head>
    <body>
    <center>
         <b><%= simpleBean.welcomeMsg() %></b>
    </center>
    <table align="center">
         <tr>
              <td>
                   <form name="sdfsdf" action="test.jsp" method="post">
                   <input type="text" name="fname" value="">
                   <input type="submit" name="submit" value="submit">
                   </form>
              </td>
         </tr>
    </table>
    </body>
    </html>and here is the bean
    package jspbook.ch3;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    public class simpleBean implements java.io.Serializable {
       private String emplid;
       private Connection con = null;
       private ResultSet rs = null;
       private PreparedStatement st = null;
       /* Member Variables */
       private String lname;
       private String fname;
      public simpleBean()
            try
              Class.forName("org.gjt.mm.mysql.Driver");
              Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/stm?user=root&password=");
        catch(Exception e)
              System.out.println(e.getMessage());
          /* Initialize bean properties */
        setLname("");
        setFname("");
      /* Accessor Methods */
      public String getLname() {
        return lname;
      public void setLname(String _lname) {
        lname = _lname;
      public String getFname() {
        return fname;
      public void setFname(String _fname) {
        fname = _fname;
      /* Display personalized message */
      public String welcomeMsg() {
        return "Hello " + fname + " " + lname +
          ", welcome to the wonderful world of JavaBeans!";
          public void insert()
           try
                String s1="insert into commstream (commTitle) values('"+fname+"')";
                st = con.prepareStatement(s1);
                st.executeUpdate();
                st.clearParameters();
                st.close();   
           catch(Exception m)
    }So there it is. If someone can explain the fundamentals to me, that would be great. What would also be great is if someone can make the above code work :)
    I've checked online tuts/specs on this, but to be honest im just not grasping it.

    iPhoto is a relational database program
    In the strongly recommended managed library (you have chosen to ignore this recommendation and use a referenced library) imported photos are copied to the iPhoto library and stored in the originals folder, a thumbnail jPEG is created and places in the data folder and when any modification is made (including autorotation) a modified version of the photo is created and placed in the modified folder. iPhoto updates its database entries to reflect everything it does.
    It is critical that you do not make any modifications of any sort to the content or structure of the iPhoto library - doing so is likely to corrupt the library and cause you to lose data.
    When you use the referenced mode which you are doing (and which is not recommended) you are taking total responsibility for the original photos which included not moving or modifying them while iPhoto is referencing them
    Unfortunately, all pictures from a certain import has duplicated in iPhoto.... so I "moved to trash" all pictures from that import
    Did you do this with the iPhoto trash? or did you use the finder to modify the contents of the iPhoto library.
    If I "move to trash", I assumed it got rid of whatever index (and preview cache) to that particular JPEG. I was actually surprised it did not delete the actual JPEG but I'm ok with that.
    again - iPhoto trash or finder trash. If you move a photo to the iPhoto trash and empty it all traces of that photo in the iPhoto library will be removed - nothing will be done to any file outside of the iPhoto library -- ever
    LN

  • How to Work with Composite Primary Key

    Hi All,
    I'm working with Toplink JPA. Here I have A problem with inserting into database table which have composite Primary Key.
    What I'm doing is, I have two tables. to maintain many to many relation between these two tables I created another intermediate table which consists of foreign Keys (reference) of above two tables.
    Now these two foreign Keys in the Intermediate table made as composite Primary Keys.
    When I'm trying to the data in the Intermediate table I'm getting the foreign Keys values are null..
    could anyone suggest me how to work with composite Primary Keys
    Thanks,
    Satish

    I have the same problem, I have 3 tables with a join table joining them all. I have created an intermediate table entity. When I go to create a an entry, it says that I cannot enter null into "ID". Here is the SQl toplink generates:
    INSERT INTO Z_AUTH_USER_AUTHORIZATION (CONTEXT_ID, AUTHORIZATION_ID, USER_ID) VALUES (?, ?, ?)
    bind => [null, null, null]
    Here are the classes:
    -----------------------Join Table-----------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_USER_AUTHORIZATION")
    public class AuthUserAuthorization implements Serializable{
    @EmbeddedId
    private AuthUserAuthorizationPK compId;
    // bi-directional many-to-one association to AuthAuthorization
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "AUTHORIZATION_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthAuthorization authAuthorization;
    // bi-directional many-to-one association to AuthContext
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "CONTEXT_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthContext authContext;
    // bi-directional many-to-one association to AuthUser
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "USER_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthUser authUser;
    ---------------------------------------User table--------------------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_USER")
    public class AuthUser implements Serializable, IUser{
    @Id()
    @SequenceGenerator(name = "AUTH_USER_ID_SEQ", sequenceName = "Z_AUTH_USER_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_USER_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 10)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authUser", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    -----------------------------------Context table-----------------------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_CONTEXT")
    public class AuthContext implements Serializable, IContext{
    @Id()
    @SequenceGenerator(name = "AUTH_CONTEXT_ID_SEQ", sequenceName = "Z_AUTH_CONTEXT_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_CONTEXT_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 8)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authContext", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    ----------------------------Authorization table-------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_AUTHORIZATION")
    public class AuthAuthorization implements Serializable, IAuthorization{
    @Id()
    @SequenceGenerator(name = "AUTH_AUTHORIZATION_ID_SEQ", sequenceName = "Z_AUTH_AUTHORIZATION_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_AUTHORIZATION_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 8)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authAuthorization", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    I have tried to create the new entity several ways. I have tried to create one with the default constructor then set this entity on each of the other entities, I have also tried to pass in the entities to the join entity and set them there, but this doesn't work. Any help would be very appreciated!
    Thanks,
    Bill

  • How to work with framewok

    Hi,
         I want to create a small program in Xcode which create a excel speedsheet with fiew sheet and put data into sheet using
         VisualBasicforApplication.framework.
         What can i do, so that i can create/write excel files in xcode on Mac OS X?
         Please help me as soon as possible.
    Thanks

    Originally Posted by skoltogyan
    How to work with database in the Teaming ?
    I need create some web-forms and store it in the database on the server.
    Any example - how i can do this with Teaming ?
    Please, Help me.
    Serg
    Hi Serg,
    Not sure what you are looking for and I'm also no dev...
    Maybe this link will help : Episode X: Teaming Templates | Novell User Communities

  • Explanation of how Iphoto works.

    Can someone please explain to me how iPhoto works as far as organizing photos and duplicating/converting photos. I have a bunch of photos in my photo file, and I would like to keep them all in one place (via iPhoto), but when I have experimented with it, Ive knowticed that dragging photos into iphoto, doesnt move the file at all, it just duplicates it, and then hides the duplication?, it also changes the image into a smaller file and creates "thumbnails???" I'm so confused. Can someone tell me what im supposed to do.

    Hi Derek,
    Here is some more info to add to PhillyPhans great answer.
    --First thing to know and remember is this...Do not drag any images, folder of images into the iPhoto Library in the Finder. Images have to be imported into iPhoto within the application. Do not scan images and save them into the iPhoto Library folder in the Finder. Save them to another location such as the Pictures folder or even the desktop. You can then import them into iPhoto.
    If you have already put files/folders in the iPhoto Library folder in the Finder then you will also find out that if you try to import them into iPhoto you will get an error message. No worry, just drag them to the desktop and import from there.
    --All images that you import are shown in the library view. You can choose how you want to view, by rolls, by date, by rating, etc. When you put images in an Album, slideshow, book, etc, you are actually just putting pointers to those images in the library. You are not adding more images. If you delete an image from the Album it will still be in the library. If you delete an image from the library it is deleted from iPhoto's database (the iPhoto Library folder in the Finder) and your hard drive ONLY after you empty iPhoto's trash. (unless you have it backed up somewhere else)
    --You have a folder of images on your hard drive and want to import them into iPhoto. Drag the folder of images into an open iPhoto Library window and the folder of photos will be copied into the library, resulting in a new roll with the name of the folder. You now have two copies of those photos, the ones in iPhoto's database and the ones on your desktop. You can keep the ones on your desktop that you just imported as backup or you can delete that folder. You can also drag a folder of photos into an empty space in the source column and a new roll and album will be created at the smae time for those images in the folder. The album will have the same name as the folder you dragged into the source column.
    -- you scan a picture/pictures and save it in a folder. You cannot scan directly into iPhoto or the iPhoto Library folder in the Finder.
    You want all your photos in iPhoto so you import them into iPhoto.
    Now you have two copies of that picture/pictures, so you can delete the originals that were in the scanned folder and keep the one/ones that were imported into iPhoto.
    -- You download pictures from your camera into iPhoto.
    There is now one copy of each of the pictures. (DO NOT HAVE IPHOTO DELETE THE IMAGES FROM YOUR CAMERA! DELETE THEM MANUALLY WITH THE CAMERA-if something goes wrong with the import and they are never imported and then they are deleted from the camera you might end up losing those images)
    --You want to change something about a picture you imported, such as
    cropping it or changing the size, or changing the orientation.
    Once you do that to a picture, you now have two copies of the picture
    in iPhoto, the original and the edited one. The edited one will be in the library organize view. The original is packed away in an Original folder in your iPhoto Library folder under the date of the roll. You can always revert to the original by control clicking on the photo and choose "revert to orginal" You will not have this choice if you used iPhoto Diet to get rid of the Originals.
    (a quick note on cropping within iPhoto...when you are in edit mode, you automatically will be in the crop mode with cross hairs to highlight the crop area. To finish cropping you must click the crop button and then go back to library view and your cropped picture will be there.
    --You want to use Photoshop or another graphic program to edit a picture in your iPhoto library.
    You can open up prefs for iPhoto and choose
    For iPhoto 5--"when double clicking on
    photo" ..do" choose "other" and select Photoshop. Now you can edit all
    pictures in your iPhoto library in PhotoShop by double clicking. If you save the photo with the same name and as a flattened file it will be saved right into iPhoto and you will see the changes. If you don't want to save it into iPhoto then do a "save as" and save to the desktop. You will then have the original photo still in iPhoto and your new edited photo on the desktop.
    For iPhoto 6 (from the Apple Help Menu)-Have you ever used PS as the external editor set up within iPhoto Prefs?
    From the iPhoto Help menu;
    "Choosing what happens when you click the Edit button
    When you want to edit a photo, you can have the photo open in iPhoto's edit view, in a separate window, in full-screen view, or in another application.
    To choose a preference:
    Choose iPhoto > Preferences.
    Click General at the top of the Preferences window.
    Under Edit Photo, select one of the following options:
    "In main window" opens the photo in the main viewing area.
    "In separate window" opens the photo in a separate window.
    "Using full screen" opens the photo in full-screen view.
    "In application" opens the photo in another application you choose.
    To open a photo in its own window when "Main window" is selected, press the Option key when double-clicking the photo.
    To open a photo in edit view when "Separate window" is selected, press the Option key when double-clicking the photo.
    Note: Any video clip you imported into iPhoto will always open in QuickTime Player when you double-click it."
    And...
    "Editing photos in another application
    You can do many editing tasks in iPhoto, such as rotating and cropping a photo, changing a color photo to black and white, adjusting exposure and contrast, and reducing red-eye. If you want to make other changes to a photo, you can open it in another image-editing application, such as Adobe Photoshop.
    To edit photos in another application:
    Set your preferences to open photos in another application when you double-click them or click the Edit button. (See Related Topics below.)
    Double-click the photo to open it in the application.
    Edit the photo and save it using the same name and file format.
    The changes you made to the photo will be visible when you return to iPhoto.
    IMPORTANT: When you double-click a RAW-format photo, iPhoto creates a copy of the photo in JPEG format, which opens in the other application. To edit the photo in its original RAW format, drag the photo from the iPhoto window to the Finder, and then use the other application to open it. (If you previously used iPhoto to edit the RAW photo, select the photo and choose Photos > Revert to Original before dragging it to the Finder. This way, you can edit the photo using its RAW data in the other application.) If you want to import the photo back into iPhoto, you must first save it as a JPEG or TIFF file."
    --Or, with iPhoto open, you can drag a picture from the library window
    to your desktop (you see a + sign on the pic you are dragging). You now
    have two of the same picture, one in the iPhoto library and one on your desktop. You can open up the one on your desktop in any graphic program and work on it. The one in iPhoto stays the same. You can also share/export the picture/pictures to your desktop or folder to work on them or do batch processing, etc. You will still have the originals in your iPhoto Library.
    --Or, you can open up the ~/Pictures/iPhoto Library/folders and option drag any
    picture out of the folder to your desktop. Notice that you will see a plus sign while dragging the photo. This is copying the file to your desktop
    I would advise anyone not to do this as they might forget to use the option key and drag the photo out. Next time you open iPhoto the photo will be missing.
    -The one option you will not find within iPhoto is to resize photos. iPhoto wants you to keep all full size images within iPhoto to give you the best size for printing or using for other applications. You can however go to Share>export (for iPhoto 5) or File>export (for iPhoto 6) and choose the naming scheme, input the dimensions and export to the desktop to use for uploading to a web space or emailing.
    --to email a photo set up your email client in iPhoto Preferences. Once done, just select a photo/photos and hit the email icon in the toolbar.
    If you use a web based email, then you need to export the photo to the desktop and upload it from there.
    Two Apple kbs for you to read
    Don't tamper with files in the iPhoto library folder
    About the iPhoto Library folder
    Don't forget that in Library view you can Control click on any picture and get a contextual menu with many options. One is to revert to original.
    For more help and information you can go to the Help menu wiithin iPhoto and input your search term in the search bar, then hit the "enter" key on the keyboard or just browse through the topics and categories.
    You can also go to the iPhoto Support site and browse the topics there including the tutorials.
    iPhoto Support

  • How IDoc works in SAP

    Dear sir
    I'm new to this IDoc functionality. I don't know how I can link the PP/QM data from the external system, HIFLEX, to SAP. And also SAP to HIFLEX  Any idea that you can give me on how iDoc works in SAP? Can you explain step by step process and where to configure IDoc?
    Thanks and regards
    Baswaraj

    Hi
    Processing in the EDI Subsystem Layer
    Outbound
    Once the control of the IDoc process is transferred to the subsystem layer. The subsystem takes the
    IDoc file as input and translates it into an EDI standard format. At various milestones, the subsystem reports
    the status of the process to SAP, thus providing complete visibility into the process from within SAP. The
    status reported by the subsystem is attached as a status record to the IDoc in the SAP database.
    To report status back to the SAP system, the subsystem creates a status file at the OS level and calls the
    function module EDI_STATUS_INCOMING in SAP, passing the status file name as an input parameter. For
    this, SAP provides a standard program named startrfc at the OS level to execute any RFCu2212enabled function
    module in SAP.
    Regards,
    muthuraman.d

  • How TimesTen works

    Hi,
    I am new to TimesTen. I would like to know how Timesten works. I have created a cache group on table test and have loaded it with 2GB of data. Now if I issue a query from sql plus will it execute on the cache group or from the database?

    TimesTen provides a full-blown relational database and you use it like any other RDBMS. Whatever approach you use to connect to a database, the data access interface and the tool's connection dictates what database you are connecting it to.
    The cache group tables you created are TimesTen tables, so you use TimesTen SQL connection to access them. The equivalent SQL interactive tool is ttIsql.
    SQLPlus is the interactive tool for the Oracle Database, not for TimesTen.
    -scheung

  • How accelerator works

    Dear Sir,
                  Can u tell me How accelerator works mean how it increase the performance of query execution?
    Thanks and Regards
    Lalit Kumar

    HI,
    BI accelerator is a highly scalable analytic server that processes queries initiated by users of SAP NetWeaver BI. Its uniqueness and the features that make BI accelerator highly scalable is the use of
    - SAPu2019s TREX search technology in conjunction
    - with blade server architecture provided by its hardware partners.
    This is how it works:
    1) Data is loaded from source systems into an SAP InfoCube.
    2)  index is built for this InfoCube and stored inside the BI accelerator appliance.
    3) These are search engine indexes built using SAPu2019s TREX search technology.They are stored in a file system (not a database system) using vertical  decomposition (a column-based approach as opposed to the row-based approach that requires more read time). This results in highly compressed data sets that further contribute to fast processing speeds.
    4) BI accelerator indexes are loaded into memory where the query is processed. In memory, joins and aggregations are done at run time. Loading of indexes into memory happens automatically at first query request, or it can be set for preloading whenever new data is loaded.
    5) At run time, query requests are sent to the analytic engine, which reroutes the query to the BI accelerator.
    Just to add more:
    -> Currently the data source for BI accelerator can only be an SAP Info Cube. It does not work with other SAP data sources such as ODS.
    - >Thereu2019s currently a one-to-one relationship between an instance of SAP NetWeaver BI and a BI accelerator. Sharing of multiple SAP NetWeaver BI  instances with a single BI accelerator is not yet supported.
    ->Works only with BW 7.0

  • How DBWn Works

    Hi,
    I want to know how DBWn works
    SAy; There is a tablespace DATASR3.
    This tablespace consists of 10 Datafiles.
    6 Datafiles are already filled. (Reached to its MAXLIMIT.)
    and Other 4 datafiles is in the preocess of getting the data.
    Im interesting in why its happens like this?... How DBWn will going to add/write data to datafiles.
    Is it in a circular fashion OR randomly it (DBwn) decides to which datafiles it goes to write.
    If its circular fashion then all datafiles must filled...according to order. (then it is not possible to full-fill only 6 Datafiles?)
    DBWn and LGWR works in the same way? .... Writing to files one after the other!
    Regards,

    Hi user2734911,
    Did you search via google?
    Database writer process (DBWn) is a background process that writes buffers in the database buffer cache to data files.
    Modified or new data is not necessarily written to a datafile immediately. To reduce the amount of disk access and to increase performance, data is pooled in memory and written to the appropriate data files all at once (in bulk mode), as determined by the background process database writer process (DBWn).
    The disk write can happen before or after the commit. See Database Buffer Cache.
    After a COMMIT, the database writes the redo buffers to disk but does not immediately write data blocks to disk. Instead, database writer (DBWn) performs lazy writes in the background.
    The database writer (DBWn) process periodically writes cold, dirty buffers to disk. DBWn writes buffers in the following circumstances:
    * A server process cannot find clean buffers for reading new blocks into the database buffer cache.
    As buffers are dirtied, the number of free buffers decreases. If the number drops below an internal threshold, and if clean buffers are required, then server processes signal DBWn to write.
    The database uses the LRU to determine which dirty buffers to write. When dirty buffers reach the cold end of the LRU, the database moves them off the LRU to a write queue. DBWn writes buffers in the queue to disk, using multiblock writes if possible. This mechanism prevents the end of the LRU from becoming clogged with dirty buffers and allows clean buffers to be found for reuse.
    * The database must advance the checkpoint, which is the position in the redo thread from which instance recovery must begin.
    * Tablespaces are changed to read-only status or taken offline.
    DBWn and LGWR works in the same way? .... Writing to files one after the other!*
    LGWR does sequential writes - so it takes lesser time to do its job.
    It needs to keep a record of what operations were peformed on the data and hence doesn't have a requirement to post the data to the actual data blocks of interest.
    However DBWn needs to write data to appropriate data blocks - which means it need to first find where to write and then do the writing job.
    Since a sequential write takes lesser time, it is advantageous to have separate LGWR and DBWn processes.
    The user gets better performance because LGWR does it faster sequential job while DBWn does its slow job in the background*.

  • What is grid . how grid work. is it possible grid in 9i . how

    what is grid . how grid work. is it possible grid in 9i . how

    You can add a 9i or even 8i database to be managed by the grid. It would be a nice topic to talk about, but your goal is just to memorize 'perfect job answers' as you stated in your duplicated trhead --> Answers at your duplicated thread --> Some inter view Questions Please give prefect answer  help me

  • How SharePoint works on orphan blobs

    hi
    How  SharePoint works on orphan blobs
    when these orphan blobs created ?, I configured RBS storage  to a  content database of a webapplication,
    and  in my scenario many users upload documents daily into document library of  this web application
    adil

    adil

  • Information how Ariba works with SAP

    Hi All,
    I searched in WEB but could not find enough information how Ariba helps to work with SAP.
    Can you please help me to understand how Ariba works in procurement, sales and financial accounting with SAP.
    Regards,
    Prakash

    Dear
    The followings are from SDK online help. FYI
    SAP Business One SDK enables partners and customer to extend and change the functionality of SAP Business One to create industry specific functionality, develop missing functionality, and interfaces with 3rd party tools.
    The SAP Business One SDK consists of:
    SAP Business One Data Interface API (DI API)
    A collection of COM objects called business objects. These objects describe various methods for updating, retrieving, and manipulating data in the SAP Business One database.
    SAP Business One User Interface API (UI API)
    A collection of DCOM objects that provide access to forms, controls within these forms, and menus. DCOM (distributed component object model) is a standard interface for object communication in distributed applications.
    DI Server
    A COM service running on a server that enables multiple clients to access and manipulate SAP Business One company database, using SOAP version 1.1 messages.
    DI Java Connector
    An interface to DI API objects from Java. With Java Connector, you can conveniently get or set properties and invoke methods of the DI API objects with Java-bean-style code.
    best regards,
    xiaodan an

Maybe you are looking for

  • How to delete an item in the Source List?

    LimeWire arbitrarily entered an item in the source list of iTunes entitled "Buck's LimeWire Tunes". The item is a blue box with a musical note on it. How may I eliminate this box and the files associated with it?

  • J2EE server not running. 503 service unavailable

    Hi , J2EE Server is not starting. Rest all are running in mmc console.The contents of the file std_server0.out is as below. stdout/stderr redirect node name : server0 pid : 584 system name : J2E system nr. : 00 started at : Tue Feb 15 10:12:46 2005 C

  • HELP! Converting MPEG4 into Mov, AVI, WMV

    I made a small clip on iMovie. I need to upload to a website for my band. I clicked on Share then export movie to my desktop. The website clearly says..."For video, we accept the following formats: WMV, MOV, AVI, MPG, MP4, FLV" Also, "SPECIAL NOTE AB

  • Cannot connect to update center

    I can't connect to JSC2 Update 1 Update center, even though i've setup the proxy setting and proxy port.. Last week I can connect to the Update center, it's prompt a username and password, but now I can't connect. Is there any log file for updating J

  • Sony HDR FX7 doesn't work with Final Cut 5.1 Help

    Hi there. I'm looking for some help. I"ve purchased the Sony HDR FX 7 today and took a few shots with it. I've connected the camera to my G5 and was tryingt to capture the movies I've recorded. Nothing seems to work. Can someone please give me some h