What exactly does 'Activate and Adjust Database" mean?

In SE14, if I put a table or index name in I get the button options to creat/delete/and Activate and Adjust Database.  What does that last one mean?  If I have an existing index does it reorg it? Does it just rematch the SAP internals to the Oracle database?
Thanks
Vince

Hi,
For an Index in SE14-->Activate & Adjust database is nothing but rebuilding of Index. if you see any missing indexes in DB02 then you can rebuild those using this option.
This is specially helpful when your Index size becomes larger than table(more than table size).  You can free some space by monitoring large size index whose size is greater than & rebuild then using SE14-->Activate & Adjust with database.
In case of table this option is risky as it may result in data loss
Hope this helps.
Thanks,
Sushil

Similar Messages

  • So what exactly does limited to "one app" mean with a Pro account and the new prices?

    So it seems Pro has dropped in price but it is now limited to "one App".
    So what exactly does that "one App" mean?
    Only one tablet version or one phone version for a certain title?
    Or you can have a tablet & phone version including android & iOS for that one title?

    I think that everyone received it just now…
    Changes to Adobe Digital Publishing Suite, Professional Edition
    Effective immediately, all customers who newly purchase or renew Digital Publishing Suite (DPS), Professional Edition, will be able to publish only one app per license of DPS Professional Edition.
    Under this policy change, Professional Edition customers can publish an unlimited number of issues (.folio files) to a single app and distribute those issues based on purchased fulfillment bundles.
    An app created with a single license of DPS Professional Edition can be distributed to any or all of the marketplaces that DPS supports, including the Apple App Store (and Newsstand), Google Play, Amazon Appstore, and the Windows Store.
    In conjunction with this policy change, Adobe is reducing the price of a Professional Edition license to $4,800 USD annually (€3,600/¥480,000) or to $400 per month (€300/¥40,000) and will include 1,000 fulfillments annually. The number of fulfillments included with a monthly subscription remain unchanged.
    This policy does not apply to test or demo apps published using Professional Edition. The one-app-per-license policy applies only to an app published to a supported marketplace(s).
    If you are an agency, upon your renewal or purchase of Professional Edition, you can create only one app per Professional Edition license. If you have multiple clients for whom you are creating apps, either you as the agency or your client must purchase a Professional Edition license for each app published to a supported marketplace(s).
    If you are an existing Professional Edition customer and choose to renew your Professional Edition license at the end of your annual agreement, these changes, including the lower price point and 1,000 fulfillments, apply at that time. These changes do not apply to your existing DPS Professional Edition agreement and take effect only if you renew your license.
    DPS Professional Edition customers can continue to create unlimited Single Edition apps, which is unchanged under the new policy. A Single Edition app is defined as an app that includes one built-in or embedded folio.
    If you expect to publish three or more apps annually, we encourage you to contact your local reseller to discuss pricing for a multi-year Enterprise Edition license.
    Enterprise Edition offers additional functionality and benefits not available through Professional Edition. These include app customization, integration with back-end business systems, in-app marketing tools, targeted content based on user entitlement, and the ability to publish apps privately.

  • How to Activate and adjust database structure

    Hello Experts!
    I am working on a screen-exit u2018PPCO0012u2019. In u2018EXIT_SAPLCOKO1_002u2019 function exit & there is a structure given u2018CI_AUFKu2019. I did implement this structure but now I donu2019t need this user-exit anymore. How can I delete this field from structure? Because when I try to delete the field and check this structure it gives me error message
    u2018Structure contains no fieldu2019.
    Also like as we can u2018Activate and adjust databaseu2019 table through database utility is there anyway to do the same for structure?
    Thanks a lot in advance.

    Yes I did add a feild to a custome structure COCI_AUFK. But I used for component I sued ZZNAME and component type is NAME2. Now I donno is this causing problem?
    But what I've done it i deactive my this project thought cmod.
    Still having short dum becuase of VBDKL
    this is error:
    'Inconsistency in the Dictionary for the structure "VBDKL".'
    Then I went to check VBDKL (structure). When I checked it I get this message
    'Field NAME1 in table VBDKL is specified twice. Please check'
    I looked many time but NAME1 is not repeating at all. Not even in include structures

  • I sended my iphone for repair, and im being sent a replacement phone what exactly does that mean?

    I sended my iphone for repair, and im being sent a replacement phone what exactly does that mean?

    It means you will get a refurbished iPhone in exchange for the faulty one you sent in.

  • HT201210 My iPhone became wet at the beach.  I put it in rice for 4 days.  When I connect to itunes, it says the phone must be restored.  It starts and then gives either the error 2001, or 2006.  What exactly does this mean, and is it worth getting repair

    My iPhone became wet at the beach.  I put it in rice for 4 days.  When I connect to itunes, it says the phone must be restored.  It starts and then gives either the error 2001, or 2006.  What exactly does this mean, and is it worth getting repaired?
    Thank you...

    http://support.apple.com/kb/TS1275
    Water damage isn't covered by warranty, but you could always purchase a refurbished device from Apple. 

  • HT4859 when you go to do this it say that your iPod or whichever device will no longer be backed up to the computer it is currently backed up to, what exactly does that mean? Will i not be able to sync my iPod from that computer?

    when you go to do this it say that your iPod or whichever device will no longer be backed up to the computer it is currently backed up to, what exactly does that mean? Will i not be able to sync my iPod from that computer? Please help me and answer either or both question detailed thanks

    Normally when you sync your device it is automatically backed up to your computer as the first step in the sync process.  When you choose to start backing up your device to iCloud, iTunes stops automatically backing it up on your computer when you sync.  That's what the message is telling your; that you are now backing up to iCloud and not to your computer each time you sync.  You can still manually back up to your computer any time you want by going to the Summary tab and clicking on Back Up Now under Manually Back Up and Restore.
    You can still sync your device as you did before, it just will no longer back up automatically when you do.

  • Dumb Question - what exactly does "Static" mean

    What exactly does static variables and methods? What are they for?
    I know "final" means once you set it that's it..but what does static mean?

    There is also a static block use for initialising static variables.
    If you look in c:\j2sdk1.4.???\src.zip you will find the source to the libraries.
    from com/sun/image/codec/jpeg/JPEGTable
    public class JPEGQTable {
         /** The number of coefficients in a DCT block */
         private static final byte QTABLESIZE = 64;
          * This is the sample luminance quantization table given in the
          * JPEG spec section K.1, expressed in zigzag order. The spec says
          * that the values given produce "good" quality, and when divided
          * by 2, "very good" quality.
         public static final JPEGQTable StdLuminance = new JPEGQTable();
         static {
              int [] lumVals = {
                   16,   11,  12,  14,  12,  10,  16,  14,
                   13,   14,  18,  17,  16,  19,  24,  40,
                   26,   24,  22,  22,  24,  49,  35,  37,
                   29,   40,  58,  51,  61,  60,  57,  51,
                   56,   55,  64,  72,  92,  78,  64,  68,
                   87,   69,  55,  56,  80, 109,  81,  87,
                   95,   98, 103, 104, 103,  62,  77, 113,
                   121, 112, 100, 120,  92, 101, 103,  99
              StdLuminance.quantval = lumVals;
         }

  • What exactly does "delivers" mean? ):

    I ordered an iPad mini on the 7 Nov, and right now the status is still processing items, not even close to preparing shipment yet.
    but it says it delivers: 26/11/2012 - 3/12/2012. so my question is what exactly does "delivers" mean?
    the time that it takes to reach you? or the time it takes to be prepared to get ship to you?
    because i thought it takes at least 1-2 weeks to get shipped. but apparently it's not prepared for shipping yet. ):
    Cheers

    It should mean the anticipated date of delivery to you.  This has to take account of preparing for shipping.   Delivers would seem to me to be a firm statement.   (But don't hold me to that)  .

  • My iPhone 4s was stolen this weekend and I did the Remote Lock.  What exactly does that do?  Also, if i do the Remote Wipe will that erase all of my data and impede anyone from ever using the phone?

    My iPhone 4s was stolen this weekend and I did the Remote Lock.  What exactly does that do?  Also, if i do the Remote Wipe will that erase all of my data and impede anyone from ever using the phone?

    The remote lock locks the iphone with a passcode that you set. By remote wiping the device it will simply restore it and clear it of all its data, but by doing this it will prevent you tracking it and communicating with it (e.g. remote locking it) in the future

  • Should I enable TLS on my iCloud email and what exactly does it do?

    Should I enable TLS on my icloud email account and what exactly does it do?  I searched googled and have no clue what they are saying.  Please keep it simple.  Thank you very much!

    Ignore what it does do and concentrate on the fact that it does not do "add storage onto your iphone".

  • 1.how can I interpret meaning of TARGET  STATE   in output of command crsctl stat res -t  2. what exactly is nodeapps and why it need to be stopped before any maintenanace activity.

    I have two question requesting from the Gurus.
    1.how can I interpret meaning of TARGET  STATE   in output of command crsctl stat res -t  2. what exactly is nodeapps and why it need to be stopped before any maintenance activity. 

    I'd tried deleting my user preferences before, and it didn't seem to help. However, I tried again, and also removed the couple of actions I'd had in ~/Library/Automator. Success! Just for good measure, I tried putting the actions back and restoring the old preferences file, and everything still worked. Huh. But that's the nature of these things, I guess. At least it works now, thanks!

  • How safe is iCloud and what exactly does it do?

    I was thinking about adding storage onto my iPhone by using iCloud as my iPhone is only 8GB.
    However, what exactly is iCloud and how safe is it to use? Does Apple save all your info and details for there personal use?
    What does it do? Just a safe storage thing or what, I have no idea!?

    Ignore what it does do and concentrate on the fact that it does not do "add storage onto your iphone".

  • What exactly does the M7 coprocessor do in the iPad air, and what apps can use it?

    I've been trying a few 3rd party apps which use the m7 in the iPhone 5s. None of them work. Also there seem to be no apps both built in motion activity under the privacy menu in settings.
    My question is, what exactly does the M7 coprocessor in the ipad air?

    http://en.wikipedia.org/wiki/Apple_M7
    http://www.imore.com/apple-m7
    http://www.tuaw.com/2013/10/10/seven-apps-that-take-advantage-of-the-m7-motion-c oprocessor-in-t/

  • Duplicates on calendar, what does purple and blue dots mean?

    I was at a friends house on her wi if and all of a sudden I got duplicates on my calendar.  What do the blue and gray dots mean, which one do I delete?

    Launch the calendars app on the iPad. Tap on the Calendars button in the upper left corner and then select - show All Calendars. You will see that the colors correspond to different events/calendars.
    You have to decide which ones to delete after you look at the entries/events in the app.

  • What exactly does the Radio Beacon Indicate

    I have seen cases where the Radio Beacon is black and when it is gray. When it's black you may or may not be able to go through the wireless router to the modem and then to the internet. When it is gray, you cannot really do anything except be in a local mode. However there are instances when the Radio Beacon is black, rather than gray, and you still cannot access the internet. So, what exactly does the activated Radio Beacon Indicate, i.e., that the wireless network is working and the modem is down, or something else entirely ?

    Assuming you're referring to the Airport icon in the menu bar, 'clear/empty' means Airport is turned off, gray bars means Airport is on but not connected to a network, and black bars means Airport is on and connected to a network. Other possible icon states are solid gray with a little computer inset, meaning you're connected to a computer-to-computer created on the Mac, and gray bars with an exclamation point (10.6 only), meaning connected to a network but not authenticated (e.g. wrong password for an 801.2X corporate/university network).
    To your question, it's perfectly possible to be successfully connected to a network (black icon) and unable to access the internet. Situations like that would include the network requiring a proxy server, for which you haven't set up the details on in Network Preferences, or you're connected to an open network that requires you to enter information or agree to terms (e.g. a hotel network, where you need to put in your room number and agree to the charges before you can connect to the internet).

Maybe you are looking for

  • How ias integrate with Snacktory for getting main text from an html page

    Hi All, i am new to endeca and ias, i have an requirement, need to get main text from whole html page before ias save text to Endeca_Document_Text property, as ias save all text in page to endeca_document_text property, it is not ok for reading when

  • Urgent-Need help with the code.

    Hi gurus, I am trying to write a code where i am populating the ZZorg1,ZZorg2 and ZZorg3 in VBRP tableto 2LIS_13_VDITM. WHEN '2LIS_13_VDITM'. DATA: X_T_DATA Like MC13VD0ITM.    Loop at C_T_DATA into X_T_DATA.       Select Single ZZSORG1 into X_T_DATA

  • Navigation with portlets

    Hi, I'm new to portlets and i'm trying to understand how they work. I'd like to know how to build a web-app. I know how to build an app with servlets/JSPs but not with portlets. Are the views implemented by JSPs or by portlets. And what about servlet

  • Design Capture of Oracle Forms

    I can successfully capture an Oracle Form built by Forms Builder into a Module in Designer 9i. When I generate the Form based on the reversed Module Data Diagram, the generated Form does not have the same user-interface at run-time. For example, the

  • Query Results: Retrieve All Rows?

    I was looking for a feature that will allow me to choose to return "all records" to the Query Results window. The current behavior is to fetch 50 records at a time (e.g. fetch 50 records as you scroll through the results = s-l-o-w). What I'd like to