Notification of tablespace usage not running

With grid control we have a system generated rule Database Availabilities and Critical States which include Tablespace usage.
if we would like to customized this rules, we are not ablke to select a tablespace part of a Cluster Database. Apparently due to the target type we are not able to select a tablespace of a Cluster database.
I have created a new rules with a Cluster Database as Target type and include the Tablespace metrics but not Email are sent. (Email notification is on and all level Critical, warning, clear and also all correctives actions states.)
if somebody have an idea on this subject ?
Our notification are based on the Grid control but apparently we are not able to be notified for the tablespace usage of cluster database and also for databases not in a cluster.
OMS 10.3.2
DB 11.2.0.1
Edited by: algarra on Apr 13, 2011 9:31 AM

If they are on autoextend you will not get an alert because Oracle will extend.
Turn off autoextend on a tablespace and adjust your threshold and time to test alert.
You will get a email alert. To clear set back to autoextend.
KDSDBA
OCP

Similar Messages

  • Am running Firefox 7.0.1 now. Normal memory usage is 157mb but when running Facebook (not running apps nor games), it goes up to 553mb Why?

    Am running Firefox 7.0.1 now. Normal memory usage is 157mb but when running Facebook (not running apps nor games), it goes up to 553mb Why?

    I encountered the same type of problem. Firefox running terribly slowly and slowing down my entire machine (Core i5 with 256GB SSD). Searching the forums, I found a couple of things about troubleshooting performance issues, one of which was to use '''hardware acceleration''', that is on by default. It was turned on on my PC, '''so I tried deactivating it, and it worked!'''
    So doing the exact opposite as Mozilla support said solved the problem. It is really a pain now to work with Firefox. I'm using it because I have no choice, but I'd recommend IE and Chrome over Firefox... Whatever, the market will decide once Firefox has become to crappy...

  • Air 3.4 iOS Push Notification is not fired when app is not running and is not in background

    Hello,
    I'm making an Air iOS application which uses the iOS Push Notification from Air 3.4.
    All is working perfectly except when I receive notifications when the app is not running and is not in background (The app is killed).
    I suppose the RemoteNotificationEvent.NOTIFICATION must be dispatched when I receive a notification even if my app is not currently running or in background ?
    Do you have already get the same issue ? Do you know what can prevent the notification to be handled ?
    Thanks,
    Loïc

    issue has been fixed in the build available at http://labs.adobe.com/downloads/air3-5.html.
    You would now have to attach listener to InvokeEvent. For cases, when application is killed, InvokeEventReason will be InvokeEventReason.NOTIFICATION. The notification payload can be accessed by the following code
    protected function onInvokeEvent(event:InvokeEvent):void
         trace("Invokehandler called .... \n");
         trace("reason: " + event.reason + "\n");
         if( event.reason == InvokeEventReason.NOTIFICATION)
                        var payload:Object = Object(event.arguments[0]);
              for (var i:String in payload)
                    trace("Key:value pair " + i + ":" + payload[i] + "\n");
              // TODO: DO THE NEEDFUL ON RECIEVING A NOTIFICATION HERE

  • The Notification Mailer is not running

    Hi Masters,
    I am getting this error message The Notification Mailer is not running Please re-submit. Server ,
    Any idea what need to be done..
    Thanks in Advance
    A

    Resolved it through the concurrent request

  • Yosemite "Notification center" "not running"

    Since installing Yosemite, the notification center icon remains in the upper right hand corner of the menu bar, but when clicked it never opens, and it is not running in the Activity monitor.
    Is ther a way I can turn it on?

    This solved my same problem:  http://apple.stackexchange.com/questions/152064/how-do-i-re-enable-notification- center-in-yosemite-post-upgrade

  • TS1717 What do I have to do to keep the iTUNES program on my computer BUT NOT RUNNING on Start UP? It requires too much CPU usage on my old computer.

    What do I have to do to keep the iTUNES loaded as a program on my computer BUT NOT RUNNING on Start UP? Just opening when I want to use it.
    It requires too much CPU usage on my old computer.

    You can check you Adobe account online to see if the serial number is registered under your account.  If not then your only option will likely be to contact Adobe Support directly thru chat to see if they can provide you with a/the serial number. For them to do so will require you being able to prove ownership.
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Notification for Tablespace Full

    This is 10g Grid Control.
    I want to be notified by email when a tablespace space usage reaches warning threshold, but couldn't make it work. Here is what I did.
    1). Notcifation method has been set and tested.
    2). In Preferences -- Notification -- Rules, I created a new one called Tablespace Usage. In which I added a Metris of Tablespace Free Space and checked Three states (Critical, Warning, Clear) for which I want to receive notifications.
    But I don't get any notification for Tablespace Space usage even I know for sure some of tablespaces have reached > 90%.
    What is wrong here?
    Thanks for your reply.

    YOu can set on the debugging as well. The script thats being called is sysman/admin/scripts/problemTbsp.pl. In the emd.properties file, you can change the PERL_???? to turn on DEBUG.
    stop/start the emctl.
    To fire the trigger again - edit the metrics, set it high (must have both warning and critical set due to some bugs) 99 and 100. Set the page refresh to every minute. The metric should clear. Then go set the metric really low say 10 and 20. Again set the refresh to minute - leave it on the screen. It should fire - showing an entry in the bottom half of the screen - regardless of notifications or rules or whatever. This is the first step in diagnosiing this problem.
    Note this script problemTBSP.pl has been very buggy - be sure you have the latest version of the script.
    $ more problemTbsp.pl
    # $Header: problemTbsp.pl 01-jul-2005.11:11:17 rreilly Exp $
    It has special circumstances in there for dictionary vs locally managed, auto extend vs non auto etc etc.
    The sql its running is in the script - its not rocket science.
    my $sql = "select a.tablespace_name,a.meg, a.maxmeg,a.file_name,a.file_id,a.ts#,
    a.blocksize,a.flag, "
    . " b.freebytes, b.maxfreebytes,nvl(c.ts#,-99) "
    . " from "
    . " (select f.tablespace_name, (f.bytes)/1048576 meg, "
    . " (f.maxbytes)/1048576 maxmeg, f.file_name, f.file_id, "
    . " ts.ts#, ts.blocksize, "
    . " DECODE(BITAND(ts.flags,3),1,ts.dflminlen,0) flag "
    . " from sys.ts\$ ts, sys.dba_data_files f "
    . " where ts.contents\$ = 0 and ts.online\$ = 1 "
    . " AND ( ts.bitmapped = 0 OR (ts.bitmapped != 0 AND bitand(ts.flags,3
    ) = 0)) "
    . " AND bitand(flags,2048) != 2048 "
    . " and f.tablespace_name = ts.name) a, "
    . " (select tablespace_name,NVL(sum(bytes)/1048576, 0) freebytes , "
    . " NVL(max(bytes/1024), 0) maxfreebytes "
    . " from sys.dba_free_space group by tablespace_name) b, "
    . " (select distinct s.ts# from sys.seg\$ s where s.maxexts < 2100000000 an
    d s.maxexts - extents < 2 "
    . " and exists (select 1 from sys.sys_objects so where so.header_block = s
    .block# and "
    . " s.file# = so.header_file and s.ts# = so.ts_number)) c"
    . " where a.tablespace_name = b.tablespace_name and a.ts# = c.ts#(+) order
    by a.tablespace_name, a.file_name";

  • Temporary tablespace is not being used

    hello all,
    we have oracle 10g 10.2.1.0 on windows server 2003 platform (32-bit). we have 24*7 database. we have OLTP with heavy transactions. last night we ran a report which is supposed to fetch more than 2500 rows and query include group by and order by clause.
    i have rebuild all indexes on index tablespace, which were previously on users tablespace where my all data resides.
    but it is taking too much long to generate report more that 40 minutes (expected 5 minutes) my SGA is set to 1.2 GB shared pool sixe is 500M and db_cache_size=400M. and when i check tablespace status from enterprise manager everytime , i see that temporary tablespace is never being used..it always shows that temporary tablespace usages 0.0 and i allocated 4 GB to temp tablespace and it is also default temporary tablespace.
    what else i can do to force oracle to use temporary tablespaces??? it is not using for sorting also...thats why it is taking so long to generating report..
    any suggestion would be appreciable..
    thanks and regards
    VD

    vikrant dixit wrote:
    we have oracle 10g 10.2.1.0 on windows server 2003 platform (32-bit). we have 24*7 database. we have OLTP with heavy transactions. last night we ran a report which is supposed to fetch more than 2500 rows and query include group by and order by clause.
    i have rebuild all indexes on index tablespace, which were previously on users tablespace where my all data resides.
    but it is taking too much long to generate report more that 40 minutes (expected 5 minutes) Are you saying that you tried rebuilding all your indexes because the report started to run slowly, or conversely that you rebuilt all the indexes and then the report ran slowly ?
    If it's just a report that you could simply re-run, then all you have to do is re-run it and watch exactly where the time goes (you've been told about the 10046 trace already).
    If it's a report that ran, and was tuned, regularly in the past then you presumably have the execution plan stored somewhere so you could even check the current execution plan compared to the old one to see if it has changed.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    "There's no sense in being precise when you don't even know what you're talking about"
    John von Neumann                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Query not running in shell scripting

    Hi Experts,
    I have created a query to check the temp tablespace usage in production servers and i wanted to run the query using shell scripting but when i running the query in the script i am not getting any errors or output i am unale to rectify where exactly i am doing mistake
    below is the query
    SELECT A.tablespace_name "tablespace", D.gb_total, ROUND(SUM (A.used_blocks * D.block_size) / 1024 / 1024/1024,2) "gb_used", ROUND(D.gb_total - SUM (A.used_blocks * D.block_size) / 1024 / 1024/1024,2) "gb_free" FROM v$\sort_segment A, (SELECT B.name, C.block_size, ROUND(SUM (C.bytes) / 1024 / 1024/1024,2) "gb_total" FROM v$\tablespace B, v$\tempfile C WHERE B.ts#= C.ts# GROUP BY B.name, C.block_size) D WHERE A.tablespace_name = D.name GROUP by A.tablespace_name, D.gb_total
    Please help out in this.
    Thanks....

    two files:
    1) file to connect, for example called conection.sql
    ../../../sqlplus user/password@your_database @../../../../your_script.sql
    2) your script in the other file "your_script.sql"
    SELECT A.tablespace_name "tablespace", D.gb_total, ROUND(SUM (A.used_blocks * D.block_size) / 1024 / 1024/1024,2) "gb_used", ROUND(D.gb_total - SUM (A.used_blocks * D.block_size) / 1024 / 1024/1024,2) "gb_free" FROM v$\sort_segment A, (SELECT B.name, C.block_size, ROUND(SUM (C.bytes) / 1024 / 1024/1024,2) "gb_total" FROM v$\tablespace B, v$\tempfile C WHERE B.ts#= C.ts# GROUP BY B.name, C.block_size) D WHERE A.tablespace_name = D.name GROUP by A.tablespace_name, D.gb_total;
    3) execute --> conection.sql

  • Oracle XE 11g x64 does not run. No *DBF files inside of the XE folder. Windows 7 Pro x64.

    Hello everyone!
    I hope you are doing well all. In my case I have some troubles by installing Oracle XE 11g on my PC. My OS is Windows 7 Pro x64.
    1. I activated the Administrator mode on my PC (net user Administrator /active:yes)
    2. Started the setup as Administrator. The setup process was finished successfully with no errors showed.
    3. Started the Database, OracleServiceXE, OracleXETNListener and other services.
    4. Tried to connect using sqlplus-> connect system ->password, what in result gave me ORA-01034 Oracle not available and ORA-27101 Shared memory realm does not exist errors.
    5. Then I recognized that my C:\oraclexe\app\oracle\oradata\XE folder is empty when it should be usually full with 6 DBF file.
    6. I opened the cloneDBCreation.log and it contains these data:
    SQL> Create controlfile reuse set database "XE"
      2  MAXINSTANCES 8
      3  MAXLOGHISTORY 1
      4  MAXLOGFILES 16
      5  MAXLOGMEMBERS 3
      6  MAXDATAFILES 100
      7  Datafile
      8  'C:\oraclexe\app\oracle\oradata\XE\system.dbf',
      9  'C:\oraclexe\app\oracle\oradata\XE\undotbs1.dbf',
    10  'C:\oraclexe\app\oracle\oradata\XE\sysaux.dbf',
    11  'C:\oraclexe\app\oracle\oradata\XE\users.dbf'
    12  LOGFILE
    13  GROUP 1 SIZE 51200K,
    14  GROUP 2 SIZE 51200K,
    15  RESETLOGS;
    SP2-0640: Not connected
    SQL> exec dbms_backup_restore.zerodbid(0);
    SP2-0640: Not connected
    SP2-0641: "EXECUTE" requires connection to server
    SQL> shutdown immediate;
    ORA-12560: TNS:protocol adapter error
    SQL> startup nomount pfile="C:\oraclexe\app\oracle\product\11.2.0\server\config\scripts\initXETemp.ora";
    ORA-12560: TNS:protocol adapter error
    SQL> Create controlfile reuse set database "XE"
      2  MAXINSTANCES 8
      3  MAXLOGHISTORY 1
      4  MAXLOGFILES 16
      5  MAXLOGMEMBERS 3
      6  MAXDATAFILES 100
      7  Datafile
      8  'C:\oraclexe\app\oracle\oradata\XE\system.dbf',
      9  'C:\oraclexe\app\oracle\oradata\XE\undotbs1.dbf',
    10  'C:\oraclexe\app\oracle\oradata\XE\sysaux.dbf',
    11  'C:\oraclexe\app\oracle\oradata\XE\users.dbf'
    12  LOGFILE
    13  GROUP 1 SIZE 51200K,
    14  GROUP 2 SIZE 51200K,
    15  RESETLOGS;
    SP2-0640: Not connected
    SQL> alter system enable restricted session;
    SP2-0640: Not connected
    SQL> alter database "XE" open resetlogs;
    SP2-0640: Not connected
    SQL> alter database rename global_name to "XE";
    SP2-0640: Not connected
    SQL> alter system switch logfile;
    SP2-0640: Not connected
    SQL> alter system checkpoint;
    SP2-0640: Not connected
    SQL> alter database drop logfile group 3;
    SP2-0640: Not connected
    SQL> ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oraclexe\app\oracle\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED;
    SP2-0640: Not connected
    SQL> select tablespace_name from dba_tablespaces where tablespace_name='USERS';
    SP2-0640: Not connected
    SQL> select sid, program, serial#, username from v$session;
    SP2-0640: Not connected
    SQL> alter user sys identified by "&&sysPassword";
    SP2-0640: Not connected
    SQL> alter user system identified by "&&systemPassword";
    SP2-0640: Not connected
    SQL> alter system disable restricted session;
    SP2-0640: Not connected
    SQL> @C:\oraclexe\app\oracle\product\11.2.0\server\config\scripts\postScripts.sql
    SQL> connect "SYS"/"&&sysPassword" as SYSDBA
    ERROR:
    ORA-12560: TNS:protocol adapter error
    SQL> set echo on
    SQL> spool C:\oraclexe\app\oracle\product\11.2.0\server\config\log\postScripts.log
    I spent around 2 days to come to this reason and now I do not know what to do next.
    My actions to resolve this problem:
    1. Checked if my user has administrative rights and belongs to ora_dba. It does!
    2. Turned Microsoft UAC off.
    3. Set the system and local variables of ORACLE_BASE, ORACLE_HOME, ORACLE_SID, PATH, TNS-ADMIN to the appropriate values in Enivornment Variables:
         - ORACLE_BASE -> C:\oraclexe
         - ORACLE_HOME -> %ORACLE_BASE%\app\oracle\product\11.2.0\server
         - ORACLE_SID -> XE
         - Added to PATH -> C:\oraclexe\app\oracle\product\11.2.0\server\bin;
         - TNS_ADMIN -> %ORACLE_HOME%\network\admin
    4. Removed Oracle XE 11g and reinstalled to another drive. No sense!
    Some more errors:
    1. C:\oraclexe\app\oracle\product\11.2.0\server\config\log\XE.bat.log
    Instance created.
    DIM-00019: create service error
    O/S-Error: (OS 1387) Ein Mitglied konnte in der lokalen Gruppe nicht hinzugefugt oder entfernt werden, da das Mitglied nicht vorhanden ist.
    It means -> O/S-Error: (OS 1387) Unable to add or remove a member from the local group because this member does not exist.
    I understand that I need to logon as batch job. I added me to this policy in User Rights Assignments, but still I get these "DIM-00019: create service error" and "O/S-Error: (OS 1387)". And I guess just therefore my database is not starting well.
    2. 127.0.0.1:8080/apex/f?p=4950 is not starting in browser. It is probably because the database is not running appropriately. For this issue have already seen one topic in Google that the HTTP Properties inside the Listener Status must be set to 8080 to make this link work. But in my case I do not see this line in my Listener Status:
    Some other information relevant to the issue:
    1)  echo %USERNAME% - Administrator
         echo %USERDOMAIN% - ildar-PC
    2) Listener.log:
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
          (PROGRAM = extproc)
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
          (PROGRAM = extproc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
          (ADDRESS = (PROTOCOL = TCP)(HOST = ildar-PC)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    3) Tnsnames.log
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = ildar-PC)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    4) Sqlnet.log:
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    5) While connecting by sqlplus, I get this errors/messages:
    6) Confirmation that I've got admin rights and I am in ORA_DBA:
    If u need some more information from me, please let me know!!
    Guys please help me to solve this issue, 'cause I've almost got frustrated to find out the solution of this problem. Thank you beforehand!!
    Kind regards,
    ildar

    I have tried to install both of them lots of times but in each case I receive the same in my XE.bat file:
    Instance created.
    DIM-00019: create service error
    O/S-Error: (OS 1387) Unable to add or remove a member from the local group because this member does not exist.
    Have checked OS 1387 error at Microsoft Support and as possible cause of the problem they give as follows:
    This issue can occur if the environment has a disjointed namespace (i.e. the domain has different NetBIOS and DNS names). For example, assume that the domain has a NetBIOS name of "domain.com" and a DNS name of "domain-old.com." When users are added in the Windows UI, they are displayed in the format of domain\ComputerName. However, you notice in the error log that there was an attempt to add a computer account in the format of domain-old\ComputerName. (System Center 2012 R2 Data Protection Manager install fails and generates ID: 4323: "A member could not be added")
    Tried to find out my DNS name, but it is impossible because I don't have any domain installed and my machine is not connected to it. Some other blog (Install Oracle 11gR2 on Windows) advices to work with adding my computer account to some non-real windows domain (just for the purpose of resolving the network) as well and reinstall the database then. If I undestand it right I need minimum 2 machines for this. But I own just one, where the server is based and thought that is enough to run the database... no idea ..

  • QMASTER hints 4 usual trouble (QM NOT running/CLUSTEREd nodes/Networks etc

    All, I just posted this with some hints & workaround with very common issues people have on this forum and keep asking concerning the use of APPLE QMASTER with FCP, SHAKE, COMPRESSOR and MOTION. I've had many over the last 2 years and see them coming up frequently.
    Perhaps these symptoms are fixed in FCS2 at MAY 2007 (now). However if not here's some ROTS that i used for FCP to compressor via QMASTER cluster for example. NO special order but might help someone get around the stuff with QMASTER V2.3, FCP V5.1.4, compressor.app V2.3
    I saw the latest QMASTER UI and usage at NAB2007 and it looked a little more solid with some "EASY SETUP" stuff. I hope it has been reworked underneath.. I guess I will know soon if it has.
    For most FCP/COMPRESSOR, SHAKE. MOTION and COMPRESSOR:
    • provide access from ALL nodes to ALL the source and target objects (files) on their VOLUMES. Simply MOUNT those volumes through the APPLE file system (via NFS) using +k (cmd+k) or finder/go/connect to server. OR using an SSAFS such as XSAN™ where the file systems are all shared over FC not the network. YOu will notice the CPU's going very busy for a small while. THhis is the APPLE FILE SYSTEM task,,, I guess it's doing 'spotlight stuff". This goes away after a few minutes.
    • set the COMPRESSOR preferences for "CLUSTER OPTIONS" to "Never copy source to Cluster". This means that all nodes can access your source and target objects (files) over NFS (as above). Failure to to this means LENGTHY times to COPY material back an forth, in some cases undermining the pleasure gained from initially using clustering (reduced job times)
    • DONT mix the PHYSICAL or LOGICAL networks in your local cluster. I dont know why but I could never get this to work. Physical mean stick with eother ETHERNET or FIREWIRE or your other (airport etc whic will be generally way to slow and useless), Logical measn leepin all nodes on the SAME subnet. You can do this siply by setting theis up in the system preferences/QMASTER/advanced tab under "Use Network Interfaces". In my currnet QUAd I set this to use BUILT IN ETHERNET1 and in the MPBDC's I set this to their BUILTIN ETHERNET.
    • LOGICAL NETWORKS (Subnet): simply HARDCODE an IP address on the ETHERNET (for eample) for your cluster nodes andthe service controller. FOr eample 3.1.1.x .... it will all connect fine.
    • Physical Networks: As above (1) DONT MIX firewire (IPoFW) and Ethernet(IPoE). (2) if more than extra service node USE A HUB or SWITCH. I went and bought a 10 port GbE HUB for about $HK400 (€40) and it worked fine. I was NEVER able to get a stable system of QMASTER mixing FW and ETHERNET. (3) fwiw using IP of FW caused me a LOAD of DISK errors and timouts (I/O errors) on thosse DISKs that were FW400 (al gone now) but it showed this was not stable overall
    • for the cluster controller node MAKE SURE you set the CLUSTER STORAGE (system preferences/QMASTER/shared cluster storage) for the CLUSTER CONTROLLER NODE IS ON A SHARED volume (See above). This seems essential for SHAKE to work. (if not check the Qmaster errors in the console.app [see below] ). IF you have an SSAFS like XSAN™ then just add this cluster storage on a share file path. NOte that QMASTER does not permit the cluster storage to be on a NETWORK NODE for some reason. So in short just MOUNT the volume where the SHARED CLUSTER file is maintained for the CLUSTER controller.
    • FCP - avoid EXPORT to COMPRESSOR from the TIMELINE - it never seems to work properly (see later). Instead EXPORT FROM SEQUENCE in the BROWSER - consistent results
    • FCP - "media missing " messages on EXPORT to COMPRESSOR.. seems a defect in FCP 5.1 when you EXPORT using a sequence that is NOT in the "root" or primary trry in the FCP PROJECT BROWSER. Simply if you have browser/bin A contains(Bin B (contains Bin C (contains sequence X))) this will FAIL (wont work) for "EXPORT TO COMPRESSOR" if you use EXPORT to COMPRESSOR in a FCP browser PANE that is separately OPEN. To get around this, simply OPEN/EXPOSE the triangles/trees in the BROWSER PANE for the PROJECT and select the SEQUENCE you want and "EXPORT to COMPRESSOR" from there. This has been documented in a few places in this forum I think.
    • FCP -> COMPRESSOR -> .M2V (for DVDSP3): some things here. EXPORTING from an FCP SEQUENCE with CHAPTER MARKERS to an MPEG2 .M2V encoding USING A CLUSTER causes errors in the placement of the chapter makers when it is imported to DVDSP3. In fact CONSISTENTLY, ALL the chapter markers are all PLACED AT THE END of the TRACK in DVD SP# - somewhat useless. This seems to happen ALSO when the source is an FCP reference movie, although inconsistent. A simple work around if you have the machines is TRUN OF SEGMENTING in the COMPRESSOR ENCODER inspector. let each .M2V transcode run on the same service node. FOr the jobs at hand just set up a CLUSTER and controller for each machine and then SELECT the cluster (myclusterA, hisclusterb, herclusterc) for each transcode job.. anyway for me.. the time spent resolving all this I could have TRANSCODED all this on my QUAD and it would all have ben done by sooner! (LOL)
    • CONSOLE logs: IF QMASTER fails, I would suggest your fist port of diagnosis should be /Library/Logs/Qmaster in there you will see (on the controller node) compressor.log, jobcontroller.com.apple.qmaster.cluster.admin.log, and lots of others including service controller.com.apple.qmaster.executorX.log (for each cpu/core and node) andd qmasterca.log. All these are worth a look and for me helped me solve 90% of my qmaster errors and failures.
    • MOTION 3 - fwiw.. EXPORT USING COMPRESSOR to a CLUSTER seems to fail EVERY TIME.. seems MOTION is writing stuff out to a /var/spool/qmaster
    TROUBLESHOOTING QMASTER: IF QMASTER seems buggered up (hosed), then follow these steps PRIOR to restarting you machines.
    go read the TROUBLE SHOOTING in the published APPLE docs for COMPRESSOR, SHAKE and "SET UP FOR DISTRIBUTED PROCESSING" and serach these forums CAREFULLY.. the answer is usually there somewhere.
    ELSE THEN,, try these steps....
    You'll feel that QMASTER is in trouble when you
    • see that the QMASTER ICON at the top of the screen says 'NO SERVICES" even though that node is started and
    • that the APPLE QMASTER ADMINSTRATOR is VERY SLOW after an 'APPLY" (like minutes with SPINNING BEACHBALL) or it WONT LET YOU DELETE a cluster or you see 'undefined' nodes in your cluster (meaning that one was shut down or had a network failure)..... all this means it's going to get worse and worse. SO DONT submit any more work to QAMSTER... best count you gains and follow this list next.
    (a) in COMPRESSOR.app / RESET BACKGROUND PROCESSES (its under the COMPRESSOR name list box) see if things get kick started but you will lose all the work that has been done up to that point for COMPRESSOR.app
    b) if no OK, then on EACH node in that cluster, STOP the QMASTER (system preferences/QMASTER/setup [set 0 minutes in the prompt and OK). Then when STOPPED, RESET the shared services my licking OPTION+CLICK on the "START" button to reveal the "RESET SERVICES". Then click "START" on each node to start the services. This has the actin of REMOVING or in the case where the CLUSTER CONTROLLER node is "RESET" f terminating the cluster that's under its control. IF so Simply go to APPLE QMASTER ADMINISTRATOR and REDFINE it. Go restart you cluster.
    c) if step (b) is no help, consult the QMASTER logs in /Library/Logs/Qmaster (using the cosole.app) for any FILE MISSING or FILE not found or FILE ERROR . Look carefully for the NODENAME (the machine_name.local) where the error may have occured. Sometimes it's very chatty. Others it is not. ALso look in the BATCH MONITOR OUTPUT for errors messages. Often these are NEVER written (or I cant find them) in the /var/logs... try and resolve any issues you can see (mostly VOLUME or FILE path issues from my experience)
    (d) if still no joy then - try removing all the 'dead' cluster files from /var/tmp/qmaster , /var/sppol/qmaster and also the file directory that you specified above for the controller to share the clustering. FOR shake issues, go do the same (note also where the shake shared cluster file path is - it can be also specified in the RENDER FILEOUT nodes prompt).
    e) if all this WONT help you, its time to get the BIG hammer out. Simply, STOP all nodes of not stopped. (if status/mode is "STOPPING" then it [QMASTER] is truly buggered). DISMOUNT the network volumes you had mounted. and RESTART ALL YOUR NODES. Tis has the affect of RESTARTING all the QMASTERD tasks. YEs sure you can go in and SUDO restart them but it is dodgy at best because they never seem to terminate cleanly (Kill -9 etc) or FORCE QUIT.... is what one ends up doing and then STILL having to restart.
    f) after restart perform steps from (B) again and it will be usually (but not always) right after that
    LAstly - here's some posts I have made that may help others for QMASTER 2.3 .. and not for the NEW QMASTER as at MAy 2007...
    Topic "qmasterd not running" - how this happened and what we did to fix it. - http://discussions.apple.com/message.jspa?messageID=4168064#4168064
    Topic: IP over Firewire AND Ethernet connected cluster? http://discussions.apple.com/message.jspa?messageID=4171772#4171772
    LAstly spend some DEDICATED time to using OBJECTIVE keywords to search the FINAL CUT PRO, SHAKE, COMPRESSOR , MOTION and QMASTER forums
    hope thats helps.
    G5 QUAD 8GB ram w/3.5TB + 2 x 15in MBPCore   Mac OS X (10.4.9)   FCS1, SHAKE 4.1

    Warwick,
    Thanks for joining the forum and for doing all this work and posting your results for our benefit.
    As FCP2 arrives in our shop, we will try once again to make sense of it and to see if we can boost our efficiencies in rendering big projects and getting Compressor to embrace five or six idle Macs.
    Nonetheless, I am still in "Major Disbelief Mode" that Apple has done so little to make this software actually useful.
    bogiesan

  • LogonUI.exe, can't see it in task manager anymore, dose it mean its not running?

    after i tried to solve the issue with 26 csrss.exe running, it seemed to meany, i no longer see LogonUI.exe in task manager.
    forum posts from csrss.exe topic.
    Post 1
    i tried process explorer & trying stuff with that i opened a new csrss.exe & that works under my user not system & i cant kill that process (i double clicked on it), after restart it goes away? or should i just pull the cable out? i mane sudden
    shut down, status suspended, but it is on the list in task manager, how to get rid off it, end progress tree?
    it just it did not have any info about csrss, so i tried to open it with process explorer, but that thing did not do what i though, that's why it all happened.
    it also opened new Client server runtime process, i guess that csrss.exe under user is still in task manager list.
    Post 2
    restart solved the issue, at least it seems so, also that incident removed 24 csrss.exe from task manager, i had 26 running new i have only 2, i did it just to find out that maybe i can remove the csrss.exe what i opened after restart, but i did not expect
    this result, maybe this what some call zombie processes, they were in use once & when the process stopped they were stuck?
    some processes disappeared, example LogonUI.exe is no longer running, i had 25 LogonUI.exe running before, with restart it booted, i hope that PC will start tomorrow to, i hope i did not mess up something & it wont start,
    or i messed up PC security, made security holes.
    Another forum
    Post 1
    u have no idea what happened, i got both Process Monitor & explorer, i messed up double clicked on csrss.exe & that opened a new csrss.exe in task manager under my user, then i tried to kill the process, but it only suspended it, then i was thinking
    maybe after restart it lets me remove it totally from task manager, i made restart & what do i see when i open task manager? i see only 2 csrss.exe running, LOL sometimes messing up fixes the problem.
    maybe this what some call zombie processes, they were in use once & when the process stopped they were stuck?
    but all csrss.exe seemed legitimate, & no infection.
    Post 2
    does LogonUI.exe really run right new? is it just not showing? if its not running then i would have error message or problems with display? it would be funny if tomorrow i have all the 26 csrss.exe back.
    is LogonUI.exe running & just hidden, was it normal that LogonUI.exe was shown in task manager before? or is it  normal when its hidden? will it effect gaming? cant test, no games installed right new.
    but csrss.exe is not the only process that has more then 2 running & some over 10, one i counted it is 25.
    ok this are gone to, maybe this were connected to csrss.exe issue, but i have 10 svchost.exe, this should be normal?
    some processes disappeared, example LogonUI.exe is no longer running (well it seems it is no longer running, cause its no longer shown in task manager), i had 25 LogonUI.exe running before, with restart it booted, i hope
    that PC will start tomorrow to, i hope i did not mess up something & it wont start, or i messed up PC security, made security holes.
    i know some of my post i copied here repeat some things i said before, i copied the post cause i was thinking that it will help people to understand my situation better :).
    & i only double clicked on csrss.exe in windows system32 & created a new process, & i did end task to it & it was only suspended not killed, there was 2 win explores opened, one was cause i double clicked csrss.exe trough explorer, well u
    can see the files with out it, i was unable to remove it so i made a restart, & some processes were gone after that.
    i wonder did i mess up my windows & stopped some necessary progresses? despite the fact that PC is running, & seem to be running fine.
    csrss.exe was running 25 times & csrss.exe was running 26 times, but there was more processes that were running more then 3 times & they are gone to.
    if some processes i don't see any more are necessary i hope they at least run on background silently, is LogonUI.exe meant to run all the time like it did before? or only for few sec on log-on/start-up? so user never see it.
    PC seems to run fine right new, i did that stuff yesterday.
    i also have alienautopsy  & PC-Doctor to what is part of alienautopsy, i mentioned it in case it matters, also when i got in windows i so some strange process for few sec in task manager, its icon looked like computer chip, cant remember the process
    name, but if i remember correctly it was DLL or Intel process.
    under what name is LogonUI.exe admin tools service? i could check it from there, if u think its necessary

    well LogonUI.exe is listed on my task manager again, i mean its back, & about csrss, i have 3 running, i had 2 running yesterday (in task manager all 3 are running under system), with process explorer, it did not matter which of the csrss info i looked,
    all is same, all are runede by same processes, i could not copy that info under environment, but what i remember is, one was a  Invidia Pshysx, second & 3th was something to do with Intel, then i remember powershel, all that i remember, not worried
    about csrss yet, cause its still just 3, but i wonder about LogonUI.exe, for some reason i can't add picture/screenshot here
    dunno is it all normal or not, but i write it down here just in case, no problems with high memory nor cpu usage, PC seems to run normally
    if its not normal i have no idea whats causing it, i guess i need to just w8 a year or so before i give my PC to shop for maintenance, cause this is beyond me i think, cause no infections found & PC seems to run & function normally, maybe its caused
    by some old registry entries, i know registry cleaners are dangerous & can harm windows, so i think windows team should create their own reg cleaner free ware that finds only unnecessary reg entries that are no longer needed, a safe reg cleaner, also it
    mite be software issue/bug like example Invidia maybe is creating to meany hosts or how are this things called, csrss is connected to host service as far as i know, same goes for powershell & others that use csrss.exe, or windows bug, or bug that is caused
    by both, win8.1 & this drivers, well that's just a guess
    maybe its a bug, system has problems with removing some closed processes from the list, or shutting town the ones that were suppose to run temporarily?
    maybe i should ignore it until it starts to cause problems? i mean hit performance in a negative way
    i also noticed 2 dwm.exe & winlogon.exe running
    i used Ccleaner, but not for registry, i cleaned internet temporary files system temporary files event logs & memory dumbs & so on & on (its to much writing to write down all it cleans), if some of this type of files what are deleted with
    that, can it cause some processes to multiply? maybe among this files is a file where its written example what processes should be running or which process is connected to which process, like the Path & stuff, so registry cleaning is not the only cleaning
    that can cause issues?  or is it
    coincidence that after cleaning next day i see 1 extra csrss.exe &
    dwm.exe & winlogon.exe? either way i don't know do i want to test it & use cleaner 5 days after today again, does windows delete this things i mentioned i cleaned with cclener automatically over time? either way, i think i won't try anything
    to solve the extras issue, but if the number of this processes grows & it starts to cause problems i may just take the PC to a expert
    PC seems to run & respond normally
    EDIT 21/10/2014:
    today there is 2 csrss.exe & the other processes are back to 1 as well & LogonUI.exe is gone again, well i did not look processes when i turned PC on, i did it after restart, maybe it accrues after boot when win opens, that some processes remain
    & some are double
    is it normal that when i'm not doing anything with PC it takes 19% memory after PC start until i shut down & after restart it takes 16% memory (when i use restart button in windows), does this mean start up requires more memory & processes that
    remain running after start-up?

  • System tablespace space not regained when objects are dropped

    Mine is a Oracle 10g 10.2 on windows.
    I am importing a export file into a user ,It takes some amount of space in SYSTEM and another tablespace .When I drop the user space in system tablespace is not coming back. ANY IDEA WHY
    BEFORE IMPORT
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYSTEM';
    SUM(BYTES)/1024/1024
    22.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYS';
    SUM(BYTES)/1024/1024
    544.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where segment_name='SOURCE$';
    SUM(BYTES)/1024/1024
    41
    I use the following commands to import
    SQL>create user <username> identified by <password> default tablespace <tsname> quota unlimited on <tsname>;
    SQL>grant create session,imp_full_database to <username>;
    imp system file=filename.dmp log=logname.log fromuser=<username> touser=<username> statistics=none
    AFTER IMPORT
    SQL> select sum(bytes)/1024/1024 from dba_segments where segment_name='SOURCE$';
    SUM(BYTES)/1024/1024
    53
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYSTEM';
    SUM(BYTES)/1024/1024
    22.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYS';
    SUM(BYTES)/1024/1024
    728.375
    AFTER DROPPING THE USER/SCHEMA
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYS';
    SUM(BYTES)/1024/1024
    728.375
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYSTEM';
    SUM(BYTES)/1024/1024
    22.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where segment_name='SOURCE$';
    SUM(BYTES)/1024/1024
    53
    I even tried deleting the objects first and then dropping the user
    SQL> delete from source$ where obj# in(select object_id from dba_objects where owner='USERNAME');
    211252 rows deleted.
    SQL> commit;
    Commit complete.
    SQL> drop user USERNAME cascade;
    User dropped.
    The space used by the schema on system tablespace is not coming back.

    Hi user509593!
    Adding objects to a tablespace requires space in that tablespace. This space is managed in segments and extents. If an extent is fully used (that means 100 % usage) a new extent will be added to a segment. Oracle uses a mechanism called "High Water Mark" to mark the last used extent.
    Your problem is that oracle don't set this High Water Mark back if you are dropping objects from a tablespace. Once an extent is marked as it it retains marked as used.
    Before Adding Objects:
    u = used Extent
    x = free Extent
    | = High Water Mark
    uuuuuuxxxxx
    ...........|
    After Adding Objects:
    uuuuuuuxxxx
    ............|
    After dropping objects:
    uuuuuuuxxxx
    ............|
    The only chance to get your "unused" space back is to reorganized your tablespace. But before you reorganize something please read the documentation to know all about the costs and traps that comes with reorganization.
    Hope this help!
    null

  • Installed firefox 4 but will not run on osx10.4.how do i retrieve version 3.6 and all bookmarks etc

    i downloaded firefox 4 but did not notice that it required osx10.5 as my computer is running 10.4.11 installed program ok but when trying to open it i get message that it will not run on my system.
    how do i get back to 3.6 as firefox 4 appears to have deleted all the old files. can i retrieve my bookmarks etc and where can i download version 3.6

    You can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    Mozilla are working to prevent Mac users with non-compatible systems from getting the notification about Firefox 4, and also not displaying the "Download Firefox 4" button on http://www.mozilla.com

  • The Audio Service is not running when I open certain programs

    My audio works fine when I boot my computer.  However, any time I got to click on the speaker icon at the bottom right the audio service stops running.  When I use the system.msc fix that is very common on the web by the time I open the panel the
    audio has already realized that it is running and starts running again.  If I open razer comms, it stop working again and I either can open system.msc to fix it, or I can just click the speaker icon to fix it.  When I open a game, like FFXIV it stop
    working again, click the speaker and all the sudden it turns back on.  
    I have read every thread I can find on the web about the "Audio is not running" issue but no one seems to have had this exact problem and I don't know how to fix it.
    For the love of god help
     

    Hi,
    By saying the audio service us not working, do you mean the speaker icon show an red "X" ?
    Please take a check with the following KB article:
    In Windows 7 a red 'X' may appear over the speaker icon in the notification area even though audio output functions correctly
    If this is the issue, then this behavior is cosmetic in nature and does not affect the performance of Windows.
    Best regards
    Michael Shao
    TechNet Community Support

Maybe you are looking for

  • Vf21 - invoices list - RV

    hi, when I try to post invoice list in accounting I get an error from the system warning me that it can't find document type RV! I checked it and I figured out that I really miss this document...so: 1) should I create it ??? and how??? 2) should I se

  • Can I use More than one Apple ID on an iMac?

    I have aniMac with 2 users and I would like each to have a seperate Apple ID to use with iCloud, iTunes etc.  So far I have not been able to do this.  Any thoughts?

  • .. very simple issue.. very urgent.

    Hi SDN, We are finding out Longitude and Latitude for getting some output based on the address of customer.. I see there is use of Trignometric functions here.. I Just want to find out TAN 45 degreese value in ABAP.. When I calculate <b>TAN ( 45 )</b

  • CPU Mounting problem

    Hi all i need some help for my m8 as he can not post on the forum. ok he has just got a new CPU for his PC now the problem is as he was fitting it he broke one of the clips that fits the CPU to the MOBO and the PC is now over heating due to the CPU n

  • Is there a replacement for avery labels software in Lion

    I just spent an hour battling one of the clumsiest pieces of software I've ever dealt with in three decades of computer use. Avery labels! Used to be a snap, under (gulp!) Windows, but now it's an unmitigated disaster.* I have tried to use OpenOffice