GRANT question

I have some questions regarding GRANT.
Is GRANT issued on the table or the synonym for other users to be able to access the table.?
Should the table name and synonym name always be the same?
I have 2 schemas - S1 and S2. S1 and S2 should alternatively access the tables from S3 schema (one month S1 should access all S3 tables and next month S2 should access all S3 tables and so on). What is the best way to do this? Should I revoke access to S1, Grant access to S2, and so on every time?
thanks

GRANT gives permission to use a resource in a specific way.
You may grant me access to a table in read-only mode, or in read-write mode. You may grant me permission to execute a stored procedure.
A synonym is an alternate name for a resource. It is NOT the resource itself. You can use this alternate name as the method of 'getting to' the resource.
For example: let's say your name is Robert. My nickname for you might be 'Bob'. When I search for you in my personal contact manager, I may do so using either Robert or Bob. Either way, it gets to Robert - the 'legal name'.
Also confusing (and irritating) is that the synonym is owned either by the user creating the synonym or by public. That is to say - the synonym 'Bob' belongs to me ... it is MY synonym for you 'Robert'. So if I loan $20 to Bob, the loan points to the person whom I have nicknamed Bob. You could also have a nickname 'Bob' pointing to someone completely different.
In answer to your questions:
1) if I use the synonym to perform a GRANT, the synonym is resolved first and replaced by the table/view/stored-procedure and then the GRANT is issued against the referenced resource.
2) as an alias, nickname, alternate name, a synonym should be chosen to minimize confusion and enhance maintenance. That may mean using the same name as the resource. Or it may mean deciphering the resource to make it easier to remember. Whatever the plan, document it and use it consistently.
You may want to review the CREATE SYNONYM and GRANT sections of the Oracle SQL Reference manual at http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9013.htm#i2155015

Similar Messages

  • Object grant question

    if you gant execute on a package to a user does that automaticlly give that uses the execute permissions on all of the procedures and functions within the package or does that require separate grants?
    Thanks.

    the execute on package is granted as whole, this is true, but you can code your packege to
    Revel only the API needed to the client running it, while hiding the implementation in the packages body:
    SQL> create or replace package g is
      2  procedure p;
      3  end;
      4  /
    Package created.
    SQL> create or replace package body g is
      2  procedure top_secret is
      3  begin
      4     dbms_output.put_line('***');
      5  end;
      6  procedure p is
      7  begin
      8     top_secret;
      9  end;
    10  end;
    11  /
    SQL> grant create session to x identified by y;
    Grant succeeded.
    SQL> grant execute on g to x;
    Grant succeeded.
    SQL> conn x/y
    Connected.
    SQL> desc hr.g
    PROCEDURE P Amiel

  • Predictive texting in the N900?

    I know the N900 has T9, but I was just wondering if anyone knows if the words you add to the T9 now can be edited? SE has had this option for years, and I strayed from Nokia ONCE a few years back (I know, and I'm ashamed!!), but that has left me with a Need for editing T9-words ever since..
    Does anyone know if nokia has finally done this on the N900?

    cpitchford wrote:
    The answer shouldn't be why? That's answering a question with a question.. and besides with maemo the answer is how.. which is answering a question with a question
    Chances are, if the T9 database is in sufficiently simple format you could edit it with Vi.. (think notepad) Maemo won't tie you down like Symbian's current offerings.. You can walk into the "machine" and swing a hammer and break it.. or poke around with tweezers and fix/alter stuff.. 
    I've not seen T9 on the N810 or its predecessors though it does have suggested completion when you type a word a selection of words pops up.. that when using qwerty too.. but I've not seen a method to add words. It tends to automatically remember new words you've typed (like parts of email addresses which is a bit weird)
    Just to state the bleeding obvious, this is a "discussion" forum, not a Q & A forum. Granted, questions are asked and often answered, but posing a question to a thread will attract comments that do not answer the original question. That's why many threads have dozens of posts, and I wouldn't think that each post could possibly be an answer to any particular question.
    If you found this post helpful, please click on the green "Kudos!" star. Cheers!

  • Could someone please explain to me how to set-up my Apple ID so that both my password AND security questions have to be answered before access is granted? Is this possible? I am not very computer smart, so could you explain step-by-step!Very Appreciated!

    Could someone please explain to me how to set-up my Apple ID so that both my password AND security questions have to be answered before access is granted? Is this possible? I am not very computer smart, so could you explain step-by-step!Very Appreciated!

    The security questions will only be asked on the first purchase on a computer or device (though people have occasionally posted that they've asked for them when it isn't the first time) - I'm not aware of any way to change that. You can force the password to be required on your iPad via Settings > General > Restrictions > Require Password set to 'Immediately' (the default is a 15 minute period during which it doesn't need re-entering)

  • Beginner question about granting access rights

    Hi, am a total beginner, just a very simple question. I have created a number of tables with my admin account that I would like user accounts to be able to see (they should only be allowed to see these few tables)
    I then created a user account called EDWARD with just the basic connect access right (I don't want them to be able to create/delete tables etc, just to be able to query the tables I have created above and to add rows to these tables)
    Google searching has lead me to the grant statement, so I tried this from the admin account:
    grant select, update, insert on CUSTOMERS to EDWARD;
    This statement executes correctly but when I log in the EDWARD account I cannot do any of these things, instead I get the error: ORA-00942: table or view does not exist
    Any ideas?
    Thanks

    >>Would it be better to create a separate account called 'ADMIN' perhaps that I use for
    my application admin and then grant them appropriate access to confidential tables
    rather than logging them in as the SYSTEM?
    Yes, this is what I would advise, since SYSTEM (like SYS and several others...) is not user like other, it's better do not work and create object under this one. Keep it for Oracle administration usage only, not for application administration, create your own schema for this.
    Nicolas.

  • A very simple question on granting access.

    Hi All,
    I created a very low-level user in portal. I have added the Oracle built-in Favorites portlet to the user?s page. But when the user logs in, she still can't see the Favorites portlet. I usually go to the Navigator, Applications, and the Application and would grant the user access to the Application to the portlet I want to add. This works fine except you can't do for the Oracle built-in Favorites portlet. My question is how do I grant access to the Favorites portlet for a user. I'm sure it is something very easy that I'm missing.
    Many Thanks,
    Tom

    Never mind this question, because I'm an idiot. I had a different page defaulting then I thought. Please disregard this question, and sorry for wasting the forum's space.

  • Grant create index question

    How do I grant "create index" on any table to a user.
    Is it "grant create index to <USER1>

    User must be granted with ALTER OR CONTROL Permission to create an index.
    GRANT ALTER,CONTROL ON SCHEMA::SALES TO <User>
    --Prashanth

  • Granting Privileges question

    This is not a duplicate post. User Wilhem posted it in the wrong forum.
    In the below mentioned link, user CD has provided a quick way to grant privileges to another user. But it didn't work for me. Is there something wrong with with the DECODE expressions?
    Re: Granting Privileges question

    Instead of granting privileges to a user, i wanted to grant these privileges to a role. So i created a role
    CREATE ROLE jenrole;
    And then i tried the below mentioned script. But i am getting error
    DECLARE
    v_sql VARCHAR2(4000);
    BEGIN
    FOR obj IN (SELECT object_name
    , object_type
    , DECODE (OBJECT_TYPE,
    'PROCEDURE','EXECUTE',
    'FUNCTION' ,'EXECUTE',
    'PACKAGE' ,'EXECUTE',
    'SYNONYM' ,'SELECT' ,
    'SELECT, INSERT, UPDATE, DELETE') rights
    FROM user_objects)
    LOOP
    v_sql := 'GRANT '|| obj.rights ||' ON '|| obj.object_name ||' TO JENROLE' ;
    dbms_output.put_line(v_sql);
    EXECUTE IMMEDIATE v_sql; END LOOP;
    END;
    ERROR at line 1:
    ORA-00911: invalid character
    ORA-06512: at line 16
    Why am i getting error? The error line is boldened

  • Question about GRANT CREATE TABLE permission

    Hi,
    How can I grant permission to UserA to create tables in UserB/SchemaB. I understand that "CREATE TABLE" will give permission to the user to create tables within its own schema and "CREATE ANY TABLE" will give permission to the user to create tables in ANY schema.
    Is there a command to give CREATE TABLE to specific schema? Please advice ... Thanks!

    Is there a command to give CREATE TABLE to specific schema? Please advice ... Thanks!No but you can create your own solution
    have SCHEMA_B create a procedure, MAKE_SCHEMA_B_TBL, that issues command below
    EXECUTE IMMEDIATE CREATE TABLE ........
    then do as below
    GRANT EXECUTE ON MAKE_SCHEMA_B_TBL TO SCHEMA_A;

  • Question about GRANT

    Hello all,
    I want to give some rights of the table "structure" to the user
    role "applik". Therefore I wrote as Admin of this role:
    grant all on structure to applik, public;
    For better understanding, I can access this table "structure"
    before this grant, too, but I must write e. g.:
    describe square.structure;
    to get out a description of this table. I want to get it out by
    typing
    describe structure; (without square)
    I thought, the keyword "public" does this job, but I must be
    wrong.
    Thanks, Christian

    GRANT assigns privileges only. If you want to be able to use the object without the schema prefix then you need to create a synonym, in this case:
    CREATE PUBLIC SYNONYM structure FOR square.structure;
    cheers, APC

  • Question for Grant Ronald

    We are planning a new Appserver install. We plan on using portal, discoverer, forms and reports, and j2ee applications.
    We would like to use the new discoverer (drake), new portal, and all of the other new stuff you get with Release 2.
    Is there a way that we can do this and still use Forms and Reports (with single-signon)?
    Thank you

    Not according to matrix in the Upgrade and Compatibility Guide. Metadata Rep cannot be higher version than any middle tier. "You cannot run a 10g (10.1.2) OracleAS Metadata Repository with previous versions of the Oracle Application Server middle tier."
    Also take a look at my thread here New 10.1.2 not supporting Reports?
    On the other hand, which seems a bit strange, it says you can run middle tiers of later version (10.1.2) with 9.0.4 Infra.
    Martin, jag sitter i Karlstad och jobbar (bland annat) med Oracle-baserade system. Vi kanske kan knyta en kontakt?
    Sorry guys for that last part in non-english ;-P

  • Is there any way to contact verizon with a detailed cell phone technical support question?

    Is there any way to contact Verizon with a detailed cell phone technical support question?  I prefer e-mail so as to provide details (like I am trying to provide here).  I have tried in-store personnel (no help at all) and the web chat - they just want to see me more data instead of helping me with my basic problem!
    I CAN NOT GET ANYONE FROM VERIZON TO GIVE ME ANY HELP NOR CAN I FIND A WAY TO FILE A COMPLAINT.  AT THIS POINT I JUST WANT TO DROP MY VERIZON ACCOUNT BUT I'M SURE THAT IT WILL COST ME A SMALL FORTUNE TO GET OUT OF IT.
    Here is my issue:
    Chat transcript removed as required by the Verizon Wireless Terms of Service
    BELOW IS A SCREEN COPY FROM REDDIT ABOUT SOMEONE WITH THE SAME PROBLEM WITH A VERIZON CELL PHONE
    So last night my RAZR MAXX HD did something totally bewildering by spontaneously downloading 2.6 GB of data over the course of ~ 3 hours. Fortunately I was able to catch this problem before it ended up being really expensive, but I still exceeded my 2 GB data plan by 600MB.
    The Culprits:
    Reddit News Free: 160 MB foreground / 0.96 GB background
    Android OS: 0 MB foreground / 1.18 GB background
    Several unnamed applications: ~ 350 MB
    Screenshots:
    The massive data spike
    Android OS data usage
    Reddit News Free data usage
    Weird unnamed processes
    Detailed timeline:
    5:12 PM: Incident begins according to VZW data usage website (2.60410 GB used). This is around the last time that I used my phone at the laundromat before getting dinner and watching Game of Thrones.
    8:04 PM: 50% of data allowance used (txt msg)
    8:31 PM: 75% of data allowance used (txt msg)
    8:58 PM: 90% of data allowance used (txt msg)
    9:13 PM: 100% of data allowance used (txt msg)
    10:05 PM: Got the text messages and immediately put the phone into airplane mode
    10:30 PM: Took screenshots
    10:45 PM: Enabled wifi, installed Kaspersky premium. Scan returned no threats.
    11:00 PM: Left phone in airplane mode, went to sleep.
    The questions:
    What was the root cause of this issue? Did Reddit News freak out as a result of an esoteric bug or was my phone hacked?
    If this was a simple Reddit News bug, then why was the Android OS also trying to use such a massive amount of background data?
    What the hell are these unnamed numeric applications? I've inspected my process history and this is the first time they have ever attempted to use data.
    I'm pretty sure that I can explain this situation to Verizon and get out of having to pay additional data usage fees, but I would like to know more about the problem before I get in touch with them.
    all 13 comments
    best 
    [–]omgmrjmako/PA, deb/Carbon 3 points 1 year ago*
    All I can think is your phone may have background downloaded an OTA update, and you'd then be prompted with something like, "As update to your Android system has been downloaded, would you like to install it now?"
    I do find it very odd that the update would be 2.6GB. As a rough base, the CyanogenMod 10.1 firmware for your device is well under 200MB, so unless Verizon has a ****-ton of bloatware in the update, or it had to attempt to download multiple times for some reason, it may be a stretch.
    But doing a little homework, it looks like the Verizon Razr Maxx was updated to 4.1 in late March. Maybe they're still rolling it out in waves? Have you gotten the update yet?
    Edit: Aaaand I just noticed you appear to be running an AOSP-based ROM, which totally rules out a carrier update being sent out.
    Edit2: If you want to live dangerously, you could try running:
    #kill -9 12289
    That 12289 is the PID listed in your screenshot. But don't run that without fulling understanding the kill command.
    The ps command could also be of use, but probably not.
    permalink
    [–]lechnito[S] 2 points 1 year ago
    I can confirm that the phone is currently at 4.1.2 and that I wasn't prompted for an OTA update.The fact that both the Android OS and Reddit News processes were simultaneously using an extremely large amount of data is unlikely to be a coincidence... 
    permalink
    parent
    [–]omgmrjmako/PA, deb/Carbon 3 points 1 year ago
    That is very curious that the spikes happened at the same time.I'm curious. It may have put at least some of that 2.6GB somewhere. You could use a data visualizer tool to see if you can find it, which may lead to more clues. 
    permalink
    parent
    [–]lechnito[S] 2 points 1 year ago
    The largest directories are:
    DCIM: Normal looking photos (90,825 KB)
    Android: Primarily map cache data (64,846 KB)
    If it was downloading content then it did not significantly save content to storage. It's not like I have anything particularly sensitive on the phone, but the idea that it was uploading a snapshot of my data definitely makes me uncomfortable.
    permalink
    parent
    [–]omgmrjmako/PA, deb/Carbon 2 points 1 year ago
    Yup, Digital Camera IMages and videos.Somewhere in /sdcard/Android would be my guess as to where a mysterious file would be downloaded, but if it's only 64MB, and mostly map data, I'd safely rule it out.I'm sorry, but I'm stumped here.Edit: I should mention I don't think this is malware, because unless a malicious app gained superuser access, any data it used would show under it's own apk in the data usage list, not Android OS. 
    permalink
    parent
    [–]mistrbrownstone 0 points 1 year ago
    DCIM: Normal looking photos (90,825 KB)
    Was it trying to auto-upload pictures or video to G+?I ******* hate that.
    permalink
    parent
    [–]lechnito[S] 1 point 1 year ago
    Although I'm not really up to speed with the Android platform, I come from a UNIX background so I feel comfortable running commands. How do I pull up a bash terminal? Do I need to root the phone first? 
    permalink
    parent
    [–]omgmrjmako/PA, deb/Carbon 2 points 1 year ago
    There's a number of terminal emulators in the Play Store that work well. You don't need a rooted phone to get to the shell as your user, but any privileged command won't execute unless you can grant it permission from the Superuser app that is installed when you root the device. So you could probably do a ps -e, but not a kill -9. 
    permalink
    parent
    [–]lechnito[S] 1 point 1 year ago
    Got it. I downloaded a terminal emulator but unfortunately those processes no longer exist.Does Android keep a generic log of system level events like /var/log/syslog? 
    permalink
    parent
    [–]omgmrjmako/PA, deb/Carbon 2 points 1 year ago
    I don't think so, and I know you'd need superuser permission to read most of the files in /var/log anyway. I'm not super familiar with how Android does its logging, but I do know that the two files of interest are the logcat and dmesg. 
    permalink
    parent
    [–]sh0nuff 1 point 1 year ago
    Want to mention here that using your settings to set your data cap (set it on your billing day), then you won't go over again.Those text messages are really unhelpful, as they send out well after the data has been used. Chances are good you hit close to the 2GB mark before you received the bulk of the messages. 
    permalink
    [–]kindofabuzz -4 points 1 year ago
    Quit installing pirated apps. 
    permalink
    [–]lechnito[S] 1 point 1 year ago
    That's definitely not the case here; both my PC and and Android phone are free from pirated apps.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • Question on Search Help and Authorization Check for Sales Order Type

    Question 1:
    When I go to VA01 and click the search help, it shows only order type that are not blocked.
    However, when I have sales order type in select-options of a Z program,
    S_AUART FOR VBAK-AUART
    I click on the search help, it gives all the sales order types. How can I have a list with unblocked sales order type only?
    Question 2:
    I want to check whether a use can extract data from a sales order type (e.g. OR and RE)that he/she authorized to use.
    I have include the following in my program:
    AUTHORITY-CHECK OBJECT 'AUART'
    ID 'AUART' FIELD 'OR'.
    It always returns SY-SUBRC = 12.
    But order type 'OR' is granted to the user (he/she can create order with type OR in VA01)
    Please kindly give me some ideas, thanks.

    hi,
    ad1
    use following code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR auart.
      PERFORM auartGet.
    FORM auartGet.
        CALL FUNCTION 'RV_HELP'
             EXPORTING
                  KEY            = VKORG
                  KEY2           = VTWEG
                  KEY3           = SPART
                  KEY4           = '0'
                  NUMBER         = '008'
                  FIELD_IN       = AUART
             IMPORTING
                  FIELD          = AUART.
    ENDFORM.
    ad2.
    example:
       AUTHORITY-CHECK OBJECT 'V_VBAK_AAT'
             ID 'AUART' FIELD 'OR'
             ID 'ACTVT' FIELD '01'. "01-create order, 02-change, 03 display
    check sy-subrc eq 0.
    regards,darek

  • Apple "answers" FCPX Questions

    Came across this page here where Apple has directly responded to some of the most common questions/complaints about FCPX:
    http://www.apple.com/finalcutpro/faq/
    Makes me laugh sometimes when I see such transparent deception (maybe that's too strong of a word, but the result is the same).
    They are very quick to say "yes" on a few items (even when the answer is "no"), but of course they dance all the way around the courtyard when the answer clearly is "no." There are even some answers where they use 3rd party support as a way to say "yes" (which clearly is not the same thing when the question is "Does FCPX do this?"). So I thought it'd be fun to interpret the document so it reads a bit more clearly. Be sure to read the originals on the link above so you can see how obviously ridiculous some of the Apple responses are.
    Import
    Can I import projects from Final Cut Pro 7 into Final Cut Pro X?
    No, but you can still use Final Cut Pro 7. Hopefully you'll still buy FCPX anyway because it's all-new.
    Can I import my video directly into Final Cut  Pro X as I could in Final Cut Pro 7?
    No, there are still some formats that aren't supported in FCPX that were supported in FCP7, and some of the camera manufacturers need to get off their butts and work with us (even though we've not provided them with the proper support information) but keep waiting and we'll work on it. Please go ahead and buy FCPX.
    Editing
    Can I edit my tape-based workflow with Final  Cut Pro X?
    No, not really...well, some formats, but probably not the one you're using.
    Does Final Cut Pro X support multicam  editing?
    No, but if you want to wait a little while, we'll get to it. In the meantime, might we suggest a ridiculously convoluted way of working with more than one camera at a time?
    Does Final Cut Pro X support external  monitors?
    Yes! Oh, wait, you mean like a "production" monitor? Well, then no, not unless you buy some expensive hardware from a third party. Of course you'll have to wait for that, too, since it's not quite ready for prime time.
    Can I save different versions of my project?
    Yes, of course...we'd be morons if we left out something so simple as this. So go buy FCPX now, eh?
    Are keyboard shortcuts in Final Cut Pro X different from those in Final Cut Pro 7?
    Yes, but don't worry...we made sure it's MUCH better than what you were doing before. Learning new shortcuts for basic edits is at the heart of a productive workflow.
    Can I use my third-party plug-ins in Final Cut  Pro X?
    No, not unless you meant "someday down the road."
    Media Management
    Can I specify a scratch disk location?
    No....BUT, let's say, for the sake of argument, that you always wanted to have your scratch disk specified as the same location of your project file. In that case, yes! You can put it anywhere you like!
    Can I share projects with other editors?
    Yes! Wow, that felt good. The power of FCPX!
    Can I store media in locations other than my system drive?
    Yes! Man, 2 in a row!
    Can I hide Events that I am not working on?
    Sure, but why would you do that? Oh, really? I guess that makes sense. Alright, here's a complicated way to "hide" events.
    Export
    Can Final Cut Pro X export XML?
    No, but we'll tell 3rd parties to figure it out. Then you can pay them if you need this.
    Does Final Cut Pro X support OMF, AAF,  and EDLs?
    No, but with all that money you saved on FCPX, you can burn it on a 3rd party app.
    Can I send my project to a sound editing application such as Pro  Tools?
    No, not unless you bought a 3rd party app to do this. Cha-ching!
    Does Final Cut Pro X allow you to assign audio tracks for export?
    Of course not. You're a video editor, not an audio editor. But I guess we can add this to the list of "things to do" this summer.
    Can I customize my export settings?
    If by "customize" you mean "use just a couple different presets" then YES! Otherwise, no...but if you pay us a little extra, there's an app for that.
    Purchase
    Can I purchase a volume license?
    No. Why do we have to keep reminding you to wait for stuff like this? Quit being stubborn and just buy FCPX already so you can be ready for all the stuff that's coming later.
    LOOK...you waited 2 and 1/2 years for the game-changing update of FCP, can you seriously not just wait a few more (undetermined amount of time) while we get the thing working? In the meantime, please buy FCPX.

    The Apple Store...always a good place to experience communism without ever leaving the U.S.
    You know, I've definitely had my handful of laughs over this. Part of it has to do with my own ego really...years ago, I predicted this in front of dozens of fellow editors (all FCP users...excepting perhaps one of them). It was when the iPod had become fairly popular and iTunes was ratcheting up, and simultaneously everyone seemed to be jumping on iPhoto and iMovie. I predicted that with the combination of the commoditization of video editing in general and Apple's upward trending hardware efforts, we'd have maybe 3 more years before FCP would either be dumbed-down or eliminated all together.
    This came at a time when the iPhone was prepping for launch and it only semed to further argue the point that Apple was not going to be in the software development business any longer than they had to be.
    Granted, I was wrong on a couple of things...it took about 5 years, not 3. Also, I was completely wrong about them managing to dumb down FCP or eliminate it altogether...they managed to actually do both with the release of FCPX.
    But I do feel sorry for these guys...I know I'd be furious if Adobe started eliminating Premiere Pro as we know it, replacing it with a consumerized version of itself. What I cannot identify with, however, is the relentlessness with which some of these Apple fanboys have towed the Apple line so blindly. I understand there will always be a preference for one tool over another, but with FCP, many of these users did not even realize what was possible outside the world of FCP. I cannot even begin to count the number of fellow editors who recently said "well, I guess I'll try Premiere Pro, I already own it anyway" (which means they bought the Creative Suite but never once thought about opening up Premiere Pro). The flood of praise I'm hearing about Premiere Pro is mainly due to things like Mercury Playback Enging and CUDA acceleration, but there's also other much simpler stuff that has been a part of Premiere Pro for 2 versions now, going back into 2007 or 2008.
    I don't wish Apple harm - though I don't care for the company or its products - but I think their egotism was finally made clear to the FCP users and Apple loyalists in general with the release of FCPX. With one product, they finally made it obvious what many of us knew all along, which is "We are Apple. We know what's best for you. You will use this, or you will use nothing at all. We know what we're doing, you need to follow our lead."
    Lastly, as has been stated by many others, it's possible that this is actually what Apple wants (and I don't mean it in the "New Coke Conspiracy" sense). Apple probably no longer wants or needs the pro video/film community.

  • Questions regarding aggregates on cubes

    Can someone please answer the following questions.
    1. How do I check whether someone is re-bilding aggregates on a cube?
    2. Does rebuilding an aggregate refer to the rollup process? Can it take a few hours?
    3. What does it mean when someone switches off an aggregate, basically what is the difference (conceptually/time consumption)between:
                            A. activating an aggregate?
                            B. switching off/on an aggregate?
                            C. rebuilding an aggregate?
    3. When a user complains that a query is running slow, do we build an aggregate based on the chars in rows & free chars in that query OR is there anything else we need to include?
    4. Does database statistics in the 'MANAGE' tab of a cube only show statistics or does it do anything to improve the load/query performance on the cube?
    Regards,
    Srinivas.

    1. How do I check whether someone is re-bilding aggregates on a cube?
    If your aggregate status is in red and you are filling up the aggregate - it is an initial fill of the aggregate and filling up would mean loading the data from the cube into the aggregate in full.
    2. Does rebuilding an aggregate refer to the rollup process? Can it take a few hours?
    Rebuilding of an aggregate is to reload the data into the aggregate from the cube once again.
    3. What does it mean when someone switches off an aggregate, basically what is the difference (conceptually/time consumption)between:
    A. activating an aggregate?
    this would mean recreating the data structures for the aggregate - this would mean dropping the data and reloading the data.
    B. switching off/on an aggregate?
    Switching off an aggregate means that it will not be used by the OLAp processor but would mean that the aggregate still gets rolled up. Rollup referring to loading changed data from the cube into the aggregate - this is done based n the requests that have not yet been rolled up into the cube.
    C. rebuilding an aggregate?
    Reloading data into the aggregate
    3. When a user complains that a query is running slow, do we build an aggregate based on the chars in rows & free chars in that query OR is there anything else we need to include?
    Run the query in RSRT and do an SQl view of the query and check the characteristics that are used in the query and then include the same into your aggregate.
    4. Does database statistics in the 'MANAGE' tab of a cube only show statistics or does it do anything to improve the load/query performance on the cube?
    Stats being updated will improve the execution plans on the database. Making sure that stats are up to date would lead to better execution plans and hence possibly better performance but it cannot eb taken for granted that refreshing stats is going to improve query performance.

Maybe you are looking for

  • Error in using the tds2xx Example2.vi

    When I run it, it comes an error "Property Node in TKTDS2XX Write.vi->TKTDS2XX Set-Query SESER.vi->TKTDS2XX Set Conditions for SRQ.vi->TKTDS2XX Example2.vi" which I don't understand, since I am just a beginner. Anyone can tell me what the error is an

  • How do you sync the free iWork and iLife apps to multiple supervised devices?

    So, I have a number of 4th gen iPads that are eligible for the free iWork and iLife update. I downloaded all the apps manually to one device, but was wondering how you can do this with multiple devices at once. If I try to add the apps in Configurato

  • Updating graphs between two VIs

    I have a VI (event-structure based) that generates and displays waveform chart. Due to lack of space on the main VI, I want the graph to be displayed onto another VI. Could anyone please help me with an example, how to implement this?  My attempt doe

  • Ifiles not playing movies

    I have tried to download some .WMV movies to my IPAD. A screen says movie has been saved to Ifiles. I click on the Ifiles link and Ifiles app opens. I double click on the movie filename. The movie control displays then closes. I can't get any saved m

  • Retrieve server status of Access Manager

    Hi, I have just joined a company which uses Access Manager and Identity Manager. I have joined as a Junior and have been given a small project to work on. It includes creating a website which can retrieve the status of the several application servers