What command will be executed when I schedule job via DB13

Hi all,
How do I get what command(full syntax) will be executed when I schedule jobs via DB13?
For example:
- Action: REORG of Tables in Tablespace(s)
- Tablespaces: "WI6#BTABD" is selected
- "Use Temporary Tablespaces" is selected
I think this is a really basic question...
Could you give me some advice?
Thanks in advance,
Ikue

Hi Ikue,
yes,  you won't see, what the 'REORG for all tablespaces is doing. But it's not really necessary. Its's simply always the same call
REORG TABLE <tabname> INDEX <primary key> ALLOW NO ACCESS
and optionally the addition  USE <tempspace>, if you have selected this option in DB13.  And it is called for each table that is located in the tablespace(s) which you have specified.
The 'REORG for set of tables' is quite new. It is available with Basis Support Package 7.0 SP12. Before there was only a job to Reorg a single table.
The REORG for flagged tables is a deprecated job.
If you want to know more about the various REORG jobs and when and how to use them, then you should look at note 431430
Best regards
Ralf

Similar Messages

  • If I change my number and forget to give to some people.  What message will they receive when they text my old number?

    If I change my number and forget to give to some people.  What message will they receive when they text my old number?   Thank you!

    more than likely they will never know the text did not go through. If the number was assigned to someone else they will get your text message. I did this last week and the person texted me back asking who I was. I responded and apologized and they said no problem.

  • HT1414 what i will do ?when i tunes talde me We're sorry, we are unable to continue with your activation at this time

    what i will do ?when i tunes talde me We're sorry, we are unable to continue with your activation at this time

    That's almost always because the phone was jailbroken r hacked to unlock it.
    Discussing jailbroken / hacked phones is forbidden by the terms of service. You'll have to find an answer elsewhere or buy a new phone.

  • Execute Now a scheduled Job

    We have EM12C and among several other things we use it to schedule backups and other jobs on our several Oracle databases.
    My question: Is there a way to manually execute a scheduled job, a sort of "execute job now" type of command
    Regards
    James

    I opened an SR with Oracle and they confirmed that there is no option to "execute Now" a scheduled job on EM12C.
    What can be done is to edit the job schedule to run in say next minute and then re-schedule it again to normal time.
    James

  • What method will be called when an javabean terminates?

    Hi,
    I am using a java bean in my jsp application with scope "application". I know that this java bean will be terminated only when the server stops or shuts down.
    I need to cleanup something manually when the server shuts down. Can anyone tell me what method will be called, or that I can override, to clean up?
    Please advise.
    Damien

    Hi,
    I tried to implement the ServletContextListener, the ServletContextAttributeListener and the finalize methods, but I find that all of them are not called when I shut down the server manually.
    I am using an Apache Tomcat 4.0 server. I implement the methods as follows:
    public class RTPMainServer implements ServletContextListener, ServletContextAttributeListener
    public void contextDestroyed(ServletContextEvent scb)
    System.out.println("Server shutdown");
    System.out.println(scb.getServletContext());
    sourceSwitch.Cleanup();
    public void contextInitialized (ServletContextEvent scb)
    System.out.println("Server initialized");
    public void attributeAdded (ServletContextAttributeEvent scab)
    System.out.println("Mainserver added");
    public void attributeRemoved (ServletContextAttributeEvent scab)
    System.out.println("MainServer removed");
    public void attributeReplaced (ServletContextAttributeEvent scab)
    System.out.println("Attribute replaced");
    protected void finalize()
    System.out.println("Mainserver garbage collected");
    Can anyone help? Thanks
    Damien

  • Executing Scheduled jobs via Control Centre

    Hello Forum,
    We have a question on the scheduled jobs in OWB. We have some process flows that are attached to some (corresponding) schedules. Now in the Control Centre, we have two options to get the scheduled jobs executed:
    1. We can have the scheduled jobs deployed, but not started, in which case the scheduled jobs would run as our Repository Owner (say OWB).
    2. We can have the scheduled jobs deployed AND started, in which case the scheduled jobs would run as OWF (Oracle Workflow User).
    (Just to clarify - by "starting" a scheduled job we mean that we make use of the "Start" option available in the right-click menu for every scheduled job that appears under the "Scheduled Jobs" node in the Control Centre.)
    We would like to understand what is the advantage/disadvantage of setting up the scheduled jobs (for execution) for the two cases described above.
    Any help is much appreciated.
    Best Regards,
    Piyush
    For reference, following is our environment info:
    OWB Client Version - 10.2.0.1.31
    Repository Version - 10.2.0.1.0
    Database Version - 10.2.0.3.0
    OWF Version - 2.6.4
    -----------------------------------------------------------------------------------------

    Hi Sam,
    Thanks a lot for your kind inputs. Well the situation that I have at hand is that when I don't "start" the schedules (as in Case 1. described in my earlier post), everything goes fine. However, if I "start" the schedules jobs (as in Case 2. described in my earlier post), the scheduled jobs failed to execute after DB restart. So I feel we are better off by not starting the scheduled jobs so as to make them run as our target workflow user.
    Do you think this is the right approach for executing the scheduled jobs?
    Best Regards,
    Piyush

  • How to find what sql statement is currently running by scheduler job?

    Hi
    I scheduled a stored procedure to run every 5 minutes using dbms_scheduler.
    The stored procedure internally call serveral other stored procedures.
    The scheduled job is in running state and right now I want to find out what is the sql statement the job executing.
    Is there any sql query to find out what is sql query the schedular job is running?? Please help me.
    Thanks in Advance.

    The previous sql id is null in this case.
    I already quoted as I am running a pl/sql block in my scheduler job.
    begin
    usp_test('praram');
    end;
    I am using the pl/sql block as above in my scheduler job. The USP_TEST inturn calls some other stored procedures and each stored procedure has several inserts and update statements.
    The scheduler job is still running. I know the sid of the running scheduler job.
    I want to know the job is at which stored procedure and at which insert/update statement.
    Please let me know is there any query to fulfil my requirement?
    I greatly appreciate your help
    Thanks

  • Scheduling jobs via DBMS_JOB

    Hi,
    Can anyone please help me to schedule a job via DBMS_JOB.
    I have to execute a procedure p_upload_data from Tuesday to saturday at 1:00 AM.
    Please provide me the code that i can use.
    Thanks

    cofusracle wrote:
    Can anyone please help me to schedule a job via DBMS_JOB.Have a look at the Oracle® Database PL/SQL Packages and Types Reference manual
    I have to execute a procedure p_upload_data from Tuesday to saturday at 1:00 AM.
    Please provide me the code that i can use.Scheduling a job is as easy as follows:
    declare
      j number;
    begin
      DBMS_JOB.Sumbit(
        job => j, --// job id created for the job in USER_JOBS
        what => 'P_Upload_Data;', --// PL/SQL code block scheduled for execution
        next_date => sysdate, --// when to start executing the job (e.g. immediate)
        interval => 'trunc(sysdate+1)' --// function to use to calculate when next to execute the job (midnight each day)
      commit; --// the DBMS_JOB package updates the SYS.JOB$ table and changes need to be comitted
    end;I leave the interval calculation up to you to figure out.

  • Could not schedule jobs from DB13

    Hi Experts,
                        yesterday we have changed the file permission in /oracle/<SID>/102_64 mount point in our production system.
    After changing i could not schedule any jobs from DB13 and i could not use <sidadm> user for taking the backup from sap.
    Now i am taking the backup through OS and Archive log copying also OS level.
    I have given the below command for changing the file permission.
    chmod -R 777 /oracle/TPR/102_64
    I think we changed the whole permission under the oracle/SID/102_64 mount point. its changing the full permission for Oracle related files.
    How i can revoke the same?
    Kindly advice.
    Regards,
    Sundar.C

    Hi,
    Please check you are able to run the backup from Brtools at os level.
    If yes then check the permission of the files in the sapmnt/SID/exe as mentioned below.
    -rwxr-xr-x   1 <SID>adm     sapsys     9652136 brrecover
    -rwxr-xr-x   1 <SID>adm     sapsys     3403504  brrestore
    -rwxr-xr-x   1 <SID>adm     sapsys     12771456  brspace
    -rwsrwxr-x   1 ora<SID>     dba        4962288 brtools
    -rwsrwxr-x   1 ora<SID>     dba        8910816 brarchive
    -rwsrwxr-x   1 ora<SID>     dba        9282832  brbackup
    -rwsrwxr-x   1 ora<SID>     dba        12419824 brconnect
    If you are not able to fire the backup from Brtools.
    then you need to get the file system restored as you change the permission of all the files by doing the chmod -R.
    or
    you can compare the permission with another sap server of same database and same patch level and then change the permission manually of all the directoried and files.
    did you stop the dtabase and then did the permission change if no then restart the server .it may be possible thet your database shall not come up.
    thanks
    Rishi Abrol

  • Hide user/pwd when  running sqlplus job via HOST cmd in oracle forms

    I have a oracle procedure that returns the run_command string. Ex . ‘sqlplus ui/pwd @report.sql’. The run_command string returned by the procedure is run via the HOST command in oracle Forms.
    HOST(run_command) submits the job but it exposes the ui and pa that is used in the run_command string. On UNIX, if I do ps –ef | grep sqlplus after the job is submitted by the HOST command, I can see the ui/pwd in the run_command.
    How can I submit the job via HOST command without exposing the ui/pwd ?
    Thanks
    GP

    Of course, the Operating System Authenticated account method should only be used if you are running this job on the machine with that's running the Oracle instance. You absolutely do not want to turn on remote authentication. If you're not on the same machine, I would suggest you put the credentials in a file and secure it with filesystem privileges. I generally use a single generic script initiator that logs on and then runs some other script specified on the command line. Something like ...
    username/password
    @&1Note: the extra "--/--" lines ensure that the script fails with invalid login if the credentials are wrong but they get interpreted as comments if the logon succeeds.

  • How do I set what page will open up when I click new tab?

    I just downloaded something from the internet and ASK is now my default page when I open up a new tab. I managed to set what page I wanted when I open up the browser, but when I am in the browser and I click NEW TAB it goes back to ASK. Any ideas?

    You may need to remove an Ask extension. You can check on the Add-ons page:
    Tools menu > Add-ons
    In the left column, click Extensions, then disable/remove unwanted (or unrecognized) extensions.
    The actual address for the new tab page is a hidden setting. To adjust it:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box that appears above the list, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and enter the desired value:
    * ''Page thumbnails (default)'' => about:newtab
    * ''Blank tab'' => about:blank
    * ''Built-in Firefox home page'' => about:home
    * ''Any other page'' => full URL to the page
    Press Command+t to open a new tab and verify that it worked. Fixed?

  • What problems will I encounter when I upgrade to leopard?

    Hi,
    I'm going to purchase a Leopard upgrade for my MacBook Pro, but i've read alot of problems that users are encountering on this forum (Saying that, I've been on the MacBook Pro forum and there's alot of posts concerning issues/problems with this Laptop, but I have not ever had any).
    So is there any initial problems that I WILL encounter when upgrading my MacBook Pro 1GB 2.16GHz Intel Duo Core from 10.4.11 to 10.5.1?
    Regards,

    I'm still awaiting delivery of OSX Leopard, but I think what I might do once it arrives is to just upgrade with no backup of my current 10.4.11 on an external Hard Drive. What could possibly go wrong? nothing really has with any apple product i've bought so far.
    That's just plain foolish. Never ever upgrade without a backup. We get "this operating system ate my hard drive posts" here all the time. Why? Not because the operating system is flawed, but because people don't take proper precautions. No operating system can handle:
    1. Corrupt system data files.
    2. Third party drivers and firmware that aren't updated.
    3. Lack of disc space.
    4. Directory damage.
    5. RAM that hasn't been completely tested.
    With every update, a different angle on the problems above appears to happen, because each update accesses data files slightly differently, whether to match newer specs for information, or to better manage memory for other types of applications which need better memory management. Unfortunately unless you are using a vanilla system, which most people aren't, your chances of success diminish with each new addon you put in. See my upgrade FAQ*:
    http://www.macmaps.com/upgradefaq.html
    And NEVER EVER upgrade without at least two backups.
    - * Links to my pages may give me compensation.

  • What iPhone will be free when the iPhone 6 comes out?

    Right now, the iPhone 4s is "free" meaning the price of the phone it's self is $0, but you have to get a data plan along with that. I am interested in getting an iPhone so I was wondering if I should wait, because will the phone that is "free" change to the iPhone 5 or 5c when the iPhone 6 does out? Or will it still be the 4s? Thank you for reading my question and I would appreciate it if you would respond

    This is a user to user forum. no one here can possibly know what iPhone model will be free if any with a plan after the nest iPhone model is announced. That is something between Apple and the carriers.
    For iPhone specific questions please post in the iPhone forum. Using iPhone
    This question will likely be moved there shortly.

  • What packet will switch send when config with keepalive ?

    When I config keepalive on switch interface, what will happen ? Is it multicast packet or broadcast packet ?
    There is syslog information on my switch which I make loop to test BPDUguard.
    "%ETHCNTR-3-LOOP_BACK_DETECTED: Keepalive packet loop-back detected on FastEthernet0/7"
    Where can I find detail document about it ?
    thanks!

    thanks for your reply.
    I sniffe it and get following:
    ETHER: ----- Ether Header -----
    ETHER:
    ETHER: Packet 106 arrived at 18:49:46.07
    ETHER: Packet size = 60 bytes
    ETHER: Destination = 0:3:e3:9b:ad:c0,
    ETHER: Source = 0:3:e3:9b:ad:c0,
    ETHER: Ethertype = 9000 (Loopback)
    ETHER:
    Source MAC and DEST mac is same and belong to switch static mac.
    I can't understand why my test will result in "ETHCNTR-3-LOOP_BACK_DETECTED: Keepalive packet loop-back detected on FastEthernet XX".
    My lab is like this:
    switch-----hub(portA,portB),one cable is connected portA and portB of hub. So there is loop on hub.
    If I disconnect cable between portA and portB, switch will not report ETHCNTR-3-LOOP_BACK_DETECTED.
    It looks like that loop on hub result in the error. But I don't know why ?
    Who can tell me detail information ?
    thanks!

  • What exactly will I lose when I resync my iphone w/ another computer?

    I currently have my iphone synched with my macbook.  I want to sync it with my desktop since it has the same music currently on my macbook (and more) . I have a couple of apps, however, that I bought on itunes and that's currently on my macbook.  Will I lose them when I resync with my imac?  Also, will I lose my contacts?

    All iTunes content on your phone will be erased, to be replaced with the content from the new computer. Regarding your contacts, make sure you don't sync to an empty application on your computer. Doing so will erase all contacts on your phone. Make sure there is at least one entry, this will generate a merge or replace prompt, select merge.

Maybe you are looking for