Db link error in PL/SQL but not in SQL

oracle 10.2.0.4
solaris 10
I have a simple procedure (anonymous block) that uses a db link to update a table in another db (on same host)
The procedure fails with the following error:
ORA-02019: connection description for remote database not found
I can insert records using the same db_link using the exact same line pasted from the stored proc (same line that raises the ORA-02019).
insert into table_x@my_db_link (select * from local_table_y);
x rows inserted
I use the same sql*plus session to run both the stored proc and sql command;
SQL> conn my_user/my_pwd
connected
SQL> @my_proc.sql
ORA-02019: connection description for remote database not found
SQL> insert into table_x@my_db_link (select * from local_table_y);
x rows inserted
QUESTION:
Why does the db_link fail in the procedure and not the sql command line call?
P.S.
I converted the procedure to a store proc and it also fails with the same call.

Perhaps if the Database link is non-public?There is a bug, #3240720, which applies when the owner of the db link is not the user who's executing the query.
There are several bugs which demonstrate this sort of behaviour. For instance ORA-2019 can be hurled if the local PL/SQL is running against a remote Dataguard standby database (although I would hope we wouldn't be running an INSERT in that scenario).
Cheers, APC
blog: http://radiofreetooting.blogspot.com

Similar Messages

  • ORA-01031: insufficient privileges in PL/SQL but not in SQL

    I have problem with following situation.
    I switched current schema to another one "ban", and selected 4 rows from "ed"
    alter session set current_schema=ban;
    SELECT * FROM ed.PS WHERE ROWNUM < 5;
    the output is OK, and I get 4 rows like
    ID_S ID_Z
    1000152 1
    1000153 1
    1000154 1
    1000155 1
    but following procedure is compiled with warning
    create or replace
    procedure proc1
    as
    rowcnt int;
    begin
    select count(*) into rowcnt from ed.PS where rownum < 5;
    end;
    "Create procedure, executed in 0.031 sec."
    5,29,PL/SQL: ORA-01031: insufficient privileges
    5,2,PL/SQL: SQL Statement ignored
    ,,Total execution time 0.047 sec.
    Could you help me why SELECT does work in SQL but not in PL/SQL procedure?
    Thanks.
    Message was edited by:
    MattSk

    Privs granted via a role are only valid from SQL - and not from/within stored PL/SQL code.
    Quoting Tom's (from http://asktom.oracle.com) response to this:I did address this role thing in my book Expert one on one Oracle:
    <quote>
    What happens when we compile a Definer rights procedure
    When we compile the procedure into the database, a couple of things happen with regards to
    privileges.  We will list them here briefly and then go into more detail:
    q    All of the objects the procedure statically accesses (anything not accessed via dynamic SQL)
    are verified for existence. Names are resolved via the standard scoping rules as they apply to the
    definer of the procedure.
    q    All of the objects it accesses are verified to ensure that the required access mode will be
    available. That is, if an attempt to UPDATE T is made - Oracle will verify the definer or PUBLIC
    has the ability to UPDATE T without use of any ROLES.
    q    A dependency between this procedure and the referenced objects is setup and maintained. If
    this procedure SELECTS FROM T, then a dependency between T and this procedure is recorded
    If, for example, I have a procedure P that attempted to 'SELECT * FROM T', the compiler will first
    resolve T into a fully qualified referenced.  T is an ambiguous name in the database - there may be
    many T's to choose from. Oracle will follow its scoping rules to figure out what T really is, any
    synonyms will be resolved to their base objects and the schema name will be associated with the
    object as well. It does this name resolution using the rules for the currently logged in user (the
    definer). That is, it will look for an object owned by this user called T and use that first (this
    includes private synonyms), then it will look at public synonyms and try to find T and so on.
    Once it determines exactly what T refers to - Oracle will determine if the mode in which we are
    attempting to access T is permitted.   In this case, if we as the definer of the procedure either
    owns the object T or has been granted SELECT on T directly or PUBLIC was granted SELECT, the
    procedure will compile.  If we do not have access to an object called T by a direct grant - the
    procedure P will fail compilation.  So, when the object (the stored procedure that references T) is
    compiled into the database, Oracle will do these checks - and if they "pass", Oracle will compile
    the procedure, store the binary code for the procedure and set up a dependency between this
    procedure and this object T.  This dependency is used to invalidate the procedure later - in the
    event something happens to T that necessitates the stored procedures recompilation.  For example,
    if at a later date - we REVOKE SELECT ON T from the owner of this stored procedure - Oracle will
    mark all stored procedures this user has that are dependent on T, that refer to T, as INVALID. If
    we ALTER T ADD  some column, Oracle can invalidate all of the dependent procedures. This will cause
    them to be recompiled automatically upon their next execution.
    What is interesting to note is not only what is stored but what is not stored when we compile the
    object. Oracle does not store the exact privilege that was used to get access to T. We only know
    that procedure P is dependent on T. We do not know if the reason we were allowed to see T was due
    to:
    q    A grant given to the definer of the procedure (grant select on T to user)
    q    A grant to public on T (grant select on T to public)
    q    The user having the SELECT ANY TABLE privilege
    The reason it is interesting to note what is not stored is that a REVOKE of any of the above will
    cause the procedure P to become invalid. If all three privileges were in place when the procedure
    was compiled, a revoke of ANY of them will invalidate the procedure - forcing it to be recompiled
    before it is executed again. Since all three privileges were in place when we created the procedure
    - it will compile successfully (until we revoke all three that is). This recompilation will happen
    automatically the next time that the procedure is executed.
    Now that the procedure is compiled into the database and the dependencies are all setup, we can
    execute the procedure and be assured that it knows what T is and that T is accessible. If something
    happens to either the table T or to the set of base privileges available to the definer of this
    procedure that might affect our ability to access T -- our procedure will become invalid and will
    need to be recompiled.
    This leads into why ROLES are not enabled during the compilation and execution of a stored
    procedure in Definer rights mode. Oracle is not storing exactly WHY you are allowed to access T -
    only that you are. Any change to your privileges that might cause access to T to go away will cause
    the procedure to become invalid and necessitate its recompilation. Without roles - that means only
    'REVOKE SELECT ANY TABLE' or 'REVOKE SELECT ON T' from the Definer account or from PUBLIC. With
    roles - it greatly expands the number of times we would invalidate this procedure. If some role
    that was granted to some role that was granted to this user was modified, this procedure might go
    invalid, even if we did not rely on that privilege from that role. ROLES are designed to be very
    fluid when compared to GRANTS given to users as far as privilege sets go. For a minute, let's say
    that roles did give us privileges in stored objects. Now, most any time anything was revoked from
    ANY ROLE we had, or any role any role we have has (and so on -- roles can and are granted to roles)
    -- many of our objects would become invalid. Think about that, REVOKE some privilege from a ROLE
    and suddenly your entire database must be recompiled! Consider the impact of revoking some system
    privilege from a ROLE, it would be like doing that to PUBLIC is now, don't do it, just think about
    it (if you do revoke some powerful system privilege from PUBLIC, do it on a test database). If
    PUBLIC had been granted SELECT ANY TABLE, revoking that privilege would cause virtually every
    procedure in the database to go invalid. If procedures relied on roles, virtually every procedure
    in the database would constantly become invalid due to small changes in permissions. Since one of
    the major benefits of procedures is the 'compile once, run many' model - this would be disastrous
    for performance.
    Also consider that roles may be
    q    Non-default: If I have a non-default role and I enable it and I compile a procedure that
    relies on those privileges, when I log out I no longer have that role -- should my procedure become
    invalid -- why? Why not? I could easily argue both sides.
    q    Password Protected: if someone changes the password on a ROLE, should everything that might
    need that role be recompiled?  I might be granted that role but not knowing the new password - I
    can no longer enable it. Should the privileges still be available?  Why or Why not?  Again, arguing
    either side of this is easy. There are cases for and against each.
    The bottom line with respect to roles in procedures with Definer rights are:
    q    You have thousands or tens of thousands of end users. They don't create stored objects (they
    should not). We need roles to manage these people. Roles are designed for these people (end users).
    q    You have far fewer application schema's (things that hold stored objects). For these we want
    to be explicit as to exactly what privileges we need and why. In security terms this is called the
    concept of 'least privileges', you want to specifically say what privilege you need and why you
    need it. If you inherit lots of privileges from roles you cannot do that effectively. We can manage
    to be explicit since the number of development schemas is SMALL (but the number of end users is
    large)...
    q    Having the direct relationship between the definer and the procedure makes for a much more
    efficient database. We recompile objects only when we need to, not when we might need to. It is a
    large efficiency enhancement.
    </quote>

  • DB Link - works via SQL but not via packages

    I have a database link on user ODB on database A, to database B. The DB Link seems fine for SQLs that i do, but doesn't compile in my package code. Please tell me why it works for "regular sqls" but not inside a package.
    Example: while connected as ODB user on database A, if I do this query:
    SELECT "TRAXDOC_DETAIL"."FILE_NAME",
    "TRAXDOC_DETAIL"."FILE_TYPE",
    FROM "TRAXDOC_DETAIL"@TRAXDOC_LINK
    WHERE "TRAXDOC_DETAIL"."TRAXDOC_ROW_ID" = 100031 AND
    "TRAXDOC_DETAIL"."TRAXDOC_LINE"= 2
    It works fine. But the same query inside a package that is owned by user ODB on database A will not compile, stating the table/view does not exist.
    The database link is owned by use ODB on database A, connects directly to the owner of the tables in question on database B.
    Any suggestions welcome... this is an urgent issue, because it also worked fine on my customer's test environment, but not on their Production that they just upgraded. I need to know what to look for as to what could be wrong.

    Thanks so much for your response - Prefixing the call to the table within the package, with the schema owner does indeed solve the problem. Since this is a Production issue, i have implemented this fix in my customer's database.
    However, I would still like this issue permanently resolved. The next time we send out updated package code, this will happen again (unless we then fix it again). I'd still like info from anyone on what exactly must be done to allow the call within the package to work without specifically pre-fixing the table's schema owner. It shouldn't be needed... The DB link is connecting via the same schema on database B that owns the table in question.
    pre-fixing the schema owner is something we don't do in our sql statements, and this has worked fine for many of our cusomer's environments. We're only seeing this issue on one environment.

  • "No connectivity with the server" error for one document but not the other, in the same document library

    We have a number of users all of a sudden getting "No connectivity with the server.  The file 'xxx' can't be opened because the server couldn't be contacted." errors trying to open MS Office docs (Word, Excel, etc.) in SharePoint with IE,
    just by clicking the link and selecting the "Read Only" option.  If they select the "Check Out and Edit" option, they can open the document no problem.  One of my customers gets the error on one document but not the other, in
    the same document library!  The older document (a weekly report) was copied and renamed as per standard procedure.  She can read the older document, but not the new one.
    It is definitely a profile issue, as other people have logged onto the machines of the users with problems and do not get the error.  We have also renamed people's c:\user profile folders and the corresponding Profilelist registry entry and the newly
    created profile does not experience the error for these people.  Renaming the profile back restores all their personal settings but the error reappears.  When we copied the old profile's folder structure into the new profile, many of the user settings
    were restored (but not all, like Dreamweaver settings) but the error did not appear.  We think that the system folders files (like AppData) weren't totally copied over so we're going to run another test using xcopy.  We are rebooting between
    logons to make sure all files are unlocked.
    The laptops and computers are mainly 32bit, Win7 Enterprise running IE9 and Office 2010 Professional Plus, but there's a few 64bit machines as well. The SharePoint farm has 1 WFE, 1 App Server running search and CA, and a shared database server running SQL
    2005 SP4.  SharePoint is 64bit MOSS 2007 with the latest CU.
    We've checked the logs on the client as well as on the server and there aren't any helpful entries.  We've also run Process Monitor, also with no helpful entries.  We're planning to run something like Fiddler next.
    It's not everyone, because there are many people are accessing the SharePoint system and the same files.  It is also not a permission thing, as we've tested by giving the users elevated permissions with no changes.  One person experiencing
    the errors is a Site Collection Admin.  That same person ran a test where I coped a simple Excel file into a Document Library which contained a problem file.  They were able to open it Read Only no problems that day, but the next day, the same
    file gave them an error.   In their case, they usually get a "xxx is not checked out" error and only occasionally get the "No connectivity with the server" error.
    We've tried lots of things including:
    Deleting IE cache
    Deleting SharePoint Drafts and webcache folder contents
    Running IE without add-ons
    Upgrading and Downgrading IE
    Uninstalling and re-installing IE
    Reinstalling our SSL certs
    Repairing Office
    Removing and then adding back in the Microsoft Office "Microsoft SharePoint Foundation Support" Office Tool 
    Deleting all HKLM and HKLU Office registry settings
    Toggling IE Compatibility Settings
    Toggling the IE Automatic Logon option
    Toggling the location of checked out files
    Adding the site in the trusted sites list
    Adding the site to the WebClient\Parameters registry locations
    Making sure the WebClient service is started
    Rebooting the machine (lol :)
    This is becoming a serious issue, not just because of the inconvenience for the users having to check out every document they want to read, but we have some files with macros that open up other documents to run which are now failing.  There aren't
    "check out" workarounds for some of those macros.
    We're planning to open a ticket with Microsoft, but I'm throwing it out here first in case someone has run into this before, or may have some suggestions on what to try next.  Thanks!
    -Richard.
    PS  I think this needs to be in the "General" forum instead?

    It took three days of dedicated troubleshooting, but I have found the cause of the errors, and a couple of fixes.  It helped tremendously that my own machine was throwing the error.  I have scheduled a couple of users to work with me to test the
    various fixes, to see which one works best, so the story isn't over yet.
    I had backed up my c:\users profile folder and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList registry key so I could restore my profile after I was done.  I made a copy of the profile folder and was using that for awhile,
    but then made another copy where I had deleted a lot of content out of it so that the copies would go faster.  Since a newly created profile did not have errors, I was trying to copy back as much of the profile as possible to make it easier for our users
    to get back to work.  Instead of blowing away their profile and starting from scratch (which we know worked) I wanted to narrow down what was causing the error and just skip that from the restore.  The concept was to keep as much as the users profile
    in tact (application settings, etc.) not just restoring their desktop and My Documents folders.
    When we first tested a few weeks ago, simply copying the folder contents didn't reproduce the error.  I then tried xcopy, but got the "can't read file" error.  Then I tried robocopy, and ran into the "junction" problem. 
    I went back to xcopy, and found that placing the excludes.txt file in the windows/system32 folder eliminated the error.
    So the process went as follows: 
    Reboot and log into the machine as another user
    Delete the profile and associated registry key
    Reboot and log into the machine as the affected user, creating a new profile, and there is no error
    Reboot and log in as the other user
    xcopy the contents of the skinned-down backed-up profile to the newly created profile
    Reboot and log in as the affected user, and the error occurs
    Repeat the above, but add items in the excludes.txt file to see what, when eliminated, causes the error not to appear in the last step
    I eventually found that skipping the c:\users\<profile folder>\appdata\local\Microsoft\office\14.0 folder allowed the entire profile to be copied over without the error occurring.  That was strange, because we've cleaned out the cache folders
    before which didn't fix the issue. 
    So I went about it the opposite way, and tried to delete the 14.0 folder from the restored profile, and after reboot, the error still occurred.
    What eventually worked was deleting the 14.0 folder and copying over a 14.0 folder from a newly created profile!
    One way to do this was to:
    Reboot and log in as another user
    Rename the c:\users profile folder
    Rename the appropriate [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList] registry key
    Reboot and log in as the affected user, confirm that there is no error
    Reboot and log in as the other user
    Copy the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder to the other user's desktop
    Delete new profile folder, and rename the backup to be the production folder
    Delete the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder and then paste the 14.0 copy from the desktop
    Reboot and log in as the affected user, confirm that there is no error
    We've tried this on a couple machines and it works.  I had to run Windows Explorer as Administrator to access the other profile's folders.
    We've also successfully copied a 14.0 folder created by one profile on one affected computer over another profile's folder on another computer, eliminating the error, so we're trying that first, as that is fewer steps.
    We may attempt to script this, but the self-help instructions are only 5 lines long:
    Reboot and log into the affected computer with another account
    Go to <link to location of 14.0 folder on network> and copy the 14.0 folder
    Run Windows Explorer as Administrator
    Go to c:\users\<profile folder>\appdata\local\microsoft\office and delete the 14.0 folder, and paste the copied 14.0 folder (trying to overwrite it makes Win7 want to merge the folders)
    Reboot and log into your normal account, and confirm the error is gone
    I'll come back and report after we go into the field with this fix, but after the few tests, I am cautiously optimistic that this is it.

  • Abnormal, Same query get data in sql but not working on Fron-end

    Dear,
    Version :Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    We have created packed in oracle database befor two months ago & was working fine, but since morning select statment in package is not working while running via application which mentioned below and raise not data found but surprising thing is that same query is getting data when we execut on sql plus return one record.
    i don't know either it's abnormal behaviour or sth else becuase the same query run without changing any singl column in where_clause work in sql but not getting data while submition request through oracle application and raising not data found.
    --thankse
    Edited by: oracle0282 on Dec 29, 2011 2:20 AM

    Actully when i run this query in sql it return one record on the same parameter, while when we exeucte this select in pl/sql on the same parameter oracle raise no data found error.
    so i got confused the same query with same parameter retur record in sql but when we call it fron-end through packege raise 'no data found error'.
    hope you understand now.
    --thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Repeating error message: "acl found but not expected" during permissions repair

    repeating error message: "acl found but not expected" during permissions repair
    My iMac is running slow. Processor running all the time. I was told to do permissions repair, so I did that. I get 100's and 100's of "ACL found but not expected" while doing a permissions repair in 'utilities'. It says 1 minute to complete but runs for a half hour. When it finally completes, I can restart the permissions repair again and it starts all over with same endless messages. Even though its says 'repaired', these ACL issues keep coming.
    SEE BELOW ... What's wrong? And How do I fix it?
    Kind thanks for your suggestions,
    Vic
    Hardware Overview:  Model Name: iMac
      Model Identifier: iMac8,1
      Processor Name: Intel Core 2 Duo
      Processor Speed: 2.8 GHz
      Number Of Processors: 1
      Total Number Of Cores: 2
      L2 Cache: 6 MB
      Memory: 4 GB
      Bus Speed: 1.07 GHz
      Boot ROM Version: IM81.00C1.B00
      SMC Version (system): 1.30f1
    Serial Number (system): W884000HZE4  Hardware UUID: BF3B8113-E0F0-54DB-9062-B73A0E4DB0F2
    Repairing permissions for “Vic's iMac”ACL found but not expected on “Library/Printers”Repaired “Library/Printers”ACL found but not expected on “Library/Printers/Icons”Repaired “Library/Printers/Icons”Group differs on “Library/Printers/InstalledPrinters.plist”; should be 80; group is 0.Permissions differ on “Library/Printers/InstalledPrinters.plist”; should be -rw-rw-rw- ; they are -rw-r--r-- .Repaired “Library/Printers/InstalledPrinters.plist”ACL found but not expected on “private/etc/apache2/extra/httpd-ssl.conf”Repaired “private/etc/apache2/extra/httpd-ssl.conf”ACL found but not expected on “Library/Application Support/Apple/Remote Desktop”Repaired “Library/Application Support/Apple/Remote Desktop”ACL found but not expected on “Library/Application Support/Apple/Remote Desktop/Notify”Repaired “Library/Application Support/Apple/Remote Desktop/Notify”ACL found but not expected on “Library/Preferences/Xsan”Repaired “Library/Preferences/Xsan”ACL found but not expected on “Library/Printers/Canon”Repaired “Library/Printers/Canon”ACL found but not expected on “Library/Printers/Canon/IJScanner”Repaired “Library/Printers/Canon/IJScanner”ACL found but not expected on “Library/Printers/Canon/IJScanner/Frameworks”Repaired “Library/Printers/Canon/IJScanner/Frameworks”ACL found but not expected on “Library/Printers/Canon/IJScanner/Plugins”Repaired “Library/Printers/Canon/IJScanner/Plugins”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources”Repaired “Library/Printers/Canon/IJScanner/Resources”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons”Repaired “Library/Printers/Canon/IJScanner/Resources/CIJIcons”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan5600F.icns”Repa ired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan5600F.icns”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan9000F.icns”Repa ired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan9000F.icns”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE100.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE100.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE110.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE110.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE200.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE200.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE210.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE210.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE700F.icns”R epaired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE700F.icns”A CL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_07.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_07.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_08.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_08.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICADAT.DAT”Repair ed “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICADAT.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808A.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808A.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808W.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808W.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ1908D.TBL”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ1908D.TBL”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602A.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602A.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602W.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602W.DAT”ACL found but not expected on “Library/Printers/PPDs”Repaired “Library/Printers/PPDs”ACL found but not expected on “Library/Printers/PPDs/Contents”Repaired “Library/Printers/PPDs/Contents”ACL found but not expected on “Library/Printers/PPDs/Contents/Resources”Repaired “Library/Printers/PPDs/Contents/Resources”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component”Repaired “Library/QuickTime/AppleIntermediateCodec.component”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Info.plist”Repaire d “Library/QuickTime/AppleIntermediateCodec.component/Contents/Info.plist”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/PkgInfo”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/PkgInfo”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/AppleInt ermediateCodec.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/AppleInt ermediateCodec.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature”Rep aired “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature/Cod eResources”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature/Cod eResources”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/version.plist”Repa ired “Library/QuickTime/AppleIntermediateCodec.component/Contents/version.plist”

    VicDesotelle wrote:
    repeating error message: "acl found but not expected" during permissions repair
    My iMac is running slow. Processor running all the time. I was told to do permissions repair, so I did that. I get 100's and 100's of "ACL found but not expected" while doing a permissions repair in 'utilities'. It says 1 minute to complete but runs for a half hour. When it finally completes, I can restart the permissions repair again and it starts all over with same endless messages. Even though its says 'repaired', these ACL issues keep coming.
    ACLs are just junk left over from previously installed OSXs. Just ignore. They have no impact.
    Describe your exact issue and computer specs and Linc may run you through a series of tests which may well help you find the problem to your issues. I agree, Permissions repair is rarely required.
    Cheers
    Pete

  • Can anyone point me in the right direction for the link to download Acrobat 9 Standard?  I found the link to download 9 Pro but not standard.  Old computer crashed and new computer does not have a CDR/DVD rom drive.

    Can anyone point me in the right direction for the link to download Acrobat 9 Standard.  I found the link to download 9 Pro but not standard.  Old computer crashed and new computer does not have a CDR/DVD rom drive.

    Hi,
    Standard or Pro would be licensed through your serial number, the download link and downloaded file would be the same for both of them.
    Pro or Standard would be determined after you put in your serial number.
    Download Acrobat products | 9, 8
    Thank You
    Arjun

  • My photoshop elements12 will not update says error and contact adobe but not open now for help.  windows vista

    my photoshop elements12 will not update says error and contact adobe but not open now for help.  windows vista

    I need the updates because I just purchased a Nikon D60 and my Photoshop does not read the .NEF files produced by the camera.
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    Do you really mean the Nikon D60 which shipped in 2008? Was it purchased secondhand?
    The Nikon D60 was first supported in Adobe Camera Raw 4.4.
    Photoshop CS4 ships with Camera Raw 5.0 so it can read D60 NEF files out of the box. No updates required.
    If you do mean the D60 then something else must be going on. e.g. are you using Nikon software to transfer files from camera to computer?

  • Sp2-0575: Use of oracle SQL feature  not in sql 92 entry level.

    Hi,
    While logging to sqlplus I'm getting the following message
    "sp2-0575: Use of oracle SQL feature not in sql 92 entry level."
    and login is successful, but I'm not able to generate next value from the sequence .
    t says no rows selected when i request
    for nextval a
    EX: select mySeq.nextval from dual; (mySeq is sequence)
    Thanx,
    Ravi.

    What has happened is that someone has enabled the Oracle feature called as FIPS flagger.
    This is a feature that Oracle provides to you if you plan to write SQL code that should be portable
    to other RDBMS systems. IF you enable this flagger and use a feature which is not in the SQL standard,
    Oracle will complain that use of this feature will make your application Oracle dependent, and you may not
    be able to run this application against any other RDBMS.
    To disable this for your SQL*Plus session do this:
    SQL> set flagger off
    SQL>
    Once you do this it will allow you to use all SQL commands including Oracle specific extensions.

  • Linked server works for sa but not for user

    I have a linked server to an Oracle database. It works fine for me logged in as DBA but not for the user. The linked server uses the same account regardless of who's using it.
    When the user tries it the following error is thrown:
    Cannot initialize the data source object of OLE DB provider "OraOLEDB.Oracle" for linked server
    I have granted public access to MSDB and execute on the xp_prop_oledb_provider object to the user.

    this link should give all the connection string to sql server
    http://www.connectionstrings.com/sql-server/
    but can you verify if your application is really using that connection file ? try running trace alongside and try to connect to the database.. so do you atleast see  a call from this config file with username - myapplication??
    Hope it Helps!!

  • Diagram errors in acrobat x but not foxit

    hello, i recently stumbled onto an error with a pdf file that reads fine in foxit but not in acrobat x. after hours of trying i figured out that the probem relates to the diagrams in the file. i cant seem to find a way to fix the file!! i have tried to optimize and preflight but it ends in errors. i woould really appreciate getting some kind of help. thnaks in advance.
    info.
    acrobat x 10.0.0
    win7 x64
    i have included a page from the file:
    http://www.2shared.com/document/_n7SRkqQ/error.html

    sorry. it works for me. here are some other links:
    http://www.filedropper.com/error_1
    http://www.fileswap.com/dl/5cagNModd/
    thanks for trying btw!

  • TSQL working in 2008 but not in SQL Server 2014

    Hello,
    We recently have been asked to move from SQL Server 2008 to SQL Server 2014. We are trying to run parallel tests and one of our queries that was working perfectly in 2008 is not working in 2014.
    One of the filter on the our query(from 2008) is we convert a varchar field to date and compare it to anotehr calulated filed ("convert(date,Quick_Data_Start_Date) <= convert(date,(Year_ID_to_Use + '-' + Month_ID_to_Use + '-01'))").
    This worked fine in 2008 but when i try to do similar operation in 2014 it returns no result.
    For testing purposes, instead of converting the field to date format, i manully converted the actual value i.e. instead of using "convert(date,Quick_Data_Start_Date)" when i use "convert(date,'8/1/2014')" the code works fine.
    The field "Quick_Data_Start_Date" comes from a pivot query.
    When i create a temporary table for the pivot query and use the temporary table in  my code and then convert the field on fly the code works fine again.
    Seems like the T sql is not able to convert the field from varchar to date on the fly when coming from a different query. We have tried changing the compatbility level to 100 as well and it still would not work.
    Any suggestions and comments will be really helpful. Thanks.
    Regards,
    GM

    Hello, here is my overall review:
    The query is not optimized … agreed!  But that’s not the issue.
    There are a number of indexes that could be created, a number of minor calculations or evaluation criteria that could be improved to make the query more efficient … again – AGREED.
    The query “as is” runs in just under a minute (on SQL 2008 machine with less memory and slower hard drives).  Adding the indexes would take more time to add than they would save.
    NONE of that should make the query NOT WORK.  These deficiencies might make it run more slowly, but should not cause the query to return no results.
    “order by” shouldn’t make any difference because the query plan isn’t assuming or using any special order
    The main table (~10 M rows) is using a clustered index scan (not efficient, but not the point)
    The Time dimension table is using a non-clustered index seek (so the index is sorted but the data in the table is NOT physically sorted that way)
    The pivot subquery is using clustered index scan (it’s only 6 rows, so who cares)
    Once again, the order by might make it less efficient, but shouldn’t make it fail.  We get no errors or warnings – it just returns no rows.
    Because the query DOES return results when we 
    Either dump the Pivot query result into a #temp table(single row) and use the #temp table instead of the pivot query in the big SQL or  
    The “input” tables are limited to X rows but DOES NOT when the inputs have more rows
            This strongly suggests a memory issue.
    The server has 64 GB of RAM, but this probably isn’t enough to hold millions of rows and calculations.
    Can we turn on some traces to see what’s happening to the data in the query?  How and what are we looking for?
    Once the memory capacity is exceeded, SQL should be pushing these results to a temporary table (either in the local database or the tempdb).  Can we test to see if that is happening? 
    How?
    Is there a permissions issue?
    I have successfully done large copies outside of SQL (copied 300+ GB file from one location to another) that had to use the disk instead of just memory … means the disk write operation
    isn’t restricted from my user account.
    I can also confirm that the account that runs the SQL Service (“Network Service” account) has full permissions to the drives and paths where the mdf and ldf files are stored (including
    master and temp).
    If this doesn’t work, our upgrade is basically frozen and cannot proceed.  I’m really out of ideas … anything?

  • Deployment Error: DCs get activated but not deployed

    Hello All,
    I am new to NWDI. I did some code modifications in my DC. When i check in my activity, it gets activated, but not getting deployed. At first i was getting authentication problem, that is resolved now. Now i get this CMS log:
    20140819135816 Info :Aug 19, 2014 1:58:16 PM Info: com.sap.ASJ.dpl_api.001023 Deployment of [name: 'abc', vendor: 'XXXX.com' (sda)] finished.
    20140819135816 Info :Aug 19, 2014 1:58:16 PM Info: com.sap.ASJ.dpl_api.001052 +++ Deployment of session ID [467] finished with status [Error] +++. [[ deployerId=7 ]] [[#49: 4.031 sec]] [
    20140819135816 Info :===== Summary - Deploy Result - Start =====
    20140819135816 Info :------------------------
    20140819135816 Info :Type | Status : Count
    20140819135816 Info :------------------------
    20140819135816 Info :> SCA(s)
    20140819135816 Info :> SDA(s)
    20140819135816 Info :- [Aborted] : [1]
    20140819135816 Info :------------------------
    20140819135816 Info :------------------------
    20140819135816 Info :Type | Status : Id
    20140819135816 Info :------------------------
    20140819135816 Info :> SCA(s)
    20140819135816 Info :> SDA(s)
    20140819135816 Info :- [Aborted] : name: 'abc', vendor: 'XXXX.com',
    20140819135816 Info :------------------------
    20140819135816 Info :===== Summary - Deploy Result - End =====
    20140819135816 Info :]
    20140819135816 Info :end of log
    20140819135816 Info :End deployment:
    20140819135816 Info :
    20140819135816 Info :Summary of deployment
    20140819135816 Info :==> deployment finished for abc (103) with rc=12
    20140819135816 Info :deployment finished for buildspace: NDI_NDITK080_D
    Thanks.

    Dear Pranay
    manual deployment can be done in two ways
    1. right click your dc in the studio ->Development Components->Deploy .
    before doing this , in your studio go to windows->preference->sap j2ee engine -> fill the message server host and message server port i.e on selecting deploy it will ask for password , enter sdm password and your ear file will be deployed.
    message server host --> host entry or IP address of the server to which you want to deploy and
    message server port - > ask the basis person to give the port or else you can check via
    http://serverhost:portno/index.html -- > click on system information --> it will prompt for user id and password .. fill the crendentials if you have and you will find the message port info in the top left corner. for more info refere the below link.
    http://scn.sap.com/thread/1443866 -- to get message server port go through this link
    2. you can take the ear file from your dc , in nwds studio open Navigator, expand the dc then dril down to gen->default->deploy -> here ear file will be available , copy the ear file and give that to your basis guys to deploy directly from SDM.
    or follow this link
    http://scn.sap.com/thread/1884858 .
    Regards
    Govardan

  • I have given links on self page those links are open in IE but not in firefox why?

    now I am at the coding stage & facing a problem about - I have given self page links that are open in IE6.0 but not in firefox why?
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)

    Please copy all the code in View -> Page Source to http://pastebin.mozilla.org then let us know the resulting address.

  • StyledDocument error in one instance, but not another.

    Hey all, i've tried to iron this bug out for the last 2 days, but no luck as yet.
    I've tried to shorten the code down to the functional error bits, but I can't recreate the error. I'm sure i'm doing something wrong somewhere, but I cant see where.
    I'm reluctant to post the code becuase it's mostly verbose, and it's easier to describe the problem.
    I have a log file generating class (LogFileGen), that collates information in a (private) DefaultStyledDocument (accessable with getter getDSD()), with different Styles in it (using multiple insertString(offset, "text to insert", AttributeSet) statements along the line, called from various other classes.
    This is sometimes displayed by a LogFile, which will have a JTextPane/JEditorPane (infoDisplay) (both display the error), and when the LogFile is shown to the user, I update it's infoDisplay with infoDisplay.setDocument(logFileGen.getDSD()).
    I have had this work in certain cases before, but in this once case I get
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: javax.swing.text.DefaultStyledDocument cannot be cast to javax.swing.text.html.HTMLDocument.
    The Thread points to the line infoDisplay.setDocument(logFileGen.getDSD()). If I replace it with infoDisplay.setText(logFileGen.getTextFromDSD()), I get the content, but without the styling (obviously), and in other classes with their own JTextPanes, it works fine, formatting and everything.
    Can anyone tell me why I get the error on some classes and not on others? I'm going mental here :s
    Many, Many thanks in advance. In the meantime, i'll try and get a working example that actually reproduces teh err0r :(

    xD Many apologies. you read fast.
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: javax.swing.text.DefaultStyledDocument cannot be cast to javax.swing.text.html.HTMLDocument
         at javax.swing.text.html.ParagraphView.getStyleSheet(Unknown Source)
         at javax.swing.text.html.ParagraphView.setPropertiesFromAttributes(Unknown Source)
         at javax.swing.text.ParagraphView.<init>(Unknown Source)
         at javax.swing.text.html.ParagraphView.<init>(Unknown Source)
         at javax.swing.text.html.HTMLEditorKit$HTMLFactory.create(Unknown Source)
         at javax.swing.text.CompositeView.loadChildren(Unknown Source)
         at javax.swing.text.CompositeView.setParent(Unknown Source)
         at javax.swing.plaf.basic.BasicTextUI$RootView.setView(Unknown Source)
         at javax.swing.plaf.basic.BasicTextUI.setView(Unknown Source)
         at javax.swing.plaf.basic.BasicTextUI.modelChanged(Unknown Source)
         at javax.swing.plaf.basic.BasicTextUI$UpdateHandler.propertyChange(Unknown Source)
         at java.beans.PropertyChangeSupport.firePropertyChange(Unknown Source)
         at java.beans.PropertyChangeSupport.firePropertyChange(Unknown Source)
         at java.awt.Component.firePropertyChange(Unknown Source)
         at javax.swing.text.JTextComponent.setDocument(Unknown Source)
         at javax.swing.JTextPane.setDocument(Unknown Source)
         at _infoDisplay.setDocument(logFileGen.getDSD())(LogFile.java:85)_
            at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Edited by: Hemmels on May 11, 2009 7:31 AM
    Edited by: Hemmels on May 11, 2009 7:31 AM
    - Guess underline fails.

Maybe you are looking for

  • Coffee spill on macbook retina 13"

    Hey guys, I spilled a bit of coffee towards the top left corner of my laptop, where the vents are. Luckily, I had my keyboard proteciton film on so I managed not to get coffee in through that way, but a little bit did fall into the little gap where t

  • Error: SCAC-50012 when using Java Embedding activity

    Hi, I am just trying to create a file Object as follows: <bpelx:exec import="java.io.*"/> <bpelx:exec name="Java_Embedding1" version="1.5" language="java"> <![CDATA[try{           addAuditTrailEntry("Hello");            File f = new File("file.txt");

  • Ref: Text Resolution from Photoshop... High or Low Resolution ?

    Hi people... Can anyone tell me... for sure... that text set in Adobe Photoshop will output similar to that of text set in Adobe Illustrator... or will it output as a bitmap file and be pixelated and blurry when enlarged by 400% ? I have the text set

  • Free bumper shipped

    I got an email this morning from apple saying my bumper has been shipped. Has this happened to anybody else and do you know how long apple's regular shipping is?

  • Problem in bdc for 'miro' t.code

    hi , experts I got following error when i do bdc recording for purchase invoice , MIRO transaction. pls help me. field invfo-zfbdt does not exist in the screen SAPLMR1M 6000.