File Watcher issue...

I am hoping someone can nail this or point me in the right direction because I seem to be hitting a brick wall...
Until last night I was successfully using my file watcher job and then it just stopped "watching" for some unexplainable reason. The file watcher and the event job is pretty straightforward based on several examples provided in this forum and elsewhere. Few details;
Oracle EBS R12 (12.1.3)
Database Version:
BANNER
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
PL/SQL Release 11.2.0.2.0 - Production
CORE     11.2.0.2.0     Production
TNS for Linux: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - ProductionFile Watcher and Job DDL. Please note, this is not the original piece that I was working with when the problem started, but in an effort to diagnose the issue I picked a simpler version from one of the posts on this forum (posted by 'RnR'):
begin
  dbms_scheduler.create_credential (
    'external_user',
    'osuser',
    'ospassword');
  dbms_scheduler.create_file_watcher (
    file_watcher_name => 'file_watcher',
    directory_path    => '/tmp',
    file_name         => 'file.txt',
    credential_name   => 'external_user',
    enabled           => TRUE);
  dbms_scheduler.create_job (
    job_name          =>'filewatchjob',
    queue_spec        =>'file_watcher',
    job_type          =>'plsql_block',
    job_action        =>'null;',
    event_condition   => NULL,
    enabled           =>true);
end;
NOTE: I have used different parameter values for directory_path, file_watcher & job name, and credential.
1. I have tested and confirmed that 'Credential' works. This was tested by using another 'External' job which moves files from location A to B.
2. I altered 'REPEAT_INTERVAL' attribute of 'FILE_WATCHER_SCHEDULE' from the default 10mins to 3mins.
3. Created and touched the file "file.txt" at frequent intervals in anticipation it will get pooled.
However,
1. **schedulerjob_run_details* and **schedulerjob_log* does not show the said job as expected.
2. The file watcher is created correctly and appears in dba_scheduler_file_watchers.
3. The file watcher job appears in user_scheduler_jobs as ENABLED
4. From table dba_scheduler_global_attribute the value for attribute FILE_WATCHER_COUNT is 6. Which sounds about right before things stopped.
5. Finally (no quite as I tried several other things in-between), as a last resort the database server was bounced, but still no change.
It almost feels like the background process that queues the file watcher queue has stopped!! Just a guess. But I have no idea how to check for that. I have looked at dba_running_jobs to see if sys.file_watcher job is running, but no. I am not sure if this is something I should be looking for....
So, please any questions, suggestions, thoughts, etc... will be truly appreciated.
thanks
ilyas
P.S. What tags to use to format code in forum post?
Edited by: ilyas001 on Jul 7, 2011 11:38 PM
Our DBA pointed out a BUG ID on metalink 11715143: FILE WATCHER DOESN'T EXECUTE THE JOB WHEN THERE'S FILES IN THE WATCHED DIRECTORY
The symptoms listed in the bug note are very similar to my problem with two exceptions: 1). Our server is not generating a trace file for filewatcher (it did generate trace when I screwing up with 'External' job types), and 2). As mentioned previously, file watcher was working until 24Hrs back.....
Edited by: ilyas001 on Jul 8, 2011 9:27 AM

@mseberg
suggestion :
set parallel_instances=trueYES. The parallel inst attribute for the job was set to TRUE. Not for the job in the code snippet I posted, but for the original code that was working successfully - as expected. In the latter test code case I was creating and touching files every so often (my default job class interval was changed to 3mins.
I know you have done this but I would triple check :
SELECT credential_name,
username
FROM user_scheduler_credentials;YES. Creating Credentials was the first heartburn I had because it would get created, but just couldn't run any OS commands. Sorry, can't remember the exact error msg, it was something others had experienced on this forum. After a lot of digging on google and here it finally started to work after (re)linking libpam library (64bit).
So, it appears in the scheduler credential table and have frequently tested it by running another job of type EXECUTABLE to move files around from the same source location where Filewatcher is polling from.
Mseberg, thanks for your feedback.

Similar Messages

  • Konesans File Watcher Task and SQL Server 2012

    Hello!
    I am trying to use the  Konesans File Watcher Task which worked perfectly for SQL 2008, to upgrade to SQL 2012. I am getting the following error
    Cannot create a task from XML for task "File Watcher Task", type Konesans.Dts.Tasks FileWatcherTask.FileWatcherTask, Koneaasans .......
    Anyone have any ideas on how to upgrade the Konesans File Watcher Task for SQL 2012?
    Thanks,
    Mike
    Mike Kiser

    Hi,
    Konesans File Watcher Task is a 3rd party tool.
    I had the same issue while upgrading SSIS 2005 packages which relied on this component to SSIS 2008.
    Solution : you'll have to install Konesans File Watcher Task 2012 on your development PC (and on the SQL Server 2012 which will run this SSIS job).
    Sebastian Sajaroff Senior DBA Pharmacies Jean Coutu

  • Console Message: EV_DELETE failed for file watcher

    Hi all,
    MBP 2.5GHz/4GB RAM/250GB HD/10.6.4 with all updates.
    I get the following Console message 8 times, in less than 2 seconds, each time I log out, restart, shut down, start up, log in:
    com.apple.notifyd 12 EV_DELETE failed for file watcher
    Any thoughts on cause or solution?
    Thanks!

    William Boyd, Jr. wrote:
    If you search these discussion groups for "EV_DELETE" (without the quotes), you'll see several threads about it. Unfortunately, there doesn't seem to be a lot of reliable advice about how to prevent it. One thread elsewhere suggested that it can be caused by a hardware problem.
    I've read a lot of them, tried some things, but no luck yet. I'm doubting that it's a hardware issue, based on my previous post, but who knows.
    I tried this
    this error comes from the file_watcher module from notifyd when some permissions are buggy (unknown)
    So check that / and the first level files and folder under / are not unknown. (use 'ls -l / 'command in terminal to check them)
    If they are with bad owner and/or group 'unknown' (or some of them),
    use chown root:wheel my_file to correct them (where myfile is a file with weird owner/group)
    then execute the following in a Terminal window:
    sudo chown root:admin /
    sudo kextcache -system-prelinked-kernel
    sudo kextcache -system-caches
    and while "ls -l /" did find some things, the sudo commands did nothing.
    I also ran across this
    One thing, if you do man kextcache, it says instead of running kextcache you should "run touch(1) on the /System/Library/Extensions/ directory of the installation target volume" which I did instead of running kextcache.
    but I have no idea what this person is trying to say (I'm way out of my league running Terminal commands. All I do is copy and paste what I consider to be promising commands from seemingly knowledgeable and helpful people; sure hoping to run across one or more of them here! ).
    Message was edited by: tjk

  • Help: I want to auto schedule a load using file watcher but it runs only once for the first time and after that it is not running at all

    Hi All,
    I am trying  to execute the below code as provided from one of the blogs. i am able to run the job only once based on a file watcher object(i.e. for very first time) and after that the job is not running at all and if  i schedule the job to run automatically based on interval of 10 or more minutes it is executing properly). Please let me know or guide me if i have missed any step or configuration.that is needed.
    Version of Oracle 11.2.0.1.0
    OS : Windows 7 Prof
    Given all the necessary privileges
    BEGIN
      DBMS_SCHEDULER.CREATE_CREDENTIAL(
         credential_name => 'cred',
         username        => 'XXXX',
         password        => 'XXXX');
    END;
    CREATE TABLE ZZZZ (WHEN timestamp, file_name varchar2(100),
       file_size number, processed char(1));
    CREATE OR REPLACE PROCEDURE YYYY
      (payload IN sys.scheduler_filewatcher_result) AS
    BEGIN
      INSERT INTO ZZZZ VALUES
         (payload.file_timestamp,
          payload.directory_path || '/' || payload.actual_file_name,
          payload.file_size,
          'N');
    END;
    BEGIN
      DBMS_SCHEDULER.CREATE_PROGRAM(
        program_name        => 'prog1',
        program_type        => 'stored_procedure',
        program_action      => 'YYYY',
        number_of_arguments => 1,
        enabled             => FALSE);
      DBMS_SCHEDULER.DEFINE_METADATA_ARGUMENT(
        program_name        => 'prog1',
        metadata_attribute  => 'event_message',
        argument_position   => 1);
      DBMS_SCHEDULER.ENABLE('prog1');
    END;
    BEGIN
      DBMS_SCHEDULER.CREATE_FILE_WATCHER(
        file_watcher_name => 'file_watcher1',
        directory_path    => 'D:\AAAA',
        file_name         => '*.txt',
        credential_name   => 'cred',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.CREATE_JOB(
        job_name        => 'job1',
        program_name    => 'prog1',
        queue_spec      => 'file_watcher1',
        auto_drop       => FALSE,
        enabled         => FALSE);
      DBMS_SCHEDULER.SET_ATTRIBUTE('job1','PARALLEL_INSTANCES',TRUE);
    END;
    EXEC DBMS_SCHEDULER.ENABLE('file_watcher1,job1');
    Regards,
    kumar.

    Please post a copy and paste of a complete run of a test case, similar to what I have shown below.
    SCOTT@orcl12c> SELECT banner FROM v$version
      2  /
    BANNER
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    PL/SQL Release 12.1.0.1.0 - Production
    CORE    12.1.0.1.0    Production
    TNS for 64-bit Windows: Version 12.1.0.1.0 - Production
    NLSRTL Version 12.1.0.1.0 - Production
    5 rows selected.
    SCOTT@orcl12c> CONN / AS SYSDBA
    Connected.
    SYS@orcl12c> -- set file watcher interval to one minute:
    SYS@orcl12c> BEGIN
      2    DBMS_SCHEDULER.SET_ATTRIBUTE
      3       ('file_watcher_schedule',
      4        'repeat_interval',
      5        'freq=minutely; interval=1');
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    SYS@orcl12c> CONNECT scott/tiger
    Connected.
    SCOTT@orcl12c> BEGIN
      2    -- create credential using operating system user and password (fill in your own):
      3    DBMS_SCHEDULER.CREATE_CREDENTIAL
      4       (credential_name     => 'cred',
      5        username          => '...',
      6        password          => '...');
      7  END;
      8  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- create table to insert results into:
    SCOTT@orcl12c> CREATE TABLE ZZZZ
      2    (WHEN      timestamp,
      3      file_name varchar2(100),
      4      file_size number,
      5      processed char(1))
      6  /
    Table created.
    SCOTT@orcl12c> -- create procedure to insert results:
    SCOTT@orcl12c> CREATE OR REPLACE PROCEDURE YYYY
      2    (payload IN sys.scheduler_filewatcher_result)
      3  AS
      4  BEGIN
      5    INSERT INTO ZZZZ VALUES
      6        (payload.file_timestamp,
      7         payload.directory_path || '/' || payload.actual_file_name,
      8         payload.file_size,
      9         'N');
    10  END;
    11  /
    Procedure created.
    SCOTT@orcl12c> -- create program, define metadata, and enable:
    SCOTT@orcl12c> BEGIN
      2    DBMS_SCHEDULER.CREATE_PROGRAM
      3       (program_name          => 'prog1',
      4        program_type          => 'stored_procedure',
      5        program_action      => 'YYYY',
      6        number_of_arguments => 1,
      7        enabled          => FALSE);
      8    DBMS_SCHEDULER.DEFINE_METADATA_ARGUMENT(
      9       program_name         => 'prog1',
    10       metadata_attribute  => 'event_message',
    11       argument_position   => 1);
    12    DBMS_SCHEDULER.ENABLE ('prog1');
    13  END;
    14  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> BEGIN
      2    -- create file watcher:
      3    DBMS_SCHEDULER.CREATE_FILE_WATCHER
      4       (file_watcher_name   => 'file_watcher1',
      5        directory_path      => 'c:\my_oracle_files',
      6        file_name          => 'f*.txt',
      7        credential_name     => 'cred',
      8        destination          => NULL,
      9        enabled          => FALSE);
    10  END;
    11  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> BEGIN
      2    -- create job:
      3    DBMS_SCHEDULER.CREATE_JOB
      4       (job_name          => 'job1',
      5        program_name          => 'prog1',
      6        queue_spec          => 'file_watcher1',
      7        auto_drop          => FALSE,
      8        enabled          => FALSE);
      9    -- set attributes:
    10    DBMS_SCHEDULER.SET_ATTRIBUTE ('job1', 'PARALLEL_INSTANCES', TRUE);
    11  END;
    12  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- enable:
    SCOTT@orcl12c> EXEC DBMS_SCHEDULER.enable ('file_watcher1, job1');
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- write file (file must not exist previously):
    SCOTT@orcl12c> CREATE OR REPLACE DIRECTORY upncommon_dir AS 'c:\my_oracle_files'
      2  /
    Directory created.
    SCOTT@orcl12c> declare
      2    filtyp utl_file.file_type;
      3  begin
      4    filtyp := utl_file.fopen ('UPNCOMMON_DIR', 'file1.txt', 'W', NULL);
      5    utl_file.put_line (filtyp, 'File has arrived ' || SYSTIMESTAMP, TRUE);
      6    utl_file.fclose (filtyp);
      7  end;
      8  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- wait long enough (may take more than one minute) for job to run:
    SCOTT@orcl12c> EXEC DBMS_LOCK.SLEEP (100)
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- check for results:
    SCOTT@orcl12c> SELECT * FROM zzzz
      2  /
    WHEN
    FILE_NAME
    FILE_SIZE P
    22-OCT-13 10.12.28.309000 PM
    c:\my_oracle_files/file1.txt
            57 N
    1 row selected.
    SCOTT@orcl12c> declare
      2    filtyp utl_file.file_type;
      3  begin
      4    filtyp := utl_file.fopen ('UPNCOMMON_DIR', 'file2.txt', 'W', NULL);
      5    utl_file.put_line (filtyp, 'File has arrived ' || SYSTIMESTAMP, TRUE);
      6    utl_file.fclose (filtyp);
      7  end;
      8  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- wait long enough (may take more than one minute) for job to run:
    SCOTT@orcl12c> EXEC DBMS_LOCK.SLEEP (100)
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> -- check for results:
    SCOTT@orcl12c> SELECT * FROM zzzz
      2  /
    WHEN
    FILE_NAME
    FILE_SIZE P
    22-OCT-13 10.12.28.309000 PM
    c:\my_oracle_files/file1.txt
            57 N
    22-OCT-13 10.14.08.580000 PM
    c:\my_oracle_files/file2.txt
            57 N
    2 rows selected.

  • PS CS3, Camera Raw 4.6 Update and Nikon D810 NEF File Reading Issue

      Currently Have Photoshop CS3 & Adobe Bridge CS3 2.1.1.9.
    According to Adobe, Camera Raw 4.6 supports Nikon D810 NEF files.  I have downloaded Camera Raw 4.6 Update. When
    I try to open Nikon D810 NEF files, I get Photoshop CS3  error that says
    "cannot complete request your because it is not the right kind of
    document. These NEF files wont open in Adobe Bridge at all.  What am I doing wrong?

    Hey,
    Before I purchased, let me get your thoughts on another option that just occurred to me which involves:
    1)Editing my D810 NEF files in LR 5.6, which I have, then exporting/saving the edited files as JPEGs.
    2) Doing any additional editing, as necessary (i.e. that might require layering or selections..etc) , with the JPEGs  with Bridge or PS CS3. 
    This method wont involve any additional software purchase now.. right?    Am I missing anything.   here?    Since my final output to my customers are JPEGs any way, wont this work?   Will I be at any disadvantage.   Am I missing anything.   here? 
    From: ssprengel <[email protected]>
    To: charles cash <[email protected]>
    Sent: Monday, October 6, 2014 9:49 AM
    Subject:  PS CS3, Camera Raw 4.6 Update and Nikon D810 NEF File Reading Issue
    PS CS3, Camera Raw 4.6 Update and Nikon D810 NEF File Reading Issue  created by ssprengel in Adobe Camera Raw - View the full discussion  
    You can buy it from here:
    http://creative.adobe.com/plans
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6795004#6795004
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: 
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link. 
    Start a new discussion in Adobe Camera Raw by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • SQL Server 2008 .MDF File attaching issue

    Hy all guys here is big Happy news about the SQL Server 2008 database.mdf file attaching issue on Windows 8.1 and SQL Server 2008
    I found the solution like this
    first you go to the directory of your computer and go to that folder where your database and other files are like
    folder having database and files then > Right click and > security > then give full rights from which user you LOGIN and then apply > ok after that go to SQL Server 2008 > Right Click > run as administrator
    Hurray your problem will be resolve I Resolved my issue too  thanks to providing every solution
    if you guys find solution please give me best regards thanks  

    Hi Farhan-Islam,
    Glad to hear that your issue had been solved by yourself. Thank you for your sharing which will help other forum members who have the similar issue.
    Regards,
    Lydia Zhang

  • Is there any limitation to create file watcher in oracle 11g scheduler

    Hi,
    Below are the version details where I am working.
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production"
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    I tried to create a file watcher. But I got below error.
    begin
        dbms_scheduler.create_file_watcher
          (file_watcher_name => 'file_watcher',
           directory_path => 'F:\Aswadhati\workfile',
           file_name => 'example.txt',
           credential_name => 'external_user',
           enabled => TRUE);
    end;
    Error report:
    ORA-03001: unimplemented feature
    ORA-06512: at "SYS.DBMS_ISCHED", line 3702
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 2632
    ORA-06512: at line 2
    03001. 00000 -  "unimplemented feature"
    *Cause:    This feature is not implemented.
    *Action:   None.

    In the enterprise edition I am able to create all the below objects.But The job is not running after file arrival.
    Could you please me in this case also.
    BEGIN
      DBMS_SCHEDULER.create_credential(
        credential_name => 'LOCAL_CREDENTIAL',
        username        => 'upncommon',
        password        => '*******');
    END;
    BEGIN
      DBMS_SCHEDULER.create_file_watcher(
        file_watcher_name => 'test_file_watcher',
        directory_path    => '/home/upncommon/pub',
        file_name         => 'sample2.sh',
        credential_name   => 'LOCAL_CREDENTIAL',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.create_program(
        program_name        => 'file_watcher_test_prog',
        program_type        => 'STORED_PROCEDURE',
        program_action      => 'PROC_SCH',
        number_of_arguments => 1,
        enabled             => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.define_metadata_argument(
        program_name       => 'file_watcher_test_prog',
        metadata_attribute => 'event_message',
        argument_position  => 1);
    END;
    BEGIN
      DBMS_SCHEDULER.create_job(
        job_name        => 'file_watcher_test_job',
        program_name    => 'file_watcher_test_prog',
        event_condition => NULL,
        queue_spec      => 'test_file_watcher',
        auto_drop       => FALSE,
        enabled         => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.set_attribute('file_watcher_test_job','parallel_instances',TRUE);
    END;
    EXEC DBMS_SCHEDULER.enable('test_file_watcher');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_prog');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_job');

  • How to set file watcher

    I want to know how to set file watcher for my sql database using java.
    my doubt is i am running an web application in a web server.
    the user information are stored one databse.
    i want that user details in other databases.
    it will do automatically.
    when ever new values are stored one database then automatically that value transfered in other data base.
    i want urgent.
    please help me
    thanks

    It seems like the most natural way to do that would be with database triggers, if your DB allows its triggers to interact with the world outside the DB--e.g. invoking Java code, invoking some other process, opening a socket, etc.

  • Recording File Size issue CS 5.5

    I am using CS 5.5, a Balckmagic Ultra Studio Pro through USB 3.0 being fed by a Roland HD Video switcher. Everything is set for 720P 60fps (59.94) and the Black Magic is using the Motion JPEG compression. I am trying to record our sermons live onto a Windows 7 machine with an Nvidia Ge-Force GTX 570, 16 GB of Ram and a 3TB internal raid array (3 drives). It usually works great but more often now when I push the stop button in the capture window, the video is not proceesed and becomes unusable. Is it a file size issue or what. I get nervous when my recording goes longer than 50 Minutes. Help

    Jim thank you for the response. I have been away and busy but getting
    caught up now.
    I do have all drives formatted as NTFS. My problem is so sporadic that I
    can not get a pattern down. This last Sunday recorded fine so we will see
    how long it last. Thanks again.

  • Executable file in File watcher - 11gR2 RAC

    Hi,
    Is it possible to execute a shell script through the File watcher feature in 11gR2. i can schedule it through dbms_scheduler but its not working with filewatcher.
    The examples available on the net are for stored procedure and not executable files.
    Thanks

    http://java.sun.com/docs/books/tutorial/deployment/jar/index.html

  • All of a sudden File compatability issues with IPhoto & digital camera

    Anyone have issues or solutions for solving file compatability issues with IPhoto & digital camera?  Worked okay for years but all of a sudden giving me error messages about file format.  My camera uses Jpeg.

    There is an issue ongoing  between 10.6 and Kodak cameras. Workround: use a USB Card Reader.
    Regards
    TD

  • File Watcher doesn't work

    Hi,
    I have Oracle 11g R2 on E Linux 5.5 64-bit.
    I created a File Watcher but couldn't get it to work.
    Following is the script I used to create the file watcher:
    http://www.ahmedbaraka.com/temp/fwscript.sql
    Following is the output of executing the script:
    http://www.ahmedbaraka.com/temp/fwoutput.htm
    Any guideline is appreciated.

    yes, does not produce expected results.
    Error of commission or error of omission?
    Answer is TBD.
    Edited by: sb92075 on Dec 20, 2010 5:49 PM

  • Regarding: Enabling 11gR2 File watcher feature in 10gR2.

    Hi,
    We need to have 11gr2 File_watcher feature in 10.2.0.1 in Windows XP.
    We ran the dbms_scheduler script in 10gR2 database available in ORACLE_HOME/rdbms/admin/dbmssch.sql of 11gR2.
    Since this feature is available in 11gR2.
    we tried to execute the script in 10gR2, we are getting the following error.
    ERROR at line 1:
    ORA-04063: package body "SYS.DBMS_SCHEDULER" has errors
    ORA-06508: PL/SQL: could not find program unit being called:
    "SYS.DBMS_SCHEDULER"
    ORA-06512: at line 2
    Is there any package/scripts/Procedures to enable the file_watcher feature in 10.2.0.1 database.
    Please help me in this regards,
    Thanks
    Kumaresh.

    The new File Watcher feature is really nothing more than a job that wakes up every ten minutes to check for the existence of file(s).
    There is nothing to stop you writing your own PL/SQL that checks for a file using either UTL_FILE or DBMS_LOB and scheduling that every 10 minutes with either DBMS_JOB or DBMS_SCHEDULER. You could, if you wanted, write your PL/SQL so that it puts a message in a queue when it finds a file, or even start a scheduler job. Or anything you like.
    Nothing to stop you at all.

  • I am having a file moving issue with Adobe Reader XI

    I am having a file moving issue with Adobe Reader XI on a Windows 7 32bit system. When Adobe reader is set as the default program for PDF files moving files from one directory to another takes over a minute, regardless of the size of the file. When the default handler is set to another program, like Nuance or PDF Creator, this is instant. What in Adobe Reader is causing this and what can I do to speed up file moving? Any help will be greatly appreciated. Thank you.

    I am using Windows 7 home edition and using Internet Explorer 10
    The PDF's are online on websites that I am trying to open.  Both on the site as well as trying in a new window.
    Thank you
    Jeff

  • Windows Update Helps with File Size Issues?

    I'm just wondering if anybody has recently noticed an
    improvement related to the file size issue variously reported
    throughout the forums?
    I ask because our IT folks distributed a Windows update on 2
    days last week and since the application of those updates I have
    not experienced the freakishly large file sizes and the related
    performance issues in Captivate. Unfortunately I don't have any of
    the details of what patch(es) were installed, as it was part of our
    boot script one morning and I didn't even realize it was updating
    until I received the Reboot Now or Later alert.
    Anyway, I was curious because I have experienced significant
    performance improvement since then.
    Rory

    If you are using a remote workflow ... designers are sending off-site editors InCopy Assignment packages (ICAPs) .... then they need to create assignments in order to package them for the remote InCopy user. So there's no need to split up a layout into smaller files or anything.  An assignment is a subset of the INDD file; multiple assignments -- each encompassing different pages or sections -- are created from the same INDD file.
    When the designer creates the assignment, have them turn off "Include original images in packages"; that should keep the file size down.
    Or -- like Bob said -- you can avoid the whole remote workflow/assignment package rigamarole all together by just keeping the file in a project folder in the Dropbox folder on teh designer's local hard drive, and have them share the project folder with the editors. In that workflow, editors open the INDD file on their local computer and check out stories, just as though they were opening them from a networked file server.
    I cover how the InCopy Dropbox workflow works in a tutorial video (within the Remote Workflows chapter) on Lynda.com here:
    http://www.lynda.com/tutorial/62220
    AM

Maybe you are looking for

  • Jasper report problem in stretch fields

    Hi All i am making report in ireport and jasper report, by design and code. The height of the fields is not limited , that mean i can put in it a large sentence or a small one. So i use the property "Stretch with overflow" (or textField.setStretchWit

  • No receiver found;

    Hi, Scenario : IDOC --> XI --> JMS Here i has configured the ReceiverCC properly, but when i trigger the IDOC am getting the error saying that, No receiver found; message stopped but has no errors Please give me any suggestions here and i cross check

  • How to view infotype in ESS?

    Hi all, We are using SAP EP 6.0,my SAP ERP ESS 60.2. I would like to know how to get the infotype view in ESS. We would like to know how to get the view of a custom infotype in the personnel information section of ESS. We have created a transactional

  • Upload to elements 7 from iphone 5

    I can't get photos from iphone 5 ios7 to APE 7.  Fatal error c0000005 and address changes each time I try.

  • Database question issue

    I've built a DB with some 88 records in it. In each record, I have a competitors name, team name and position meaning order of go, for each team name as it relates to that team. The rider's position field is a value list of one to five. Who goes firs