What is Apply doing?

Hi,
In oracle 10g we used below two SQL to find out what are apply processes doing and what SQL they are processing. But in 11G, same SQL say, apply processes are IDLE (i know they are applying changes), and second one doesn't return any rows. Is there additional joins that needs to be added here or should I be using some other new table of 11g(I tried using V$STREAMS_MESSAGE_TRACKING already and it doesn't give complete SQLs)?
SELECT SERVER_ID, STATE, APPLIED_MESSAGE_NUMBER, MESSAGE_SEQUENCE
FROM V$STREAMS_APPLY_SERVER
WHERE APPLY_NAME ='apply_name'
ORDER BY SERVER_ID
-- What is it applying?
SELECT t.SQL_TEXT FROM V$SESSION s, V$SQLTEXT t, V$STREAMS_APPLY_SERVER a
WHERE a.APPLY_NAME = 'apply_name'
AND s.SID = a.SID AND s.SQL_ADDRESS = t.ADDRESS
AND s.SQL_HASH_VALUE = t.HASH_VALUE ORDER BY PIECE
Thanks

Select the iPhone in the column browser on the left side of iTunes. With the device selected, click the Music tab along the top. From there you should be able to sync your entire music library or pick and choose which artist/albums/etc you want on your device. There is also a Ringtones tab for this as well.
Hope this helps.
- Greg

Similar Messages

  • When I apply Stationary to an e mail the saved custom style reverts to default. What am I doing wrong?

    When I apply Stationary to an e mail the saved custom style reverts to default. What am I doing wrong?

    Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • Audio sync problems with greenscreen  I have replaced the camera audio with my zoom recorder audio and it is in sync. When I apply greenscreen the audio goes out of sync. What am i doing wrong?? So frustrating..Thanks, Peter

    I have replaced the DSLR audio with audio from my Marantz recorder and it is in sync with the dialogue. I apply green screen and the audio goes out of sync. Cannot seem to make it work. what am I doing wrong? Thanks, Peter

    Thanks for the reply. I don't have time for this. is it time to switch to a different editor?

  • Ios 5 update? when it asks if I want to apply changes I hit OK but it doesn't upgrade to ios 5. What am I doing wrong. On my 3rd backup after restarting.

    ios 5 update? when it asks if I want to apply changes I hit OK but it doesn't upgrade to ios 5. What am I doing wrong. On my 3rd backup after restarting.

    Did you check your security software settings? iTunes for Windows: Troubleshooting security software issues
    Since you installed the new iTunes 10.5, you might have to change the settings for it.

  • I am trying to use motion tracking to have text follow a section of the background.The text box follows the motion path, but the text just sits there.  What am I doing wrong?

    I am trying to use motion tracking to have text follow a section of the background.The text box follows the motion path, but the text just sits there.  What am I doing wrong?

    Motion basically looks at the the source footage and it's timing (in the timing section of the Inspector) when analyzing for tracking.  Filters are basically ignored by the tracker.  Retiming actions, like time re-mapping, or retiming behaviors that are applied before the tracker should be used by the tracker.  Did you change the timing after doing the tracking?  If so this would also require you to re-track the shot.  Understanding that you found a workaround, describing the effects you applied would help to explain why you ran into problems.
    Cheers!

  • What am I doing wrong with this filter (counter/frequency issue), probably another newb question.

    I extracted the part of my VI that applies here.  I have a 6602 DAQ board reading a counter for frequency, using a Cherry Corp proximity sensor.  Getting a lot of noise and errant ridiculously high readings.  Speed of shaft which it's measuring is currently 2400rpm with one pulse per revolution so 40hz. 
    Trying to use the express filter VI to clean up the signal and ignore anything over, say, 45hz and under 35hz.  No matter what setting I choose I continually get the  20020 error, Analysis:  The cut-off frequency, fc, must meet:  0 <= fc <= fs/2.  I know this relates to sample period somehow, but for the life of me I can't understand what I'm doing wrong. 
    I used this VI without filtering on bench tests with a hand-drill and got perfect output every time.  Now it's on the machine and being erratic.  Any help here will ease my stress level significantly, thanks.
    VI attached
    Still confused after 8 years.
    Attachments:
    RPM.vi ‏92 KB

    Hello Ralph,
    I'm not sure about mounting your sensor to your rig, but I can provide a couple ideas about the filtering. Depending on the type of noise, the digital filters on the PCI-6602 could help eliminate the behavior you are seeing. If the noise manifests as a "glitches" or a bouncing signal, you could use another counter with a minimum period to help eliminate the noise. This concept is discussed in greater detail in this KnowledgeBase. I noticed that you are using NI-DAQmx; the practical application of the digital filters on the PCI-6602 in NI-DAQmx is discussed in this KnowledgeBase. A more detailed description of the behavior of these filters is provided in the NI-DAQmx Help (Start>>All Programs>>National Instruments>>NI-DAQ) in the book entitled "Digital Filtering Considerations for TIO-Based Devices".
    I also wanted to comment on your original post and explain why you were receiving error -20020. For convenience, I have copied the text of the error code below.
    Error -20020 occurred at an unidentified location
    Possible reason(s):
    Analysis:  The cut-off frequency, fc, must meet:  0 <= fc <= fs/2.
    I think you may have misunderstood exactly what the Filter express VI does. The Filter express VI takes a series of values in a waveform and performs filtering on those signals. So, it will look at a waveform made up of X and Y values and apply the defined filter to this waveform. Specifically in your application, the cut-off frequency (fc) is the Upper Cut-Off level that you specified in the Filter express VI; any frequency components of the waveform outside of the range you have defined will be filtered. The fs is the sample rate based on the data that you wire to the Signal input of the Filter express VI. In your VI, this data is coming from the DAQ Assistant. So, fs will be the sample rate of the DAQ Assistant and is associated with the rate at which points are acquired. The sample rate does NOT relate to the bandwidth of the signal, except that the Nyquist theorem tells us that the sample rate must be at least twice the signal bandwidth in order to determine periodicity of the signal. So, in this case, the sample rate of the DAQ Assistant would need to be at least double the high cut-off frequency.
    However, you are performing a frequency measurement using a counter. I think this is where the confusion comes in. For the frequency measurement using a counter, the DAQ Assistant returns a decimal value which represents the rate of the pulse train being measured by the counter. It does not return the actual waveform that is being read by the counter. It is this waveform that would be band-pass filtered to eliminate frequency content outside of the filter's bandwidth. Instead of the Filter express VI, I would recommend that you simply discard values that are outside the range you specify. I have modified the code you posted earlier to perform this operation. The image below shows the changes that I made; rather than using the Filter express VI, I simply compare the frequency to the "Low Threshold" and "High Threshold". I use a Case structure to display the value on if it is within the limits. Otherwise, I display a "NaN" value. I have also attached the modified VI to this post.
    Message Edited by Matt A on 09-04-2007 07:58 PM
    Matt Anderson
    Hardware Services Marketing Manager
    National Instruments
    Attachments:
    RPM (Modified).JPG ‏17 KB
    RPM (modified).vi ‏72 KB

  • My iPad one won't charge with any cable I buy? Tell me what I am doing wrong.

    I have an iPad 1 and have had no major problems with it til now. I want to continue using it, I use it for many things and it would suck if it stoped working because of something IDK about. My first and only apple product.
    The charger cable (That came with it) finally broke. The wires just came apart and it wasn't salvagable. I had an Ipod cord here that a friend left and plugged it into the original port (The one that was working fine with original charger and came with ipad). It was a tight squeze into the iPad (which I thought was normal) but I got it into there so I thought it would work. It won't work. So i bought a charger said to be used to ipads, and I plugged it in, same thing happened. I did however still sync it into the computer with the new cable I bought. What am I doing wrong that it won't charge on the wall anymore? Wrong cable? I'm confused. Please help!

    Could be the charger, cable or iPad. Plug the USB cable into your computer. It may say "Not Charging", however, it is charging slowly and will verify that the cable is good.
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    The quickest way (and really the only way) to charge your iPad is with the included 10W or 12W (5W on Mini) USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (2.5W, most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    iPhone: Hardware troubleshooting (Power/Battery section also applies to iPad)
    http://support.apple.com/kb/TS2802
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    iOS 7 Battery Life Draining Too Fast? It’s Easy to Fix
    http://osxdaily.com/2013/09/19/ios-7-battery-life-fix/
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    iPad: Charging the battery
    http://support.apple.com/kb/HT4060
    Best Practices for iPad Battery Charging
    http://www.ilounge.com/index.php/articles/comments/best-practices-for-ipad-batte ry-charging/
    How to Save and Prolong the battery life of your new ipad
    https://discussions.apple.com/thread/4480944?tstart=0
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    To Extend a Device’s Battery Life, Get to Know It Better
    http://tinyurl.com/b67c7xz
    iPad Battery Replacement
    http://www.apple.com/batteries/replacements.html
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • [JS][CS5] PlaceXML fails. What Am I Doing Wrong?

    Hi everyone,
    I have an XML file which I can place manually but I'm trying to automate the process with a script but I cannot work out why the script is failing. It falls over with an Error 30477.
    The document has several different types of master spreads and the XML is organised into appropriate sections. Based on the section in the XML file, I need to create a page, apply the right master page and place the XML.
    The script creates the page, applies the master but fails when placing the xmlElement. I've tried several different approaches and searched everywhere for an answer but cannot work out why.
    Can anyone tell me what I'm doing wrong?
    /*  Places XML section on appropriate pages */ alert("Starting Process");var myDocument = app.activeDocument; var currentPage;var masterSpread; var xmlBook = myDocument.xmlElements[0].xmlElements[0]; if ( xmlBook.markupTag.name.toString() == 'book' ) {    // In the right place    for ( var lp = 0; lp < xmlBook.xmlElements.length; lp++) {        var xmlElement = xmlBook.xmlElements[lp]; // Structural element in the book        switch ( xmlElement.markupTag.name.toString() ) {            case "standard":                                var currentPage = myDocument.pages.add(LocationOptions.AT_END);                var masterSpread = myDocument.masterSpreads.itemByName('S-Standard');                currentPage.appliedMaster = masterSpread;                     var targetFrame = myDocument.pages.lastItem().textFrames[0];                    /* Throws:   Error 30477 Invalid value for parameter 'using' */                                xmlElement.placeXML(targetFrame);                                break;        }            } } else {    alert(xmlBook.markupTag.name);        throw { name: 'FatalError', message: 'XML Structure wrong' }; }
    Sample XML
    <?xml version="1.0" encoding="UTF-8"?><document domain="http://6d6rpg.com/wiki/" id="member:tregenza:pdfprinttestbook" revision="0" lastmod="1398592877"><book colour="#f05177" bookTitle="PDF Print Test Book" ><standard><header4 >Test Wiki Page</header4><p>Test of wiki content for the &lt;page&gt; syntax.</p><p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus facilisis suscipit laoreet. Nunc vel viverra est. Morbi massa arcu, suscipit eget massa a, faucibus pellentesque mi. Cras tristique, nibh cursus faucibus vestibulum, est velit gravida odio, vitae pretium erat libero non sem. Cras commodo gravida rhoncus. Nam nec rutrum leo. Fusce gravida rutrum ipsum, ut ultricies libero pulvinar in. Suspendisse at rhoncus mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla porta quam vel turpis iaculis, ut hendrerit nibh semper. Nunc ornare egestas dui eu dictum. Mauris lorem dolor, dignissim nec velit et, semper venenatis libero. Pellentesque gravida mauris magna, at pretium tellus tempor sed.</p><p>Quisque venenatis vehicula ultricies. Nulla sit amet ornare orci, sed molestie mi. Proin quis tempus ante. Etiam auctor aliquam pretium. Nam pellentesque justo sem, a lacinia tortor euismod sed. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse ut neque ipsum. Nam convallis at metus non ullamcorper. Morbi a orci quam. Quisque rhoncus neque a auctor porttitor. Fusce auctor cursus tellus, luctus aliquet turpis vehicula ut. Donec at sagittis erat. Vivamus sit amet elit vel dolor sollicitudin molestie sed sed turpis.</p><p>Integer dictum, mauris non aliquet scelerisque, nunc odio mattis sapien, sit amet porttitor mi ante quis ligula. Fusce in feugiat arcu, at cursus magna. Aliquam dignissim lorem in risus adipiscing, vitae iaculis sem ullamcorper. Cras eu libero sem. Nulla cursus mattis luctus. Sed porttitor, arcu consectetur malesuada ultrices, sapien nunc tincidunt justo, vel rutrum diam quam eget mi. Praesent pretium ac risus sed tempor. Cras condimentum, mi id facilisis pretium, turpis ipsum mollis nisi, ac posuere nunc dui vitae risus. Sed adipiscing purus a diam accumsan, a rhoncus tortor pellentesque. Morbi et dui quis mauris ornare commodo et quis eros. </p><header4 >Test Wiki Page</header4><p>Test of wiki content for the &lt;page&gt; syntax.</p><p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus facilisis suscipit laoreet. Nunc vel viverra est. Morbi massa arcu, suscipit eget massa a, faucibus pellentesque mi. Cras tristique, nibh cursus faucibus vestibulum, est velit gravida odio, vitae pretium erat libero non sem. Cras commodo gravida rhoncus. Nam nec rutrum leo. Fusce gravida rutrum ipsum, ut ultricies libero pulvinar in. Suspendisse at rhoncus mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla porta quam vel turpis iaculis, ut hendrerit nibh semper. Nunc ornare egestas dui eu dictum. Mauris lorem dolor, dignissim nec velit et, semper venenatis libero. Pellentesque gravida mauris magna, at pretium tellus tempor sed.</p><p>Quisque venenatis vehicula ultricies. Nulla sit amet ornare orci, sed molestie mi. Proin quis tempus ante. Etiam auctor aliquam pretium. Nam pellentesque justo sem, a lacinia tortor euismod sed. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse ut neque ipsum. Nam convallis at metus non ullamcorper. Morbi a orci quam. Quisque rhoncus neque a auctor porttitor. Fusce auctor cursus tellus, luctus aliquet turpis vehicula ut. Donec at sagittis erat. Vivamus sit amet elit vel dolor sollicitudin molestie sed sed turpis.</p><p>Integer dictum, mauris non aliquet scelerisque, nunc odio mattis sapien, sit amet porttitor mi ante quis ligula. Fusce in feugiat arcu, at cursus magna. Aliquam dignissim lorem in risus adipiscing, vitae iaculis sem ullamcorper. Cras eu libero sem. Nulla cursus mattis luctus. Sed porttitor, arcu consectetur malesuada ultrices, sapien nunc tincidunt justo, vel rutrum diam quam eget mi. Praesent pretium ac risus sed tempor. Cras condimentum, mi id facilisis pretium, turpis ipsum mollis nisi, ac posuere nunc dui vitae risus. Sed adipiscing purus a diam accumsan, a rhoncus tortor pellentesque. Morbi et dui quis mauris ornare commodo et quis eros. </p></standard><appendix><header4 >Autofire</header4><p>Quisque venenatis vehicula ultricies. Nulla sit amet ornare orci, sed molestie mi. Proin quis tempus ante. Etiam auctor aliquam pretium. Nam pellentesque justo sem, a lacinia tortor euismod sed. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse ut neque ipsum. Nam convallis at metus non ullamcorper. Morbi a orci quam. Quisque rhoncus neque a auctor porttitor. Fusce auctor cursus tellus, luctus aliquet turpis vehicula ut. Donec at sagittis erat. Vivamus sit amet elit vel dolor sollicitudin molestie sed sed turpis.</p></appendix></book></document>

    Thanks Mi_D but it has not fixed the problem.
    I now get Error 45 Object Is Invalid.
    /*  Places XML section on appropriate pages */
    alert("Starting Process");
    var myDocument = app.activeDocument;
    var currentPage;
    var masterSpread;
    var xmlBook = myDocument.xmlElements[0].xmlElements[0];
    if ( xmlBook.markupTag.name.toString() == 'book' ) {
        // In the right place
        for ( var lp = 0; lp < xmlBook.xmlElements.length; lp++) {
            var xmlElement = xmlBook.xmlElements[lp]; // Structural element in the book
            switch ( xmlElement.markupTag.name.toString() ) {
                case "standard":
                    var currentPage = myDocument.pages.add(LocationOptions.AT_END);
                    var masterSpread = myDocument.masterSpreads.itemByName('S-Standard');
                    currentPage.appliedMaster = masterSpread;  
                    var targetFrame = myDocument.pages.lastItem().textFrames[0];
                    /* Throws:   Error 30477 Invalid value for parameter 'using' */              
    //                 xmlElement.placeXML(targetFrame);    // Originial Code
                    // Throws:  Error 45 Object Is Invalid
                    targetFrame.placeXML(xmlElement);  // Code by Mi_D
                    break;
    } else {
        alert(xmlBook.markupTag.name);  
        throw { name: 'FatalError', message: 'XML Structure wrong' };

  • Help, i am trying to print my JPEG file that i created in photoshop at a photo lab but it is coming out like an X-ray. I have printed these files before so i have no idea what i am doing wrong.

    Help, i am trying to print my JPEG file that i created in photoshop at a photo lab but it is coming out like an X-ray. I have printed these files before so i have no idea what i am doing wrong.
    Could it be something i have done in my settings?
    or when i am saving the file to JPEG?

    Basically you're approaching this the wrong way around. What you need is the extreme sections to be quieter, not louder. The problem with moving the lower end of the audio is that you'll move the noise floor too, and get what's generally referred to as a 'pumping' effect. So what you do is to use a compressor to tame the peaks, and leave the lower level sound alone. When you've done that, you amplify (or normalize to a level you can determine) the whole signal. So the noise floor will be higher, but constant and not pumping. 'Match Volume' is a completely different tool for setting the overall levels of different tracks so that they sound approximately the same - it doesn't even begin to do what you want.
    If it's music you are treating, then I'd almost certainly use the multiband compressor, because you get less artefacts with this. You need to experiment with the threshold levels, and almost certainly not use a massive compression ratio - 3:1 or 4:1 should be sufficient (although it's hard to tell without actually hearing the audio). You can tell what it's doing at any given point because the downward meter indicates how hard it's working. In theory you can apply make-up gain with it as well, but personally I leave that until everything's treated and use the 'Normalize' tool to set an absolute max level.

  • I am trying to print redplum coupons and I can't, help.  I have updated java, adobe flash, and made sure my printer was set on default.  I am not sure what I am doing wrong.  I have contacted redplum and no one will help.

    I am trying to print redplum coupons and I can't, help.  I have updated java, adobe flash, and made sure my printer was set on default.  I am not sure what I am doing wrong.  I have contacted redplum and no one will help.

    No Apple response???  Redplum/Valassis will not help either.  I searched, using the cups error message and though it is Unbuntu, same error so maybe useful...only problem: details would not display unless I join Unbuntu forum.  What a pain to do anything with my Mac or find any help.  I honestly regret buying this buggy OS.
    Anyway, here is what I found, FYI:
    http://ubuntuforums.org/showthread.php?t=483415
    As the old saying goes: when in doubt, consult the manual. The problem appears to be that I added the printer using the KDE Add Printer Wizard. It was automatically given a "socket" URI instead of an "lpd" one. When I:
    - altered the printer settings at http://localhost:631 (the CUPS admin page) as instructed in the manual for the printer, and
    - copied the PPD file into a second place on the hard drive (as instructed on ubunutuforums, see the link above)
    ..everything started working.
    It's still slower than windows, but I can live with that
    Probably a simple fix. Change the socket I.P. to match the printer I.P. like this:
    socket://192.168.1.86:9100. The thing I'm concerned with using socket:// is that AFAIK the printer I.P. must not change. In my case I'm able to assign a static I.P. address to the printer but it's something to consider.
    I found that the only thing I needed to do was change socket to lpd (and remove :9100 off the end as well). See Solving Ubuntu printer “broken pipe” problem (DocuPrint C525A) . BTW thanks for steering me in the right direction - very grateful.      
    Solving Ubuntu printer “broken pipe” problem (DocuPrint C525A)
    Posted on November 25, 2008
    Are you having a problem with your printer under the latest versions of Ubuntu (perhaps it worked under an older version)? Are you able to print short documents, but not longer, or more graphics-intensive, documents? (e.g. the unfortunate people at http://ubuntuforums.org/showthread.php?t=625493). Do they sit there as Processing for ages and then switch to Held? If you have the same problem I had the solution I tried may work for you too. Firstly, check your cups error log:
    sudo gedit /var/log/cups/error_log
    If you see anything like the following, the solution may be simple:
    [Job 201] Unable to write print data: Broken pipe
    PID 13359 (/usr/lib/cups/backend/socket) stopped with status 1!
    System > Administration > Printing and right click on your printer, selecting Properties. Settings > Device URI
    If you see something like socket://your_printer_ip_address:9100 just change socket to lpd and remove the :9100 off the end. Then click on apply.
    Apparently lpd is a more modern protocol which works with most printers whereas socket is more raw (and potentially faster but riskier in a network situation). Somewhere along the line, the default Ubuntu/Gnome setup for networked printers shifted from lpd to socket. Some primitive printers will have benefited whereas a larger number of more modern printers will have suffered.
    Please correct me if I am wrong (which is highly possible) but the underlying problem could be that socket may make the printer wait a long time for a large file to be processed ready for printing. Some printers, such as the Fuji Xerox DocuPrint C525A, may drop the socket if things take too long to start coming through.
    Changing timeout settings might work but lpd is better than socket so it is the preferred solution in any case.
    If this works for you, please leave a comment to let others know (ideally with a description of the printer and Ubuntu version). Printer may be relevant if it doesn’t support the direct stream protocol properly. NB I may take a while to let your comment through because of the volume of spam. Sorry about that.
    Finally, thanks to sphilli8 for the steer in the right direction at http://ubuntuforums.org/showthread.php?p=6245626.
          http://ubuntuforums.org/showthread.php?t=483415

  • I cant print a photo on my officemax printer.  What am I doing wrong?

    I cant print a photo on my officejet printer from my Mac.   What am I doing wrong?

    With the amount of information you've provided it's impossible to offer a potential solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    what happens when you try to print?
    what fixes have you tried?
    where is your library located?
    did you apply any updates or upgrades just prior to the problem occurring?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    what model printer?
    how much free space on your boot drive?
    OT

  • I just installed JCE on my new CF10 and now can't login to administrator, what am I doing wrong?

    I have CF 10,284568 installed on SUSe 12.2 with Java 1.7.0_15  64bit.  When I swap out the two JCE files, restart Coldfusion, I can no longer login to the Administrator.  To be more specific, it appears session management isn't working.  If I login using a bad username/password pair I get an error, if I login with the correct pair I get returned to the login screen without any error.  Additionally, none of my datasources work (MySQL ).  If I swap out the original (local policy and  US export policy jars) and restart everything works fine.
    What am I doing wrong?  Do I need to run something in the CF bin or reinstall to get this to work?

    I tried to repro the Issue :
    Here are my findings ,
    Case 1 )
    CF with Java 1.7.0_25
    On top of it Install UnlimitedJCEPolicy JDK7
    Restart Server
    Everything works fine
    Case 2 )
    CF with Java 1.6.0_29
    On top of it Install UnlimitedJCEPolicy 6
    Restart Server
    Everything works fine
    Case 3 )
    CF with Java 1.6.0_29
    On top of it Install UnlimitedJCEPolicy JDK7 ( Basically wrong version of Policy Files )
    Unable to open administrator !! And DB’s won’t work as mentioned above
    Case 4 )
    CF with Java 1.7.0_25
    On top of it Install UnlimitedJCEPolicy 6 ( Basically wrong version of Policy Files )
    Unable to open administrator !! And DB’s won’t work as mentioned above
    Can you please check if you are applying the right version of Policy Files ? Or Am I missing something here ? Can you also try with the latest Java and latest CF Update ?
    Regards ,
    YASHAS RATTEHALLI
    ADOBE CF Engineering Team

  • When I use lightroom to create a slideshow the aspect ratio is wrong when i burn it to DVD.  What am i doing wrong?

    I use Lightroom to create a slideshow and then export it to software to burn to DVD to play on a TV.  When i view it on a computer the pictures are fine, when i view them on the TV the aspect ration is wrong.  Can anyone tell me what I'm doing wrong please?  Thanks

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • I am new to iPad.  I am trying to download a movie and it tells me "download error" what am i doing wrong?

    I am trying to download a movie from iTunes and it gives me an error message "download error - retry" what am I doing wrong??

    I must found this tip when I did a Google search. The text inside of the quotation marks is from this site.
    http://www.eddieoneverything.com/articles/how-to-fix-the-ipodiphone-download-err or-tap-to-retry-error-without-using-your-pc.php
    "I had this problem as well, however I did find one way to get this to download on my iPhone. What I found that worked was to tap to retry the download and as it’s attempting to download it again I hit the pause button (I had to be quick). Once it was paused I hit the button again to resume the download and it successfully completed. I hope this helps some of you out until Apple fix this bug."
    This was posted in an iPhone forum, but it applies to the iPad as well. Maybe this will work for you.

  • Anyone know what firefox is doing? I had to go into another place to get back on-line(google chrome) dont like it but Firefox still has me in another place..tri

    I tried to download it again hoping that would work..took me out completely.. with an error (saying the url needed to be a web site, problem was..could not get on to change.. hate Google chome..was the only way to get back on-line..anyone know what they are doing? thanks

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • IPhoto 5 slideshow music still available after upgrade to iPhoto6?

    I've just upgraded to iPhoto6 and see that the default slideshow music has changed. I'd still like to use the iPhoto5 default music - does anyone know if this should still be available?

  • Active Content Update Issue

    I hope someone can help me! Here is the deal, I want to make a button that will open a blank page with a PDF document. I can get it to work with GETurl, but I cannot figure out how to apply active content update to the new page. It works fine on a Ma

  • Files on the base URL

    How can I explore / search for files on a Applets base URL. Is there a simple way to do this without using servlets or some kind of java security programing ?

  • How do I convert an AI file (CC version) to the DXF-AAMA format?

    I am creating clothing and my fashion designers created the pattern in adobe illustrator.  Now the contract manufacturer wants a DXF-AAMA format, which is the  file format developed by the American Apparel Manufacturers Association in an attempt to s

  • How can i disable rotate view tool? But on the windows not macintosh

    I am using a graphic pad, and seens two hours my computer started to work slower and after view moves rotate view tool start to run... how can i disable it? I am using windows 7.