AQ troubleshooting doc

Hi All,
I came across this good article on AQ troubleshooting. Thought of sharing it with all, hence, this post. Out of things mentioned in article, I have outlined a few steps, that helped me in our environment while troubleshooting AQ issues.
How to troubleshoot AQ issues?
https://blogs.oracle.com/db/entry/oracle_support_master_note_for_troubleshooting_advanced_queuing_and_oracle_streams_propagation_issue
a step-by-step methodology for troubleshooting and resolving problems with Advanced Queuing Propagation in both Streams and basic Advanced Queuing environments
1. Check if queues are buffered (in-memory) or persistent (on disk in a queue_table).
SQL> select * from  v$buffered_queues;
no rows selected
2. Check if queue_to_queue or queue_to_dblink is used.
col destination for a15
col session_id for a15
set line 200
select qname,destination,session_id,process_name,schedule_disabled,instance, current_start_time
from dba_queue_schedules order by current_start_time desc,schedule_disabled desc ;
3. Check if queues are propagating data at all or are slow?
select TOTAL_NUMBER from DBA_QUEUE_SCHEDULES where QNAME='&queue_name';
4. Check job_queue_processes parameter. Should be more than 4.
5. Identify job queue processes...
For 10.2 and lower
select p.SPID, p.PROGRAM
from V$PROCESS p, DBA_JOBS_RUNNING jr, V$SESSION s, DBA_JOBS j
where s.SID=jr.SID
and s.PADDR=p.ADDR
and jr.JOB=j.JOB
and j.WHAT like '%sys.dbms_aqadm.aq$_propaq(job)%';
For 11.1 and higher
col PROGRAM for a30
select p.SPID, p.PROGRAM, j.JOB_name
from v$PROCESS p, DBA_SCHEDULER_RUNNING_JOBS jr, V$SESSION s, DBA_SCHEDULER_JOBS j
where s.SID=jr.SESSION_ID
and s.PADDR=p.ADDR
and jr.JOB_name=j.JOB_NAME
--and j.JOB_NAME like '%AQ_JOB$_%';
6. Check Alert.log and tracefiles for more information.
7. Check if DBlink is working fine through owner of DBlink.
8. Check queue errors and also find out associated Queue table
set linesize 140;
column destination format a25;
column last_error_msg format a35;
column schema format a15
select schema,
       qname,
       destination,
       failures,
       last_error_date,
       last_error_time,
       last_error_msg
from   dba_queue_schedules
where  failures != 0;
select QUEUE_TABLE from DBA_QUEUES where NAME ='&queue_name';
Check what queue is supposed to do
column qname format a40
column user_comment format a40
column last_error_msg format a40
column destination format a25
select distinct a.schema || '.' || a.qname qname
      ,a.destination
      ,a.schedule_disabled
      ,b.user_comment
from dba_queue_schedules a, dba_queues b
where a.qname=b.name;
9. Check if Queues are disabled.
select schema || '.' || qname,
       destination,
       schedule_disabled,
       last_error_msg
from dba_queue_schedules
where schedule_disabled='Y';
10. If queue is DISABLED...enable it using following
select 'exec dbms_aqadm.enable_propagation_schedule(''' || schema || '.' || qname || ''', ''' || destination || ''');'
from dba_queue_schedules
where schedule_disabled='Y';
10.1 Check if propagation has been set correctly
Check that the propagation schedule has been created and that a job queue process has been assigned. Look for the entry in DBA_QUEUE_SCHEDULES and SYS.AQ$_SCHEDULES for your schedule. For 10g and below, check that it has a JOBNO entry in SYS.AQ$_SCHEDULES, and that there is an entry in DBA_JOBS with that JOBNO. For 11g and above, check that the schedule has a JOB_NAME entry in SYS.AQ$_SCHEDULES, and that there is an entry in DBA_SCHEDULER_JOBS with that JOB_NAME. Check the destination is as intended and spelled correctly.
10.2 Check if a Process_Name has been assigned to a queue, if no process_name is assigned...schedule is not currently executing. You may need to execute this statement no. of times to verify if a process is being allocated.
10.3 if a process_name is assigned and schedule executing but failing...Refer to step 8 for errors.
10.4 Check if queue tables exists in sys
SQL> select NAME, ENQUEUE_ENABLED, DEQUEUE_ENABLED
from DBA_QUEUES where owner='SYS'
and QUEUE_TABLE like '%PROP_TABLE%';
If the %PROP_NOTIFY queue is not enabled for enqueue or dequeue, it should be so enabled using DBMS_AQADM.START_QUEUE. However, the exception queue AQ$_AQ$_PROP_TABLE_E should not be enabled for enqueue or dequeue.
10.5 Check that the remote queue the propagation is transferring messages to exists and is enabled for enqueue
If the AQ_PROP_NOTIFY queue is not enabled for enqueue or dequeue, it should be so enabled using DBMS_AQADM.START_QUEUE. However, the exception queue AQ$_AQ$_PROP_TABLE_E should not be enabled for enqueue or dequeue.
11. Check performance of each queue.
col last_run_date for a40
col qname for a25
col NEXT_RUN_DATE for a40
col seconds for 9999
set line 200
select qname,
       last_run_date,
       NEXT_RUN_DATE,
       total_number MESSAGES,
       total_bytes/1024 KBYTES,
       total_time SECONDS,
       round(total_bytes/(total_time+0.0000001)) BYTES_PER_SEC, process_name
from dba_queue_schedules
order by BYTES_PER_SEC;
12. Check if there are locking issues...High value for Ctime>1800 indicates suspicious lock
select * from gv$transaction_enqueue order by ctime;
12.1 Find out objects accessed by session
  select * from gv$access
where sid = 176 and object like 'T_%'
and owner = 'owner_name';
   INST_ID        SID OWNER                          OBJECT                         TYPE
         3        176 owner_name                    Some_queue_table_name         TABLE
         2        176 owner_name                    Some_queue_table_name         TABLE
         1        176 owner_name                    Some_queue_table_name         TABLE
12.2
select * from gv$lock
where sid = 176 and inst_id = 3;
   INST_ID ADDR     KADDR           SID TY        ID1        ID2      LMODE   REQUEST      CTIME      BLOCK
         3 A404050C A4040520        176 TM      35580          0          3         0      82823          2
         3 A40407A0 A40407B4        176 TM      35578          0          3         0      82823          2
         3 A4040058 A404006C        176 TM      35591          0          3         0     
12.3
select object_name 
from gv$lock l join dba_objects on id1 = object_id
where sid = 176 and inst_id = 3
and type = 'TM';
OBJECT_NAME
AQ$_queue_table_name_T
AQ$_queue_table_name_H
AQ$_queue_table_name_I
Some_queue_table_name
12.4. It could be that session is stuck...mostly, it ll be job in dbms_job trying to propagate message for 10.2 and below version
select /*+rule*/ *
from dba_jobs_running
where sid = 176;
       SID        JOB   FAILURES LAST_DATE LAST_SEC                 THIS_DATE THIS_SEC                INSTANCE
       176    2867992                                               13-MAY-07 16:27:06                  3
select job,what,this_date,next_date,broken
from dba_jobs
where job = 2867992;
       JOB WHAT                                               THIS_DATE         NEXT_DATE         B
   2867992 next_date := sys.dbms_aqadm.aq$_propaq(job);       13-MAY-2007 16:27 13-MAY-2007 16:27 N
Check the job has an associated propagation schedule.  If it doesn’t then that means the locks being seen are problems because the job is not doing anything.
select sid,jobno
from sys.aq$_schedules
where jobno = 2867992;
no rows selected
Check the job still has a thread running within the Oracle executable:
select sid,spid,p.program
from gv$session s join gv$process p on paddr = addr
where s.sid= 176 and s.inst_id = 3;
       SID SPID         PROGRAM
       176 4608         ORACLE.EXE (J044)
v$session_wait shows it is still waiting for input even though the link has gone, confirming the issue:
select event from gv$session_wait  where sid = 176  and inst_id = 3;
EVENT
SQL*Net message from dblink
13. Tracing queues
10.2 and below
connect / as sysdba
select p.SPID, p.PROGRAM
from v$PROCESS p, DBA_JOBS_RUNNING jr, V$SESSION s, DBA_JOBS j
where s.SID=jr.SID
and s.PADDR=p.ADDR
and jr.JOB=j.JOB
and j.WHAT like '%sys.dbms_aqadm.aq$_propaq(job)%';
-- For the process id (SPID) attach to it via oradebug and generate the following trace
oradebug setospid <SPID>
oradebug unlimit
oradebug Event 10046 trace name context forever, level 12
oradebug Event 24040 trace name context forever, level 10
-- Trace the process for 5 minutes
oradebug Event 10046 trace name context off
oradebug Event 24040 trace name context off
-- The following command returns the pathname/filename to the file being written to
oradebug tracefile_name
11g
connect / as sysdba
col PROGRAM for a30
select p.SPID, p.PROGRAM, j.JOB_NAME
from v$PROCESS p, DBA_SCHEDULER_RUNNING_JOBS jr, V$SESSION s, DBA_SCHEDULER_JOBS j
where s.SID=jr.SESSION_ID
and s.PADDR=p.ADDR
and jr.JOB_NAME=j.JOB_NAME
and j.JOB_NAME like '%AQ_JOB$_%';
-- For the process id (SPID) attach to it via oradebug and generate the following trace
oradebug setospid <SPID>
oradebug unlimit
oradebug Event 10046 trace name context forever, level 12
oradebug Event 24040 trace name context forever, level 10
-- Trace the process for 5 minutes
oradebug Event 10046 trace name context off
oradebug Event 24040 trace name context off
-- The following command returns the pathname/filename to the file being written to
oradebug tracefile_name
How to Enable/Diasble queue
col desitnation for a25
select QNAME,DESTINATION,SCHEDULE_DISABLED from dba_queue_Schedules where destination='DB_link';
exec dbms_aqadm.DISABLE_PROPAGATION_SCHEDULE(QUEUE_NAME=>'&Enter_SchemaName_QueueName',DESTINATION=>'&Enter_Destination');
exec dbms_aqadm.ENABLE_PROPAGATION_SCHEDULE(QUEUE_NAME=>'&Enter_SchemaName_QueueName',DESTINATION=>'&Enter_Destination');
exec dbms_aqadm.unschedule_propagation(QUEUE_NAME=>'&Enter_SchemaName_QueueName',DESTINATION=>'&Enter_Destination');
exec dbms_aqadm.schedule_propagation(QUEUE_NAME=>'&Enter_SchemaName_QueueName',DESTINATION=>'&Enter_Destination');

My audio has the scratchy, stuttering, speedy
problems others have reported. I have followed all
the tips and recommendations in the troubleshooting
document for this problem, and I am incredibly
frustrated.
I'm running XP and everything was fine on iTunes 6.
Nothing in my system has changed other than
installing iTunes 7 - so I can't imagine that there
is anything out of whack on my system.
Does anyone have any real solutions for this problem?
Sorry to report that I too have this problem. I was hoping that someone could help me get back to i-Tunes 6 as that worked very well for me. What I do with the scratchy popping thing for now is I simply close the i-Tunes and restart it. Most of the time that will work on the first try.
I'm using windows XP also with no other issues.

Similar Messages

  • FLV -- new troubleshooting doc

    There have been many, many posts about problems with displaying FLV files. We've just updated the CS4 documentation to include a new troubleshooting section that might help a lot of you who are having problems. As this is a much-talked-about issue, please publicize this troubleshooting information as much as possible on other blogs and forums if you're able to do that.
    Here is a link to the new FLV troubleshooting section in Dreamweaver CS4 Help:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7c9 ea.html#WS42d4a1c0291fbe4e-3262ef8e1232fbff0d3-8000
    Special thanks to David Powers who originally alerted us to the need for such a doc.
    The doc does not and cannot cover all issues. There are still many users for whom this doc won't provide a solution. But hopefully, the information provided will be able to help a good majority of people having trouble with FLV.
    Thanks everyone!
    Jon

    Sure, feel free to add WIKI pages. I guess the best place for that would be the ES WIKI.
    The troubleshooting and solutions that I added here focused solely on VC, but as it's a WIKI, anybody with troubleshooting solutions can create entries.

  • Troubleshooting echo

    1751v Router w/2 2port DID VIC's
    I'm attempting to troubleshoot the sporadic voice issues one of my remote offices are having, but I've read so many support docs that I?ve got myself confused. The most common issue reported is echo. The people on the IP side of the legs are hearing the echo, not the outside (analog).
    My voice ports are setup as follows:
    voice-port 1/0
    input gain -3
    echo-cancel coverage 48
    no vad
    no comfort-noise
    timing dialout-delay 300
    I've been reading through an impedance troubleshooting doc and I'm concerned about the ERL levels that are being reported.
    I make a test call via a typical outside analog line to a DID number in that office. then, I issue a test tone sweep on that particular port and here's what I see:
    A-1751#test voice port 1/1 inject-tone network sweep 200 0 0
    Freq (hz), ERL (dB), TX Power (dBm), RX Power (dBm)
    104 -79 -82 -3
    304 -79 -82 -3
    504 -79 -82 -3
    704 -79 -82 -3
    904 -79 -82 -3
    1104 -79 -82 -3
    1304 -79 -82 -3
    1504 -79 -82 -3
    1704 -79 -82 -3
    1904 -79 -82 -3
    2104 -79 -82 -3
    2304 -79 -82 -3
    2504 -79 -82 -3
    2704 -79 -82 -3
    2904 -79 -82 -3
    3104 -79 -82 -3
    3304 -79 -82 -3
    3404 -79 -82 -3
    Those ERL values aren't even close to what the troubleshooting docs recommend. I've tried all 5 impedance settings as well as changing the input gain, output attenuation, and the echo-coverage to try and eliminate the echo problems..
    Do those ERL levels (-79) look normal to anyone?? Any advice on what I should do next to get to the bottom of this echo problem?
    (Just realized I posted this in the wrong Topic, Sorry!)

    I've initiated the test tone from the 7960 and was able to replicate near or exactly the same erl that I have seen in other docs. I had to call from one 7960 to another 7960 via the pstn and once the call is established initiate the test tone from both phones.
    Press the Settings button on the IP phone to enter the Settings menu in order to enable the tone
    generator.
    This enables the Tone softkey for as long as this phone is registered to Cisco CallManager.
    1.
    Press **##**3 on the Cisco IP Phone 7940 or 7960 keypad while the phone is not on a call. When
    you go to Option 5 "STATUS", you should see more debug information (for example, Stack
    Statistics, and Debug Display).
    Note: From Load #P0030301ESP5, you need to unlock the phone first, then you can press **##**3.
    You need to be careful because if you press **#** consecutively, you reset the phone (because of
    the **#** sequence).
    This enables the Tone softkey for as long as this phone is registered to Cisco CallManager.
    2.
    Place a call to the source phone with the echo problem.
    Once the call is established, press the "i or ?" button twice. This brings up the statistics for the call.
    Note: If the **##**3 key sequence works, you should have a Tone softkey available. Press the Tone
    softkey and the phone begins to generate a 1004 Hz tone at -15 dB. The only way to stop the tone is
    to end the call.

  • CUPC 8.6.3 login failed

    I am running these versions of CUCM 8.6.2.10000-30, CUP 8.6.4.12900-2 and using CUPC 8.6.3.20802.
    Fully AD integration and AD authentication. All userids and passwords are operational.
    I keep getting login failed when I try to loginto Cisco Unified Personal Communicator in VOICE LAB ENVIRONMENT

    Hi,
    The following troubleshooting doc for CUPC should help
    http://www.cisco.com/c/en/us/support/docs/voice-unified-communications/unified-presence/97443-cups-cupc-ts.html#topic1
    Please check the following sections:
    Understanding the CUPC Boot-up Process
    Cannot Log In to the CUPC When Troubleshooter Shows All Green
    HTH
    Manish

  • [OBIEE 11g] Enforce star-schema without security filter?

    I have imported my first OLAP cube using the instructions <a href = 'http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r1/olap/biee/createbieemetadata.htm'>here</a> and have applied the necessary security filter to force the star join between the cube and dimension views. However, the security filter does not apply to users in the BI Administrator user group. Is there any way to do this without a security filter, or somehow apply the security filter even when the user is an administrator?
    Edited by: islan on Jan 22, 2013 7:56 AM
    Edited by: islan on Jan 22, 2013 7:57 AM

    The link in your first posting points to the old-way of creating OBIEE metadata for OLAP objects.
    Starting with OBIEE 11.1.1.5, it is much simpler as Oracle-OLAP is one of the data sources in BI-Admin Tool.
    So do not use the old way.
    Start with this doc:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/olap/olap.htm
    For your other issue, you need this troubleshooting doc:
    http://www.oracle.com/technetwork/database/options/olap/troubleshootingbieeconnections-504856.pdf
    Note that even though it says OBIEE 11.1.1.5, the above two docs are applicable to 11.1.1.6 and future releases.
    For security, you should define it in OBIEE instead of doing in OLAP.
    .

  • How do I get sync to work again with Typekit and Creative Cloud?

    I have been using my CC apps with Typekit and it was syncing fine. Now for that last few days I am getting a sync error message. More info is useless—blames lack of an internet connection which is not accurate.  I've turned sync off and on, remove and readied the fonts from type kit. Closed out and logged back in to CC app. Nothing is working. I have two DSL lines both of which are working and have tried it connected to each in turn. Still cannot sync.
    I am now online with Adobe phone support after a 2-hr wait for the call back. Just told my story again. On hold. Now they tell me Adobe can't do anything other than read the same troubleshooting docs that Typekit has on their site (which I've already done). This alliance only works if Adobe and Typekit work together. I've already emailed twice and tweeted to Typekit and gotten ZERO response. I was pretty emphatic with the guy in Adobe tech support and he said he would escalate it to the India "Dream Team." Hopefully they will be more dream than nightmare.

    Hello,
    I'm sorry that you ran into trouble with this. Typekit Support did not recieve your email, and didn't realize you were waiting for a reply. I do apologize for that.
    Would you please send your recent log files to [email protected] so that we can take a look?  I've included the instructions below. It sounds like there may be a problem with your computer reaching the Creative Cloud servers, and the logs will have more information. 
    Please let me know when you have sent that email, so that we can watch for it.  Thank you,
    -- liz
    On OS X:
    * Open the Finder
    * under the Go menu, select "Go To Folder"
    * in the window that opens, type:  /Users/(username)/Library/Application Support/Adobe/CoreSync/
    Or if you are comfortable working from the Terminal:
    cd $HOME/Library/Application Support/Adobe/CoreSync/
    On Windows:
    C:\Users\(username)\AppData\Roaming\Adobe\CoreSync\
    Attach the recent CoreSync-yyyy-MM-dd.log files to an email. Please don't send a zip file, as they often get flagged as spam.

  • An iPhone Burned My Girlfriend... And Now Will Not Charge/Sync

    So last week my girlfriend's iPhone 3gs did something new. She had just plugged it into the charger - the one that came with the phone when she purchased it - and plugged the charger into a wall outlet. My iPhone charger occupied the other socket. Within about 60 seconds, she noticed that the phone was getting extremely hot to the touch toward the bottom where the charger is. Then the burning smell started, so she immediately unplugged the phone. The end of the charger cable was actually hot enough to burn her skin and leave a scar where it touched her arm. When we looked at the port on the bottom of the phone, there were scorch marks on the contacts for the cable.
    My phone was fine, we unplugged both cables and plugged them back in, then plugged her cable into my phone. It functioned perfectly. We plugged my cable into her phone and it said "this charging device is not supported." We tried some other cables we had from her old iPhone and our iPods, same thing. The issue was definitely related to her phone.
    In the morning she called the local Apple store to make an appt. at the "genius bar." The guy on the phone listened to the issue, then said (in the most obnoxiously condescending douche voice possible) "Ma'am this could NOT be a problem with your phone but I guess if you want you can bring it in Friday and 4:30 and I will try to fit you in." Mind you, this was LAST TUESDAY so we know he is probably booked solid til then with people who have problems with their brand-new iPhone 4. Last night, on a whim, I decided to take her through all the troubleshooting steps they will go through and ask her if she did so they can send her away without resolving her problem.
    I plugged the phone into my computer. Wasn't recognized by either device. I swapped cables, tried again, no dice. I tried unplugging it and plugging it back in a few times and for a split second it said "sync in progress" so I wiggled the cable and held it in at an odd angle and finally got it to sync up. I backed up all her data first, then I tried to restore it per Apple's troubleshooting docs. It would not maintain connection long enough to restore. I tried to update it to OS4, also no connection. My phone worked fine on the same cable in the same slot. I had a nagging idea in my head Apple would still try to f* her over, so we registered her on their support site. It initially told us her hardware was no longer covered unless it was a "manufacturer's defect." Well, of course this is a defect! So I selected the exception and had a tech support rep call us.
    She was polite but seemed like she knew nothing about what she was doing. Her first idea was for us to pay Apple $29.99 to cover the device, so we explained this is a manufacturer's defect and it should be covered for free. She had already heard the story once but we repeated it for emphasis that it was in fact the iPhone itself. She said, "Oh well it COULDN'T be the iPhone!" and suggested we restore it. I had just gotten done telling her that no computer would recognize that specific phone, so I asked her how she recommended we restore it. She read through her list of scripted responses, then told us to take it to an Apple store, but they "probably wouldn't be able to help us since it doesn't sound like the phone was the problem."
    Now I KNOW that Apple told its support employees to DENY DENY DENY all responsibility for issues with their hardware, the memo was leaked and published all over the place recently. But this is just ********. It's not even like we have an iPhone 4 and they can't afford to swap it for us... they have TONS of leftover 3gs's that nobody is going to buy. But still, we get screwed by their ****-poor customer service AGAIN.
    So, I decided to make everyone aware of this issue in case they were wondering how Apple is treating their customers. I am no overzealous fanboy, I do happen to like my iPhone 3gs when it has service... It has provided the least number of headaches out of all the phones I have owned and tried recently. It's a grudging concession though, as I have had no small number of problems with their products before. But back then, when my 6th iPod died the same way as the other 5 before it, even a year out of the warranty, they would just send me a box to return it and a new iPod no questions asked.
    I will update with results of our visit to the Apple store if I get to go with her.
    Anyone else had a similar problem or experience that can lend some info on how to deal with the "Genius" at the Apple store, or Apple support in general?

    Can I ask you a personal question? Why do a certain "faction" of Apple users and supporters eschew logic and accountability in favor of a fanatical level of worship toward the company and its products?
    You say that is how it has "always been," yet I remember an Apple that replaced 6 (SIX!) of my iPods for the same design fault without so much as asking me a single question before sending a box.
    You say all manufacturers do this, however Samsung replaced my phone with a revised design of the same model when they realized that the battery cover was defective. Nokia did the same with theirs for various software problems. Twice, as a matter of fact.
    I have spoken to other Apple customers (via relating this story to other groups on the internet) who had their iPhones replaced for less than this. I guess it's no surprise that I would get this type of response on a board maintained by Apple; I somehow expected that if the company STILL can't take responsibility for flaws in the basic design of the iPhone 4 - verified by several independent tests that provide irrefutable evidence - I wouldn't be able to receive anything of value from its representatives or various hangers-on that make up what I suspect to be a large percentage of this forum's membership.
    I don't want to hear "the company is always right" mantra, I want someone not plugged into the Cupertino Matrix, so to speak, to offer some insight on what I might be able to do to make the "genius" behind the counter forgo the whole "anti-customer service" attitude that Apple instills in its employees through memos and threats of termination these days and DO HIS JOB, which by my definition is ASSISTING THE CUSTOMER WITH A PIECE OF DEFECTIVE HARDWARE. I would be surprised if he were even able to go beyond plugging it into his test rig *one time* before handing it back and suggesting we buy a replacement or upgrade to the new model as he has been programmed to do.
    Seriously, what is the password, secret handshake, the wink and nod required to cut through the facade - aside from spending what I originally paid a second time? Or is there nothing substantive behind it for you people anymore?
    I LOVE my iPhone, I really do. The only gripe I have EVER had with it is related to AT&T service problems. I upgraded to iOS4 on the launch date, I enjoy the apps, the fast web browsing, the relative ease of use... I will wait for the revised model of the new iPhone to come out (still waiting for Apple to acknowledge THEIR problems first), but Apple WILL get my money. I could be one of you, I just feel like I want to retain my objectivity instead of being lobotomized and becoming a brand-slave.

  • ICloud backups failing due to Safari bookmarks DB being locked

    iCloud backups are failing to complete on my iPhone 4 (CDMA), iOS 5.0.1.  I successfully completed a backup on November 9, but haven't been able to get a backup to complete since then.  When I manually invoke the "Back Up Now" function, it starts backing up, then says "There was a problem completing the backup.  Please try again later."
    Looking in the console logs (below), it appears the problem is that the Safari bookmarks DB is locked (corrupted?).  Indeed, I am unable to add additional bookmarks in Safari, I get the message: "Bookmarks are being synced.  Please add the bookmark once syncing has completed."
    I've tried restarting the iPhone to no avail; I've also looked at Apple's iCloud backup troubleshooting doc, and none of the cases there seemed to match this problem.
    Any suggestions ar every much appreciated!
    Here is what the iPhone console says:
    Nov 29 15:47:01 unknown backupd[7416] <Warning>: INFO: SQLite file is locked: /var/mobile/Library/Safari/Bookmarks.db (d1f062e2da26192a6625d968274bfda8d07821e4)
    Nov 29 15:47:02 unknown backupd[7416] <Warning>: WARNING: Error checkpointing copied SQLite file: disk I/O error (10) (MBErrorDomain/16): /var/mobile/Library/AddressBook/AddressBookImages.sqlitedb (cd6702cea29fe89cf280a76794405adb17f9a0ee)
    Nov 29 15:47:04 unknown backupd[7416] <Warning>: INFO: Added batch of 4 files of size 15.2 KB in 2.155 s at 0.01 MB/s (6.6%)
    Nov 29 15:47:04 unknown backupd[7416] <Warning>: INFO: Finished adding files in 7.103 s at 13.20 MB/s
    Nov 29 15:47:05 unknown backupd[7416] <Warning>: WARNING: Retrying after hard error: Files modified while backing up (MBErrorDomain/9)
    Nov 29 15:47:09 unknown backupd[7416] <Warning>: INFO: Snapshot 85 is uncommitted
    Nov 29 15:47:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:47:33 unknown lockdownd[21] <Error>: 016b4000 copy_basebandRegionSKU: MobileGestalt failed to provide an BasebandRegionSKU
    Nov 29 15:47:33 unknown lockdownd[21] <Error>: 016b4000 special_case_get_domain: NN: checking BT MAC Address reported back 24:ab:81:ec:bf:37
    Nov 29 15:47:33 unknown kernel[0] <Debug>: lockbot[7436] Builtin profile: gputoolsd (sandbox)
    Nov 29 15:47:36 unknown lockdownd[21] <Error>: 01632000 copy_basebandRegionSKU: MobileGestalt failed to provide an BasebandRegionSKU
    Nov 29 15:47:36 unknown lockdownd[21] <Error>: 01632000 special_case_get_domain: NN: checking BT MAC Address reported back 24:ab:81:ec:bf:37
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: Found paths:
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /usr/lib/dyld
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /System/Library/Caches/com.apple.dyld/dyld_shared_cache_armv7
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/usr/lib/CFDataFormatters.dylib
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/usr/lib/libdebugnub.dylib
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/usr/lib/libXcodeDebuggerSupport.dylib
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/Library/PrivateFrameworks/GPUTools.framework/libglInterpose.dylib
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/Library/PrivateFrameworks/GPUToolsCore.framework/GPUToolsCore
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/Library/PrivateFrameworks/DevToolsBundleInjection.framework/DevTools BundleInjection
    Nov 29 15:47:37 unknown DTFetchSymbols[7448] <Notice>: /Developer/Library/Frameworks/SenTestingKit.framework/SenTestingKit
    Nov 29 15:47:56 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Safari/Bookmarks.db
    Nov 29 15:48:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:48:29 unknown backupd[7416] <Warning>: INFO: Scanned in 79.680 s
    Nov 29 15:48:30 unknown backupd[7416] <Warning>: INFO: Found 0 deleted files in 0.995 s
    Nov 29 15:48:33 unknown backupd[7416] <Warning>: INFO: Updated snapshot 85 (added 6 files of size 182.2 MB)
    Nov 29 15:48:33 unknown backupd[7416] <Warning>: INFO: Created backup and snapshot in 2.651 s
    Nov 29 15:48:33 unknown backupd[7416] <Warning>: INFO: Adding 6 files of size 182.2 MB
    Nov 29 15:49:11 unknown backupd[7416] <Warning>: INFO: Added batch of 1 files of size 88.7 MB in 24.837 s at 3.57 MB/s (29.4%)
    Nov 29 15:49:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:49:45 unknown backupd[7416] <Warning>: ERROR: Error starting transfer of items with MMCS: Error Domain=com.apple.mmcs Code=30 "The operation couldn’t be completed. (com.apple.mmcs error 30 - All items in the request have failed. Put authorization will not be requested)" UserInfo=0xf9d5bf0 {NSDescription=All items in the request have failed. Put authorization will not be requested}
    Nov 29 15:49:45 unknown backupd[7416] <Warning>: INFO: Not retrying after unrecoverable error: Error putting items into chunk store (MBErrorDomain/400). Underlying error: Error putting items into MMCS (MBErrorDomain/400). Underlying error: The operation couldn’t be completed. (com.apple.mmcs error 30 - All items in the request have failed. Put authorization will not be requested) (com.apple.mmcs/30)..
    Nov 29 15:49:51 unknown backupd[7416] <Warning>: ERROR: Backup failed: Error putting items into chunk store (MBErrorDomain/400). Underlying error: Error putting items into MMCS (MBErrorDomain/400). Underlying error: The operation couldn’t be completed. (com.apple.mmcs error 30 - All items in the request have failed. Put authorization will not be requested) (com.apple.mmcs/30)..
    Nov 29 15:49:52 unknown lockdownd[21] <Error>: libMobileGestalt copyInternationalMobileEquipmentIdentity: No IMEI in CT mobile equipment info dictionary - <CFBasicHash 0x2254b0 [0x3f5f5630]>{type = mutable dict, count = 6,
              entries =>
                        1 : <CFString 0x250530 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoCurrentSubscriberId"} = <CFString 0x224740 [0x3f5f5630]>{contents = "2062760895"}
                        2 : <CFString 0x225480 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoCurrentMobileId"} = <CFString 0x24f4d0 [0x3f5f5630]>{contents = "A100001AEF8D32"}
                        3 : <CFString 0x240100 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoMEID"} = <CFString 0x24f4d0 [0x3f5f5630]>{contents = "A100001AEF8D32"}
                        4 : <CFString 0x255a70 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoMIN"} = <CFString 0x224740 [0x3f5f5630]>{contents = "2062760895"}
                        7 : <CFString 0x258a10 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoPRLVersion"} = <CFNumber 0x250de0 [0x3f5f5630]>{value = +52341, type = kCFNumberSInt64Type}
                        8 : <CFString 0x250570 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoERIVersion"} = <CFNumber 0x240050 [0x3f5f5630]>{value = +6, type = kCFNumberSInt32Type}
    Nov 29 15:49:52 unknown lockdownd[21] <Error>: 01632000 copy_imei: MobileGestalt failed to provide an IMEI
    Nov 29 15:49:52 unknown lockdownd[21] <Error>: 01632000 copy_iccid: invalid ICCID from CT/no ICCID available
    Nov 29 15:49:53 unknown backupd[7416] <Warning>: INFO: Scheduling next backup at 11/29/11 3:50:23 PM
    Nov 29 15:50:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:50:26 unknown backupd[7416] <Warning>: INFO: Backup starting
    Nov 29 15:50:26 unknown backupd[7416] <Warning>: INFO: DeviceID="8e00a6a6d8e93337321c17ba679894a5ac80ddb1", DeviceName="Blake Scholl's iPhone", ProductType="iPhone3,3", BuildVersion="9A405"
    Nov 29 15:50:30 unknown profiled[7458] <Notice>: (Note ) profiled: Service starting...
    Nov 29 15:50:32 unknown wifid[25] <Error>: WiFi:[344303432.585437]: Client itunesstored is background application
    Nov 29 15:50:38 unknown backupd[7416] <Warning>: INFO: Refreshed cache in 4.024 s
    Nov 29 15:50:38 unknown backupd[7416] <Warning>: INFO: Snapshot 85 is uncommitted
    Nov 29 15:51:15 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Safari/Bookmarks.db
    Nov 29 15:51:16 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Preferences
    Nov 29 15:51:18 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Preferences/com.apple.itunesstored.plist
    Nov 29 15:51:18 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Preferences
    Nov 29 15:51:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:51:31 unknown profiled[7458] <Notice>: (Note ) profiled: Idled.
    Nov 29 15:51:31 unknown profiled[7458] <Notice>: (Note ) profiled: Service stopping.
    Nov 29 15:51:50 unknown backupd[7416] <Warning>: INFO: Scanned in 71.803 s
    Nov 29 15:51:52 unknown backupd[7416] <Warning>: INFO: Found 1 deleted files in 1.279 s
    Nov 29 15:51:55 unknown backupd[7416] <Warning>: INFO: Updated snapshot 85 (added 11 files of size 93.8 MB)
    Nov 29 15:51:55 unknown backupd[7416] <Warning>: INFO: Created backup and snapshot in 2.424 s
    Nov 29 15:51:55 unknown backupd[7416] <Warning>: INFO: Adding 11 files of size 93.8 MB
    Nov 29 15:51:55 unknown backupd[7416] <Warning>: INFO: SQLite file is locked: /var/mobile/Library/Safari/Bookmarks.db (d1f062e2da26192a6625d968274bfda8d07821e4)
    Nov 29 15:51:56 unknown backupd[7416] <Warning>: WARNING: Error checkpointing copied SQLite file: disk I/O error (10) (MBErrorDomain/16): /var/mobile/Library/AddressBook/AddressBookImages.sqlitedb (cd6702cea29fe89cf280a76794405adb17f9a0ee)
    Nov 29 15:52:00 unknown backupd[7416] <Warning>: INFO: Added batch of 9 files of size 3.8 KB in 4.011 s at 0.00 MB/s (0.0%)
    Nov 29 15:52:01 unknown backupd[7416] <Warning>: INFO: Added batch of 1 files of size 0 B in 0.492 s at 0.00 MB/s (0.0%)
    Nov 29 15:52:01 unknown backupd[7416] <Warning>: INFO: Finished adding files in 6.141 s at 15.27 MB/s
    Nov 29 15:52:03 unknown backupd[7416] <Warning>: WARNING: Retrying after hard error: Files modified while backing up (MBErrorDomain/9)
    Nov 29 15:52:09 unknown backupd[7416] <Warning>: INFO: Snapshot 85 is uncommitted
    Nov 29 15:52:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:52:25 unknown atc[7384] <Warning>: ATC|__block_global_22|ATController.m:1182| Assertion check - link <ATLink: 0x1862d0> held: 0, idle: 0
    Nov 29 15:52:46 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Safari/Bookmarks.db
    Nov 29 15:53:19 unknown backupd[7416] <Warning>: INFO: Scanned in 69.028 s
    Nov 29 15:53:19 unknown backupd[7416] <Warning>: INFO: Found 0 deleted files in 0.693 s
    Nov 29 15:53:24 unknown backupd[7416] <Warning>: INFO: Updated snapshot 85 (added 4 files of size 93.8 MB)
    Nov 29 15:53:24 unknown backupd[7416] <Warning>: INFO: Created backup and snapshot in 3.972 s
    Nov 29 15:53:24 unknown backupd[7416] <Warning>: INFO: Adding 4 files of size 93.8 MB
    Nov 29 15:53:25 unknown backupd[7416] <Warning>: INFO: SQLite file is locked: /var/mobile/Library/Safari/Bookmarks.db (d1f062e2da26192a6625d968274bfda8d07821e4)
    Nov 29 15:53:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:53:25 unknown backupd[7416] <Warning>: WARNING: Error checkpointing copied SQLite file: disk I/O error (10) (MBErrorDomain/16): /var/mobile/Library/AddressBook/AddressBookImages.sqlitedb (cd6702cea29fe89cf280a76794405adb17f9a0ee)
    Nov 29 15:53:28 unknown backupd[7416] <Warning>: INFO: Added batch of 2 files of size 1.6 KB in 2.274 s at 0.00 MB/s (0.0%)
    Nov 29 15:53:28 unknown backupd[7416] <Warning>: INFO: Finished adding files in 3.440 s at 27.26 MB/s
    Nov 29 15:53:28 unknown backupd[7416] <Warning>: WARNING: Retrying after hard error: Files modified while backing up (MBErrorDomain/9)
    Nov 29 15:53:34 unknown backupd[7416] <Warning>: INFO: Snapshot 85 is uncommitted
    Nov 29 15:54:18 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/SpringBoard
    Nov 29 15:54:18 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/SpringBoard/applicationstate.plist
    Nov 29 15:54:20 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/SpringBoard
    Nov 29 15:54:20 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Safari/Bookmarks.db
    Nov 29 15:54:23 unknown backupd[7416] <Warning>: INFO: Modified while scanning: /var/mobile/Library/Mail
    Nov 29 15:54:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:54:53 unknown backupd[7416] <Warning>: INFO: Scanned in 78.753 s
    Nov 29 15:54:53 unknown backupd[7416] <Warning>: INFO: Found 0 deleted files in 0.857 s
    Nov 29 15:54:56 unknown backupd[7416] <Warning>: INFO: Updated snapshot 85 (added 9 files of size 182.2 MB)
    Nov 29 15:54:56 unknown backupd[7416] <Warning>: INFO: Created backup and snapshot in 2.897 s
    Nov 29 15:54:56 unknown backupd[7416] <Warning>: INFO: Adding 9 files of size 182.2 MB
    Nov 29 15:55:00 unknown backupd[7416] <Warning>: INFO: Added batch of 2 files of size 31.3 KB in 3.679 s at 0.01 MB/s (0.0%)
    Nov 29 15:55:25 unknown atc[7384] <Warning>: ATC|__20-[ATController init]_block_invoke_0831|ATController.m:1164| Checking timeout inactive=0, timeout disabled=1
    Nov 29 15:55:33 unknown backupd[7416] <Warning>: INFO: Added batch of 1 files of size 88.7 MB in 22.235 s at 3.99 MB/s (24.3%)
    Nov 29 15:56:08 unknown backupd[7416] <Warning>: ERROR: Error starting transfer of items with MMCS: Error Domain=com.apple.mmcs Code=30 "The operation couldn’t be completed. (com.apple.mmcs error 30 - All items in the request have failed. Put authorization will not be requested)" UserInfo=0xf950f60 {NSDescription=All items in the request have failed. Put authorization will not be requested}
    Nov 29 15:56:08 unknown backupd[7416] <Warning>: INFO: Not retrying after unrecoverable error: Error putting items into chunk store (MBErrorDomain/400). Underlying error: Error putting items into MMCS (MBErrorDomain/400). Underlying error: The operation couldn’t be completed. (com.apple.mmcs error 30 - All items in the request have failed. Put authorization will not be requested) (com.apple.mmcs/30)..
    Nov 29 15:56:13 unknown lockdownd[21] <Error>: libMobileGestalt copyInternationalMobileEquipmentIdentity: No IMEI in CT mobile equipment info dictionary - <CFBasicHash 0x255a30 [0x3f5f5630]>{type = mutable dict, count = 6,
              entries =>
                        1 : <CFString 0x250530 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoCurrentSubscriberId"} = <CFString 0x2439f0 [0x3f5f5630]>{contents = "2062760895"}
                        2 : <CFString 0x227350 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoCurrentMobileId"} = <CFString 0x2506d0 [0x3f5f5630]>{contents = "A100001AEF8D32"}
                        3 : <CFString 0x258a10 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoMEID"} = <CFString 0x2506d0 [0x3f5f5630]>{contents = "A100001AEF8D32"}
                        4 : <CFString 0x24ca60 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoMIN"} = <CFString 0x2439f0 [0x3f5f5630]>{contents = "2062760895"}
                        7 : <CFString 0x225640 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoPRLVersion"} = <CFNumber 0x255930 [0x3f5f5630]>{value = +52341, type = kCFNumberSInt64Type}
                        8 : <CFString 0x250570 [0x3f5f5630]>{contents = "kCTMobileEquipmentInfoERIVersion"} = <CFNumber 0x240050 [0x3f5f5630]>{value = +6, type = kCFNumberSInt32Type}
    Nov 29 15:56:13 unknown lockdownd[21] <Error>: 01632000 copy_imei: MobileGestalt failed to provide an IMEI
    Nov 29 15:56:13 unknown lockdownd[21] <Error>: 01632000 copy_iccid: invalid ICCID from CT/no ICCID available
    Nov 29 15:56:13 unknown backupd[7416] <Warning>: ERROR: Backup failed: Error putting items into chunk store (MBErrorDomain/400). Underlying error: Error putting items into MMCS (MBErrorDomain/400). Underlying error: The operation couldn’t be completed. (com.apple.mmcs error 30 - All items in the request have failed. Put authorization will not be requested) (com.apple.mmcs/30)..
    Nov 29 15:56:15 unknown backupd[7416] <Warning>: INFO: Scheduling next backup at 11/29/11 7:33:26 PM

    Had same problem, the solution lies with having your original apple ID associated email address "verified".
    I may not have all the steps down correctly, but open your apple ID account manager and go to the your listing for email and "verify" the email address.  This association then seems to allow the use of your email address when you are trying to set up this new apple ID that they are requiring for iCloud.
    Be aware that this new apple ID has a far reach and apparently cannot be undone, that is you can't change the name, characters, numbers or whatever you have for an email address that becomes your apple ID---even if you can no longer use the email address to receive email.
    Lots of luck.
    I have been trying to get the iCloud features to work for over a week now, including a visit to a genius bar, and still not fully functioning.

  • Premiere CS6 Unknown Error in Rendering & Export

    Hello,
    this is an ongoing problem that persisted on any version of Adobe Premiere Pro I worked with, including CS5,5.5 and the latest 6.
    I am stuck with a feature film on a CS6 Timeline, getting an Unkown Error during rendering and Media Encoder exports. 
    I get the same error if I attampt to create a new trimmed project with Project Manager.
    I am aware that this is one of the most common problems in this forum, and before opening a discussion I tried everithing I could:
    - Replace the media at the point of the error/crash (even though the error seems to happen randomly in dirrerent portions of the timeline)
    - Disable MPE
    - Reset Secutity and permission on files
    - change hard drive
    - Create a new sequence
    - Disable second monitor
    I have to bring an export of my film and a new trimmed project by tomorrow to a color house and I am currently stuck.
    I managed to render the entire timeline before exporting. Redering would stop randomly, generating the same "Unkown Error in Copiling Movie".
    Although I rendered the entire timeline by creating different IN-OUT with the work area selection.
    After a long and tetious rendering process I managed to have the entire timeline "green" and ready to go.
    I figured that this way the exporting process would have been successful. Unfortunatelly not.
    I switched to Premiere Pro for its ability to edit R3D media, but what's the point if we cannot export the project? And neither trimm it to a file that I can give to a colorist?
    Here some details of my workstation and source media:
    - MacPro 12cores 64Gb ram
    - Internal 6Tb raid for source media
    - 4Tb Dulce Scratch drive
    - Editing 4K and 5K R3D Media natively
    If anyone found a solution to this problem, please help.
    Thanks

    Hi Neonhigh,
    If you are going to color correction, why do you need an output? Aren't they color correcting the native files?
    I need an output as reference for the VFX department, I need an output for the sound designer, I need an output for the producer, I need an output for myself and to send to my girlfriend. The question I should ask you is, why shouldn't I need an output?
    What's wrong by exporting my timeline in a format that is not r3d files for reference and production management?
    I was talking about color correction only, as they usually only need the native files. Of course, an output would be necessary for all the other things you mentioned. Nothing wrong with that.
    Neonhigh wrote:
    If you need an output for some reason, why are you rendering at all?
    As I explained I simply rendered because the software was having several random "Unkown" problems in exporting. I though rendering and exporting a file matching the timeline settings would have solved those annoying Unkown Errors, giving me at list an export based on the render sttings.
    Problem is that PPro CS6 fails also to render the timeline, and I needed to break the process in 30-40 segments in order to achieve a complete rendering.
    Rendering in Premiere Pro is primarily for playback, and not necessary for output. In fact, it's a waste of time in most cases. Render files are typically not used for an output unless you explicitly want to do so. Typically they are lower resolution "preview" files that you don't want to use.
    Regardless, you should have no trouble rendering sections of your Timeline. Are you updated to Premiere Pro CS6 (6.0.2)?
    Can you try an export without rendering?
    I wish PPro CS6 was reliable enough to allow me to simply export.
    I still did not solve the problem. Several people from the redusers forum are trying to help me as and they all ran into the same issue.
    Currently this are the issues:
    - PPro does not render the entire timeline
    I'm trying a test project right now and so far it is rendering OK. Can you point me to the reduser forum post where people were giving you assistance?
    - does not output the entire timeline (if not chopping it in 12-15 parts)
    I'll test that, as well. You should not have to segment the sequence in order to get an export.
    - Project Manager does not trim the project to pass it to over post prod facilities.
    Sorry, the Project Manager will not consolidate every media type. It will copy, however. This would be a feature request or bug report: http://www.adobe.com/go/wish
    Beside questioning me with why I want to render or export my project,
    Not questioning your capabilities or talents, I just wanted to know what you wanted to do, and why. Typically, most people don't render as much in Premiere Pro as they do in other NLEs and I was wondering why you needed an export to go to color correction. That's all.
    Many users in this forum (as well as on the entire internet) experienced th same Unkown Problem:
    http://forums.adobe.com/message/4661398
    There could be many different variables which can cause that error. The troubleshooting doc you found addresses many of those. I will add the "Unknown Error" warning to the document.
    There is no "single fix" for this problem, I'm afraid, and these are our opinions and solutions on the matter.
    A legitimate gripe would be that the error is too generic, and I would agree with you there. The error should contain more details about how to remedy your issue. Please make a feature request for more descriptive error dialog boxes: http://www.adobe.com/go/wish
    I will also mention it to the product team.
    I understand that, being an "Unkown Errror" Adobe does not have a iniversal fix, but please don't ask me why I want to output my timeline.
    Again, I was only asking in the context of color correction. Of course, you want an output for various reasons.
    I've written up your bad experience in my case notes and I'll do my best to get you some better answers to your questions. You definitely should not have to jump through hoops to render or export a .R3D sequence.
    Neonhigh wrote:
    Here is a temporary fix for who runs into this problem:
    Yesterday, after trying everything I could think of I simply exported an XML, opened it in Final Cut Pro and exported all the files and formats that I needed. No Unknown Errors.
    Thanks for the workaround. I'll add it to my notes.

  • Itunes will not recognize my ipod nano

    i plug my ipod nano into my computer and itunes pops up and tells me it has detected an ipod (which is not visible on the left side tab) and tells me there is a problem. It told me to connect my ipod again and try again. I did. It did not work. the same message appears and also tells me if the problem happens again, uninstall itunes and reinstall. I did. Still it does not work. I do not know how to fix this problem. Please help.
    Sincerly, irritated.

    iTunes 7 is having this problem with my iPod 30GB Video. It worked at first, but the system hung while attempting to update my iPod to 1.2. After rebooting it never recognized my iPod. I've since checked my iPod out on my laptop and my work computer and it works fine at both of those. I've finished the update to 1.2 on my laptop, but it still doesn't work on my main computer.
    I've tried uninstalling iTunes, using the Windows Install Cleanup software, deleting files from temp directories, all of the stuff that the troubleshooting docs suggest on this site. None of it has gotten that computer to recognize my iPod again. I am not about to reinstall windows so what is my next option?

  • Problem upgrading 10g Express to Apex 3.1.2

    I have Oracle Database 10g Express Edition Release 10.2.0.1.0 installed on windows XP. I want to develop an application using oracle express (apex), so I thought it would be a good idea to upgrade apex (from the default apex 2.0 that came with 10g xe) to the latest, release 3.1,2 before starting. I have tried up to upgrade twice & it has failed. Without going into a ton of details, based on log errors that I saw each time, it looks like installation script, apexins.sql, expects the 1st param to be the default tablespace instead of the password. Any ideas about this?
    My other questions are:
    1) Prior to upgrading to rel 3.1.2, do I need to create the apex user/passwd FIRST? The doc did not say to create the account first.(so I didn't). It says apexins parameters are the followiing, but the log errors I got seem to disagree:
    @apexins <password> <tablespace_htmldb> <tablespace_files> <tablespace_temp>
    <images> <connect>
    2) Am I following the correct installation instructions for apex rel 3? From what I read, I believe I can go directly from apex rel 2.0 to 3.1.2. I found 2 different install docs for release 3 & they were different. Both docs said to run the change passwd script(apxchpwd) after installation, but one installation doc had 2 additional scripts (which I didn't run). Can someone please point me to the right install instructions?
    3) After searching I found an old apex 2.2 installaction tutorial that says you need to install HTTP prior to APEX. Apparently I misinterpreted the 3.1 install doc that said HTTP was already included in oracle 9.2 or higher. I assumed that I didn't need to install HTTP since oracle xe is rel 10. Now I think I need to install HTTP first from the companion CD BEFORE upgrading to APEX 3.1.2. Is this correct?
    3) It says that 85M is required in SYSTEM tablespace for apex 3. The system tablespace size is 76800 (default).
    Should I increase it before attempting to upgrade again? (I expected the default to be big enough since apex comes with the db)
    4)Any suggestions/tips for starting over are more than welcome! Again I saw > 1 doc on how to cleanup a bad installation. Both said to drop the flows_0300 user, but one said to exec wwv_flow_upgrade.switch_schemas, which I did before I did attempted the 2nd install. Am I supposed to run the switch_schemas or not to cleanup a bad install? Also, in the troubleshooting doc I did not see an option for calling switch_schemas for my apex release (2.1) so I just followed the examples and substituted 'FLOWS_020100'. for 'FLOWS_020200' parameter. Was that a good or bad idea?
    5) Is there any other software (i.e application, server?) that needs be to installed before or after apex 3.1.2? Anything else I missed? The documentation is not clear & has omissions.
    Thanks.

    Hi,
    I'm assuming that you're doing this on a Windows based machine and Apex 3.1.2 has already been downloaded from the Application Express webpage and will use port http 8080.
    NOTE: Make sure your Oracle Database XE does not automatically startup when Windows boots up. If that is the case, then kindly disconnect Oracle Database XE before proceeding with any of these steps.
    Step 1: Unzip Apex to a suitable location (preferable "c:\oraclexe\apex").
    Step 2: Start a SQL Plus session from c:\oraclexe\apex and login as a "sysdba".
    sqlplus / as sysdba
    Step 3: Install Apex.
    +@apexins SYSAUX SYSAUX TEMP /i/+
    Step 4: Reconnect Oracle Database XE.
    Step 5: Assign/Set images PATH for APEX in APEX_HOME folder where we have unzipped APEX i.e. c:\oraclexe.
    [email protected] APEX_HOME+
    Step 6: Assign/Set administrator credentials for/to APEX.
    [email protected] your_password+
    Step 7: Restart Oracle Database XE.
    Step 8: Apex configuration completed. Availability will be as follows:
    Apex availability: http://localhost:8080/apex
    Apex Administrator: http://localhost:8080/apex/apex_admin
    Follow these steps and let me know if this works for you or not.
    Regards,
    Naveed.

  • CS 5.5 Web Premium- AAAAGGGGGHHH!

    I got CS 5.5 Web Premium and installed it. I have had nothing but issues since. After chatting with Adobe the first time, I followed the troubleshooting doc i was sent and nothing worked except creating a new user account on computer. Everything starts up in that acct. When I tell this to the second person I chat with the solution I am given is "Go to that account when you want to work with the software that does not work on your main user account." That is a ridiculous non-solution! When I ask for any known conflicts so I can ferret it out, I am ignored and given the aforementioned "solution" which is unacceptable.
    I have included below what is happening with each app in suite when I click to launch. Anyone see a pattern that could point me in a logical Direction to find the conflict and fix it? Because of this crap, I am way behind on work that has got to get done. Thanks in advance!
    Acrobat X Pro - Click to launch and it a sks if I want to reopen windows (most, not all the time) and, no matter what I pick, a message pops up: "An Internal Error Occurred" which closes after a few seconds; only Acrobat menu appears in the top menus; after about 10 seconds it closes
    Bridge - Opens, all menus at top appear, then it pinwheels; Have to Force Quit; (not sure what this app is used for as I have not looked into it yet, so, not sure if other things need to be present/running for it to do its thing)
    Contribute - Click to open and get the message: "Contribute encountered problems while constructing the menus from the current ccmenus.xml file. Please delete the current ccmenus.xml file and rename menus.bak to ccmenus.xml."; deleted ccmenus.xml, there is no file called menus.bak only a folder, renamed folder, did not work; Get same message upon launch attempt, no startup
    Device Central - Crashes without launch; not sure what this app does, so…
    Dreamweaver - Seems to launch, but only shows Dreamweaver menu in top menus… only real option is to quit app
    Extension Manager - Acts same as Dreamweaver
    Fireworks - Message: "Fireworks can not run. An internal error occurred."; click OK, crashes out
    Flash Builder - Launches; I have not tried to use it, but it looks as if it is running properly.
    Flash Catalyst - Click to launch and receive a message: "An error has occurred."
    Flash - Launches; I have not tried to use it, but it looks as if it is running properly; Had to Force Quit
    Illustrator - Click to launch, starts to, but then pinwheels; Had to Force Quit
    Media Encoder - Launches; I have not tried to use it, but it looks as if it is running properly. (Not sure what this is for, either…)
    Photoshop - Launches and runs properly (as far as what I have done with it in short amount of time)

    it's up to you, but i recommend you leave it installed.
    if it's uninstalled prior to installing cs6, you should be prompted for your cs5.5 serial number but some users are prompted for the upgrade serial number and only offered the option to enter a cs5 serial number.  you should be able to avoid this issue if you leave cs5.5 installed.
    further, there are no problems using both on one computer so there's no compelling reason to uninstall unless you're short on hd space.  if you are short of space then uninstalling cs5.5 after installing cs6 might be prudent.

  • Difference between AP PO Reconciliation Report and GL

    I have followed the following - R12 Accrual Balance Mismatch Between Accrual Reconciliation Report and GL - Troubleshooting (Doc ID 1107953.1)
    My SLA and GL Balances match as per the doc.
    However I have a difference of around 3 million in the AP PO Reconciliation Report and the General ledger.
    Any ideas to find the cause of the difference is welcomed.
    Thanks

    Are you still investigating this issue?
    If yes, please submit the Accrual load run program with to-date as of the period-end of reconciliation with GL.
    Then, reconcile again.
    Regards

  • Need Help With Sync Problem

    I've been having difficulties loading music files onto my ipod shuffle. I enabled disk usage and tried to sync valid audio files, yet there pops a message saying " ...cannot be synced. The disk could not be read from or written to." I have no clue on what else to assess, so any help would be greatly appreciated. Thank you

    That was one of the primary sources I looked through,
    yet stil everything on that list seems to be a o.k.
    from my computer. Any other suggestions?
    Gomps, I have been having exactly the same problem as you. I also tried everything in the so-called troubleshooting doc recommended above. i continued poking, and found another thread about what seems to be a related issue.
    Try this (do it exactly as recommended):
    Disconnect the iPod from the computer. Then go to "start> right click my computer>
    manage> services and applications> services> click iPod service> click stop service." Then connect the ipod and it should show up in my computer. Format it so all content is gone. Next, go back to "start> right click my computer>
    manage> services and applications> services> click iPod service> click Start service." This should have the service running again. Open iTunes and connect the shuffle. When it says to automatically fill it (the window that pops up) dont unclick it, proceed so the shuffle autofills. Before it stops, quickly go to the settings tab. Then, scroll down to where it says "enable disk use". select that and hit apply. Now, you manually eject the iPod and you can manage your music!
    All I can say is I tried everything and this finally worked for me. I run WinXP Pro x64.
    this is courtesy of Albertech, who is the real god.
    http://discussions.apple.com/thread.jspa?threadID=720639&tstart=45

  • Do I understand correctly that if I own a Mac but no other Apple mobile devices, I will not be able to access my photos, documents, contacts, and calendar in iCloud?

    Do I understand correctly that if I own a Mac but no other Apple mobile devices, I will not be able to access my photos, documents, contacts, and calendar in iCloud?

    No, you don't understand correctly.
    Apple iCloud Related Support/How-To/Troubleshooting Docs:
    Apple IDs and iCloud
    iCloud: iCloud security and privacy overview
    MobileMe: About moving to iCloud
    Frequently asked questions about the MobileMe transition and iCloud
    iCloud: Troubleshooting the move from MobileMe to iCloud
    iCloud: MobileMe services that no longer sync after moving to iCloud
    iCloud: Supported system requirements
    iCloud: What if my device or computer doesn't meet iCloud system requirements?
    Creating an iCloud account: Frequently Asked Questions
    iCloud: Managing your iCloud storage
    iCloud: Purchasing iCloud Storage and Billing
    iCloud: Resetting your Photo Stream
    iCloud: Calendar & reminder data removed from iCal when disabling iCloud Calendar
    MobileMe: Advanced iCal troubleshooting for MobileMe Calendar data
    iCloud: What version of Windows software am I using for iCloud?

Maybe you are looking for