Cannot disable stats job

SQL> conn / as sysdba
Connected.
SQL> exec DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB');
BEGIN DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB'); END;
ERROR at line 1:
ORA-27476: "SYS.GATHER_STATS_JOB" does not exist
ORA-06512: at "SYS.DBMS_ISCHED", line 3429
ORA-06512: at "SYS.DBMS_SCHEDULER", line 2395
ORA-06512: at line 1
SQL> select * from v$version;
BANNER
Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
PL/SQL Release 11.1.0.7.0 - Production
CORE    11.1.0.7.0      Production
TNS for Linux: Version 11.1.0.7.0 - Production
NLSRTL Version 11.1.0.7.0 - Production

SQL> col LOG_USER format a10
SQL> col WHAT format a50
SQL> select JOB,LOG_USER,LAST_DATE,BROKEN,FAILURES,WHAT,NEXT_DATE from dba_jobs;
       JOB LOG_USER   LAST_DATE B   FAILURES
WHAT                                               NEXT_DATE
        27 SYS        15-FEB-10 N          0
wksys.wk_job.invoke(22,44);                        22-FEB-10
        26 SYS        18-FEB-10 N          0
wksys.wk_job.invoke(22,24);                        18-FEB-10
         1 SYSMAN     18-FEB-10 N          0
EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS();       18-FEB-10
       JOB LOG_USER   LAST_DATE B   FAILURES
WHAT                                               NEXT_DATE
      4001 SYS        18-FEB-10 N          0
wwv_flow_cache.purge_sessions(p_purge_sess_older_t 18-FEB-10
hen_hrs => 24);
      4002 SYS        18-FEB-10 N          0
wwv_flow_mail.push_queue(wwv_flow_platform.get_pre 18-FEB-10
ference('SMTP_HOST_ADDRESS'),wwv_flow_platform.get
_preference('SMTP_HOST_PORT'));
       JOB LOG_USER   LAST_DATE B   FAILURES
WHAT                                               NEXT_DATE
        46 SYSMAN     18-FEB-10 N          0
EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS();       18-FEB-10

Similar Messages

  • Disable scheduler jobs during the database refresh

    Chaps,
    I have a strange issue. We have certain jobs scheduled which monitor other jobs and when they aren't running, they send emails using utl_smtp to the whole DBA group. All is working fine on Production but the moment we restore the database to QA, and soon after the database is recovered, it sends an email saying the those jobs aren't running..
    How do I disable the scheduler jobs ? Can it be done while the database is in mount state ? Or, is there any parameters to do so ?

    Hi,
    Although you can't disable the entire scheduler, you can disable individual jobs or all jobs in a job class using dbms_scheduler.disable which will prevent the jobs from running (but not stop already running jobs).
    It should be straightforward to have a table of jobs that should be disabled and have procedures which run over the table either disabling or enabling them.
    -Ravi

  • Can't manage to disable a Job.

    I have a job that was created by a prior DBA (no longer with my company). This is the data on the job from DBA_SCHEDULER_JOB:
    OWNER JOB_NAME LAST_START_DATE
    CDEPOT_OWNER Check File Delivery Status 16-DEC-09 10.30.00.110007 AM -05:00
    REPEAT_INTERVAL ENABL
    FREQ=MINUTELY;I TRUE
    NTERVAL=30
    STATE NEXT_RUN_DATE LAST_RUN_DURATION FAILURE_COUNT
    SCHEDULED 16-DEC-09 11.00.00.000000 AM -05:00 +000000000 00:00:00.051310 15
    Here's the same data (more or less) from the SYS.SCHEDULER$_JOB table:
    OBJ# PROGRAM_ACTION CREATOR JOB_STATUS
    121959 CDEPOT_OWNER.CHECKFILEDELIVERYSTATUS CDEPOT_OWNER 1
    Okay, so I log into SQL*Plus as CDEPOT_OWNER and try to disable the job:
    begin
    dbms_scheduler.disable('Check File Delivery Status');
    end;
    begin
    ERROR at line 1:
    ORA-00931: missing identifier
    ORA-06512: at "SYS.DBMS_UTILITY", line 132
    ORA-06512: at "SYS.DBMS_UTILITY", line 164
    ORA-06512: at "SYS.DBMS_UTILITY", line 218
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 540
    ORA-06512: at line 2
    This is the SAME command that I've used to disable other jobs I've created (also as CDEPOT_OWNER). I'm stumped as to why it won't let me disable this job and I really NEED to disable this job ASAP 'cause it's causing problems for other processes. Any and all assistance gratefully accepted.
    Leigh Smith

    Okay, I tried using the double quotes as suggested and now I get a DIFFERENT error:
    begin
    dbms_scheduler.disable("Check File Delivery Status", TRUE);
    end;
    dbms_scheduler.disable("Check File Delivery Status", TRUE);
    ERROR at line 2:
    ORA-06550: line 2, column 27:
    PLS-00905: object CDEPOT_OWNER.Check File Delivery Status is invalid
    ORA-06550: line 2, column 4:
    PL/SQL: Statement ignored
    So I thought...okay...what if one of the underlying objects referenced by the job (two PL/SQL procedures) was invalid? Maybe that's my problem. So I recompiled them both and they compiled cleanly and show as valid. But, when I tried to run the snippet above...same outcome. I'm really beginning to not like my predecessor.
    Leigh Smith

  • Cannot disable constraint error

    Hi - this might be a bit of a noob question but here goes. I have a table with a constraint (called FK_Category_Product) that I want to disable. When I run this statement the constraint is returned in the results:
    SELECT owner,constraint_name, constraint_type, table_name, status
    FROM user_constraints
    WHERE constraint_type = 'R'However when I run this statement:
    alter table T_PRODUCT disable constraint FK_Category_ProductI get this error:
    SQL Error: ORA-02431: cannot disable constraint (FK_CATEGORY_PRODUCT) - no such constraintAnyone got any ideas?
    Edited by: user9507427 on Mar 17, 2013 5:08 PM

    Ok thanks - I'm guessing it's something to do with the schema / owner. Here's my version ( running on Windows Server 2008 R2):
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit ProductionWhen I run this query:
    SELECT owner,constraint_name, constraint_type, table_name, status
    FROM user_constraints
    WHERE table_name='T_PRODUCT'I get these results:
    OWNER                          CONSTRAINT_NAME                CONSTRAINT_TYPE TABLE_NAME                     STATUS
    PRODOWNER                       FK_Product_SourceSpecies       R               T_PRODUCT                      ENABLED 
    PRODOWNER                       FK_Product_CreatePerson        R               T_PRODUCT                      ENABLED 
    PRODOWNER                       FK_Product_ModifyPerson        R               T_PRODUCT                      ENABLED 
    PRODOWNER                       FK_Product_ExpressionSystem    R               T_PRODUCT                      ENABLED 
    PRODOWNER                       FK_Product_Localisation        R               T_PRODUCT                      ENABLED 
    PRODOWNER                       FK_Batch_Products              R               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908459                  C               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908460                  C               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908461                  C               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908462                  C               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908463                  C               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908464                  C               T_PRODUCT                      ENABLED 
    PRODOWNER                       SYS_C00908465                  P               T_PRODUCT                      ENABLED  Then when I run this statement (as PRODOWNER):
    alter table T_PRODUCT disable constraint FK_Product_SourceSpeciesI get this result:
    Error starting at line 3 in command:
    alter table T_PRODUCT disable constraint FK_Product_SourceSpecies
    Error report:
    SQL Error: ORA-02431: cannot disable constraint (FK_PRODUCT_SOURCESPECIES) - no such constraint
    02431. 00000 -  "cannot disable constraint (%s) - no such constraint"
    *Cause:    the named constraint does not exist for this table.
    *Action:   ObviousI tried the above with and without single quotes around the constraint name, same result but slightly different error message with single quotes

  • Exception accessing MySql: Cannot disable AUTO_COMMIT

    How can I avoid this exception?
    finder-query is defined in weblogic-cmp-rdbms-jar.xml as:
    <finder-query><![CDATA[(= surName $0)]]></finder-query>
    javax.ejb.FinderException: Problem preparing or executing statement: 'SELECT ejbTest_
    ID, firstname, surname, sex FROM cp WHERE (surname = ?)':
    java.sql.SQLException: Cannot disable AUTO_COMMIT
    at org.gjt.mm.mysql.Connection.setAutoCommit(Connection.java:396)
    at weblogic.jdbcbase.jts.Connection.openConnectionIfNecessary(Connection.java
    :619)
    at weblogic.jdbcbase.jts.Connection.prepareStatement(Connection.java:135)
    at de.duit.ejb.ContactPartnerPSWebLogic_CMP_RDBMS.findBySurname(ContactPartne
    rPSWebLogic_CMP_RDBMS.java:556)
    at de.duit.ejb.ContactPartnerBeanHomeImpl.findBySurname(ContactPartnerBeanHom
    eImpl.java:99)
    at de.duit.ejb.ContactPartnerBeanHomeImpl_WLSkel.invoke(ContactPartnerBeanHom
    eImpl_WLSkel.java:134)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectA
    dapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHand
    ler.java:69)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java
    :15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    at weblogic.rmi.extensions.AbstractRequest.sendReceive(AbstractRequest.java:7
    6)
    at de.duit.ejb.ContactPartnerBeanHomeImpl_WLStub.findBySurname(ContactPartner
    BeanHomeImpl_WLStub.java:350)
    at de.duit.ejb.ContactPartnerBeanHomeImpl_ServiceStub.findBySurname(ContactPa
    rtnerBeanHomeImpl_ServiceStub.java:237)
    at EjbTester.main(EjbTester.java:69)
    Please contact me by email if possible.
    Thanks a lot,
    Dirk

    Hi!
    "Joseph Weinstein" <[email protected]> wrote in message
    news:[email protected]..
    Dirk wrote:
    How can I avoid this exception?Hi. Weblogic interacts via standard JDBC calls to enact transactionsaccording to the
    JDBC and EJB specs. I believe MySql and/or that JDBC driver doesn'tqualify as a
    fully functional DBMS. If it cannot implement the semantics ofautoCommit(false), it
    is unuseable for multiple-statement transactions which require standardACID properties.
    MySQL supports transactions with InnoDB and BDB type tables if you run the
    MySQL-Max standard distribution from www.mysql.com. The SQL command to set
    the autocommit off is
    SET AUTOCOMMIT=0
    The mm.MySQL JDBC driver below seems to fail in setting it off. Please check
    that you are running MySQL-Max, and that you have the latest version of
    mm.MySQL.
    The recent eWEEK benchmark
    http://www.eweek.com/article/0,3658,s=708&a=23115,00.asp
    was run with Weblogic on MySQL with InnoDB tables. Thus we know it is
    possible to get Weblogic working on MySQL/InnoDB.
    Best regards,
    Heikki Tuuri
    Innobase Oy
    InnoDB - transactions, row level locking, and foreign key support for MySQL
    See http://www.innodb.com, download MySQL-Max from http://www.mysql.com
    Joe
    finder-query is defined in weblogic-cmp-rdbms-jar.xml as:
    <finder-query><![CDATA[(= surName $0)]]></finder-query>
    javax.ejb.FinderException: Problem preparing or executing statement:
    'SELECT ejbTest_
    ID, firstname, surname, sex FROM cp WHERE (surname = ?)':
    java.sql.SQLException: Cannot disable AUTO_COMMIT
    atorg.gjt.mm.mysql.Connection.setAutoCommit(Connection.java:396)
    atweblogic.jdbcbase.jts.Connection.openConnectionIfNecessary(Connection.java
    :619)

  • [solved] Module bbswitch does not load, cannot disable nvidia

    Hey!
    According to the title I'm unable to load the bbswitch module on load with it's given parameters. I do it the way suggest in the Arch Wiki.
    I'm using linux-ck
    local/linux-ck-corex 3.5.6-1 (ck-corex)
    local/linux-ck-corex-headers 3.5.6-1 (ck-corex)
    local/nvidia-ck-corex 304.51-2 (ck-corex)
    (I heard theat graysky said that there are no problems)
    My /etc/modprobe.d/bbswitch.conf looks like
    options bbswitch load_state=0 unload_state=0
    dmesg|tail -10 outputs:
    [ 121.351475] bbswitch: version 0.4.2
    [ 121.351486] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 121.351497] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG1.GFX0
    [ 121.351647] bbswitch: detected an Optimus _DSM function
    [ 121.351656] bbswitch: device 0000:01:00.0 is in use by driver 'nvidia', refusing OFF
    [ 121.351659] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
    [ 135.236590] bbswitch: disabling discrete graphics
    [ 135.236977] bbswitch: Result of Optimus _DSM call: 01000058
    [ 135.250144] pci 0000:01:00.0: >Refused to change power state, currently in D0
    [ 135.343414] pci 0000:01:00.0: >power state changed by ACPI to D3
    Any suggestions? Am I missing something? I'm thinking of adding bbswitch into modules-load.d and add the parameters as kernel parameters in grub but I'm not happy with that solution…
    even if it's the "cleaner" version, imho.
    Cheers!
    Help is appreciated, thanks. :-)
    Edit: If I load bbswitch manually, I have to restart bumblebee to turn the graphics off. I cannot disable the card via bbswitch suggested in bbswitch git repo with command: tee /proc/acpi/bbswitch <<<OFF.
    Tried via modules-load.d now and grub boot parameters. The module is loaded but the card is turned on…
    $domac.vex dmesg |tail -10
    [ 35.421363] atl1c 0000:05:00.0: >irq 55 for MSI/MSI-X
    [ 35.433604] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 36.766411] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=0
    [ 36.773765] EXT4-fs (sda1): re-mounted. Opts: data=ordered,commit=0
    [ 107.303982] Bluetooth: Core ver 2.16
    [ 107.304005] NET: Registered protocol family 31
    [ 107.304007] Bluetooth: HCI device and connection manager initialized
    [ 107.304009] Bluetooth: HCI socket layer initialized
    [ 107.304011] Bluetooth: L2CAP socket layer initialized
    [ 107.304016] Bluetooth: SCO socket layer initialized
    Added my bumblebee.conf _here_.
    Last edited by domac (2012-10-10 15:28:04)

    Hey Lekensteyn! First of all, thanks for your answer. :-)
    I disabled the nvidia module now. My /etc/modprobe.d now looks like
    /etc/modprobe.d
    total 20K
    drwxr-xr-x 2 root root 4.0K Oct 9 19:32 .
    drwxr-xr-x 76 root root 4.0K Oct 9 12:49 ..
    -rw-r--r-- 1 root root 45 Oct 9 19:32 bbswitch.conf
    -rw-r--r-- 1 root root 18 Aug 8 20:08 nouveau_blacklist.conf
    -rw-r--r-- 1 root root 17 Oct 9 12:23 nvidia_blacklist.conf
    nvidia_blacklist.conf:
    blacklist nvidia
    nouveau_blacklist.conf:
    blacklist nouveau
    bbswitch.conf:
    options bbswitch load_state=0 unload_state=0
    There is only one more problem left… the bbswitch module does not load on startup. If I # modprobe bbswitch manually the nvidia card is turned off and it also seems the bumblebeed daemon is not started… I have no idea why. It worked with that setup all the time… not much has changed… imho nothing.
    Are there any logs I could post or what can I do to eventually fix this problem.
    Thanks for the help in advance!
    EDIT: I can start the bumblebeed.service manually. + Why are the modules from modprobe.d not loaded? My mkinitcpio.conf.
    EDIT2: Found it why bbswitch module wasn't loaded… http://comments.gmane.org/gmane.linux.a … eral/44986… testing this one right now.
    Last edited by domac (2012-10-09 17:54:04)

  • ORA-20211: Active job does not exist, cannot link to job record.

    Getting the above error while executing OWB mapping in production environment.
    Details of the error :
    ORA-20211: Active job does not exist, cannot link to job record.
    ORA-06512: at "RADRUN.WB_RT_MAPAUDIT", line 1278
    ORA-06512: at "RADRUN.WB_RT_MAPAUDIT", line 2110
    ORA-06512: at "RADSTG.MAP_STG_AIRCRAFT", line 2384
    ORA-06512: at "RADSTG.MAP_STG_AIRCRAFT", line 2513
    RADRUN -- runtime schema
    RADSTG -- Target schema where mappings deployed.
    source database is accessed through a DB link.
    OWB version - 10.1.0.4.0
    Oracle - 9.2.0.6.0
    Here mappings are getting executed by calling a pl/sql procedure. This pl/sql procedure is executed every day by scheduling a dbms_job. After the error, the job is in hanging.
    Last week also the same error happened, on that occasion , restarted the database and re submitted the job. Mapping executed without any error.
    Looking for the expert comments

    Hi.
    See Note:125860.1 in metalink (and please, lol to solution #3). It applies to older OWB versions though... Are you using DBMS_JOB or OEM to run these mappings? If so, then the metalink note might be useful help.
    Karesz, I believe if the source database was down, it would fail with an ORA-12XXX Error.
    Regards,
    Marcos

  • In Lion 10.7.x I cannot disable the Lock documents for 2 weeks in Time Machine! Thus it prevents to change anything else like the system preferences or other settings. How I can disable it?

    Hello, In Lion 10.7.x I cannot disable the Lock documents for 2 weeks in Time Machine! Thus it prevents to change anything else like the system preferences or other settings. All is locked. How I can disable it?

    Do you mean the check box isn't enabled?
    Or you remove the check but it doesn't "stick"?
    Or you remove the box but documents are stil getting locked?
    That setting doesn't apply to other things in System Preferences, just apps that support AutoSave and Versions.  If you're having a problem with System Prefs, please clarify exactly what.

  • Fields are in disable state

    Hi,
    I am getting all my fields in disable state......
    please help me why i am getting in disable state
    Thanks& Regards
    Ravi Shnkar B

    Hi Ravi,
    May be the attributes which you may have binded with the input feilds is under a node of carinality 0:n. If it is so then <b>change it to 1:n</b>.
    Actually what happens is even if you have mapped the attribute <i>there is no element yet created for that particular attribute</i> if the cardinality of the node is <b>0:n</b>. Hence the feild will be displayed as <b>Disable</b>. When you make it as <b>1:n</b> then a element of that attribute under that node is created. Hence you can see the feilds enabled.
    I hope this solves the problem.
    Regards
    Pravesh
    PS: Kindly consider rewarding points if helpful and solved.
    Message was edited by: Pravesh Verma

  • Error Happened at RFC Server Cannot Open the Job Batch File.

    We have BW 7.0  and Data services 12.1. We are scheduling a Infopackage in BW that triggers a job in Dataservices server.
    We had checked the connection between Dataservices source system in BW and RFC server on Dataservices side and these connections are good. on the 3rd party sellections tab in infopackage we specify the batch file name that we exported in Dataservices server. When we execute the infopackage we get the following error.
    Error Happened at RFC Server Cannot Open the Job Batch File.
    This error started occuring from yesterday and prior to that it was working fine. We are not understanding what changed in the system to cause this error.
    Can anyone suggest any solutions for the above issue.
    Thanks,
    Naveen.

    I'm not sure what the root cause would be here. Is the file still available ? Did file permissions change ? ...
    But I wanted to point your attention to the fact that in Data Services/Data Integrator XI 3.2 (=12.2) we significantly enhanced the integration with BW. In XI 3.2, the RFC server is now integrated into the Data Services Management Console (so no need to start as a seperate executable) and you can start jobs from BW by just specifting the job's name in the repo (no need anymore to export execution commands to .bat files). So if upgrading to XI 3.2 is an option, things should go much smoother.
    More details on the wiki  : http://wiki.sdn.sap.com/wiki/display/BOBJ/Loading+BW
    Thanks,
    Ben.

  • Campus Manager report - Ports in error Disabled state

    Hi,
    I have LMS 3.2 and I wonder how Campus Manager collects information from the switch to generate a report of discrepancies, namely a report of "Ports in Error Disabled state"??
    I find that I have ports in errDisabled state but Campus Manger doesn´t show this information in "Ports in Error Dissabled state" report. What could be the problem?
    Thanks.

    Hi,
    Campus Manager do snmpwalk on the ciscoErrDisableMIB to get the status of the error disabled ports.
    Thanks,
    Gaganjeet Singh

  • Pictures are not shown when saving to PDF.  Cannot Preview Print Job.

    Help! Pictures are not shown when saving to PDF.  Cannot Preview Print Job.

    I guess you need to fix it
    Or if you would like some help provide some information - there are no mind reader supporting this forum and we can only work with the information you give us - right not that is "it does not work"
    iPhoto has no "save to PDF" function - exactly what are you doing? and what exactly do you want to do?
    LN

  • I cannot disable the full keyboard  navigation

    Hello I have quite a problem.
    As it says above, I cannot disable the full keyboard navigation option, whenever I try to, it re-activates itself in the preferences, even if I just change tabs and return within the preferences.
    Furthermore, the keys seem to activate oddly, as I do not know of any shortcuts bound to the S key (JUST the s key), which commonly causes Itunes to skip forward a track in whatever playlist I am playing.
    I have tried changing the other preferences, and I can change them with no difficulties, it is just the Keyboard navigation that is giving me problems.
    Any help would be appreciated.
    Thank you in advance.

    On second thought... The help article cor-el linked mentions that Firefox may prompt you every time if the file is sent with the disposition:attachment header, i.e., forced save. You can bypass that problem (change disposition:attachment to disposition:inline) using the Inline Disposition extension. It has been around for a while, but I haven't tried it myself: [https://addons.mozilla.org/en-US/firefox/addon/inlinedisposition/]. Maybe that's what you need for Gmail.

  • Java.sql.SQLException: Cannot disable AUTO_COMMIT

    Hi,
    I am getting "java.sql.SQLException: Cannot disable AUTO_COMMIT" exception when using mySQL
    with Weblogic 5.1 EJB (through org.gjt.mm.mysql.Driver JDBC driver).
    Can anybody help!!!!!!
    Thank you, Eric
    [email protected]

    eric wrote:
    >
    Hi,
    I am getting "java.sql.SQLException: Cannot disable AUTO_COMMIT" exception when using mySQL
    with Weblogic 5.1 EJB (through org.gjt.mm.mysql.Driver JDBC driver).Hi. I'd have to see the whole stack trace to know for sure, but it looks like the
    DBMS/driver you're using doesn't implement the transactional calls/behavior that
    are required for managing EJB transactions. If you can write a small standalone
    java program that just gets a JDBC connection to your database, then calls setAutoCommit(false),
    then does a few updates, then calls Conenction.commit(), then there may be a weblogic problem,
    but if your simple program gets the same error, you need a transactionally capable DBMS.
    Joe
    Can anybody help!!!!!!
    Thank you, Eric
    [email protected]

  • How to change train step from visited state to disabled state

    Hi all,
    I like to change visited train step into disable state again.
    Is there anyway to do this?
    With Regards,
    WP

    Hi M.Jabr,
    Thanks for your reply.
    It works.
    i like to know one more thing about train.
    is there anyway to change visited state to unvisited state?
    With Regards,
    WP

Maybe you are looking for

  • I had to do a re-install of Thunderbird after a crash. How do I get my old address book into my new one?

    I had to do a re-install of Thunderbird after a crash. How do I get my old address book into my new one? There are only a few of the contacts I had, so there must be a location where the rest are, but not sure where to look. And once I find them (wit

  • How can i verify from my Apple products ,iPhone .iPad .iPod , macbook ? !

    i note that they are some websites recommend to visit  http://www.apple110.com/iphone-check.php for verification of Apple products ,iPhone .iPad .iPod  , thus by entering the serial number of your product in this website . and they claim that by doin

  • Highlight a player in a clip

    Hi, My students are creating a DVD for the varsity football team. Is it possible to highlight a player a player during a clip so that the viewer will focus on their action?

  • Certification Matrix

    Hi, We have 11.1.1.1.0v of OID implemented within Oracle. This was done by a separate team. They pointed me to OTN to gain access to the documentation for the version to gain access to the certification matrix. However I was not able to find related

  • Help Importing DVD Files.

    I have a dvd that someelse created, I guess typical DVD with a VIDEO_TS folder with mulitple .VOB and other files. How can I import this into Final Cut so that I can a movie clip and recreate a new DVD? What would be the simplest way of doing this? T