UTL_SMTP Installation Problem, Package Created with errors

Hi Forum Friend!
I tried to Install UTL_SMTP Package in my Oracle8 Release 8.0.6.1.0. A friend of mine sent me the UtLSMTP.SQL Script and I run from SQL+ connected as SYS. When I check the Package by the Oracle Schema Manager I Notice that UTL_SMTP has errors so the package will not run successfully. The Errors are the following:
PLS-00103: Encountered the symbol "CONNECTION" when expecting one of the following:
:= . ) , @ % default character
The symbol ":=" was substituted for "CONNECTION" to continue.
I have no Idea how to handle this error. I tried to install the Package in my Developing Database But the Production Database is in HPUX(Unix). Could you please send me some recommendation to solve this issue and start executing the package!
Best Regards
Emmanuel Carrillo Trejos
P.D. LNB, Republic of Panama (Central America).

Dear Friends
Well, I think that my Database version is too old to use this package. I think that one time looking for this topic I found something relating sending email using a Host call(I think that using Mail Command from Unix) Does anybody has and Idea how to do it?. Thanks for your time colleagues!
Best Regards
Emmanuel Carrillo Trejos
LNB, Panamà.

Similar Messages

  • ORA-39083: Object type TRIGGER failed to create with error:

    i m getting these two error when i import data using impdp.
    ORA-39083: Object type TRIGGER failed to create with error:
    ORA-00942: table or view does not exist
    i have exported (expdp) data from production db, when i importing (impdp) the dump file to the test db i m geting the above two errors.
    example:
    ORA-39083: Object type TRIGGER failed to create with error:
    ORA-00942: table or view does not exist
    Failing sql is:
    CREATE TRIGGER "NEEDLE"."CC_BCK_TRG" BEFORE INSERT OR UPDATE
    ON NIIL.cc_bck_mgmt REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW
    DECLARE
    w_date DATE;
    w_user VARCHAR2(10);
    BEGIN
    SELECT USER,SYSDATE INTO w_user,w_date FROM DUAL;
    IF INSERTING THEN
    :NEW.cretuser :=w_user;
    :NEW.cretdate :=w_date;
    END IF;
    IF UPDATING THEN
    :NEW.modiuser :=w_user;
    :NEW.modidate :=w_date;
    END IF;
    END;
    status of the above trigger in pro db is valid. and source table also exist even though i m getting error when i import
    please suggest me...

    perhaps you don't have table... (impdp created trigger before create table)
    check about "NIIL.cc_bck_mgmt" table.
    and then create it (trigger) manual ;)
    Good Luck.

  • Activation of Creative Cloud packages created with CCP 1.3 breaks when deploying via imaging

    Descption of the problem:
    If Creative Cloud products are deployed as a part of an OS image and the packages are created with CCP for Windows 1.3, the activation still breaks.
    The problem affects most of our class room computers but, however, not all of them.
    When a standard user tries to open any of the products, an error message is displayed instead of opening the the program. 
    Configuration error
    A problem has occurred with the licensing of this product.
    Restart your computer and re-launch the product.
    If this problem still occurs after restarting, contact Customer Support for further assistance, and mention the error code shown at the bottom of this screen.
    Error: 213:19
    Installed Products: Acrobat XI,Ai,Dw,Fl,Id and Ps 
    CCP version: 1.3.0, build 66
    CCP Workstation OS: Windows 7 SP1 32-bit
    Target OS: Windows 7 SP1 64-bit
    Workaround: running APTEE on an resolves the issue every time. Yet according to Adobe this should not be necessary.
    Deployment workflow
    1. Create a single package containg all of the products with CCP and an Enterprise CC serial number.
    2. Customize Acrobat .mst file for the target language with Adobe Customization Wizard XI, leaving the serial empty. 
    3. Create a batch file to run ExceptionDeployer in pre mode, install the the other products and finally run ExceptionDeployer in post mode.
    4. Install the the package to a model computer using the batch.
    5. Run Windows's built-in sysprep tool  with OOBE and shutdown switches.
    6. Capture the image from the model computer and deploy it to other computers.
    We can unfortunately reliably reproduce this issue and we are, if not happy, but at least willing to provide you all the required logs and other info to find a real solution.

    Hi PT_luas,
    Please send me an email: [email protected] so that we may arrange a callbak.
    Regards,
    Romit Sinha

  • How to Download the Custom Package Created with all the objects

    Hi All,
    Could any body let me know how to download a custom package created in sap with all the objects including webdynpros and modulepool programs.
    Thanks.

    Hi,
    U can use open source programs available in net like Mass Download, ZAPLINK, SAPLINK.
    Mass Download --> Download the objects
    SAPLINK, ZAPLINK --> Used for downloading and also for importing the downloaded objects to other system.
    Regards,
    Arun

  • Vold problem: vn_rdwr failed with error 0xe

    Anybody have any idea what this means any time vold
    tries to start I get:
    unix: vn_rdwr failed with error 0xe
    unix: nfs error reading symbols
    vold[proc_id]: mounting of "/vol" failed
    I have no idea what nfs has to do with vold.

    Hi,
    see this post :
    Problem when compiling C program from RFC SDK on AIX 5.2
    Adding -lC seems to work ...

  • Package created with Creative Cloud Packager and volume licensing key- sign in required

    Hello, we have used Creative Cloud Packager and volume licensing key to create Adobe Photoshop CC v.6 and other apps packages, tested before deployment. Deployed the image on iMAC computers, users are getting Sign in Required/ registration details message. Tried to use AAMEE to create serialization file, but it does not recogise packages created by Creative Cloud Packager. appreciate any advice. thank you.
    Svetlana

    HI Abhijit,
    All our students have network home folders, the issue is that some students can open Photoshop and it will be activated, other students will  be prompted to activate PHotoshop when they try to open it. We have tried to delete photoshop plist and adobe photoshop settings folder from students Library/ Preferences folder but it did not help.
    We'll test the APTEE utility tomorrow, I will post the results. Thank you.
    Svetlana

  • First package - created with compilation errors

    I'm working my way through Learning Oracle PL/SQL, the O'Reilly book, the 2002 edition, page 92. These procedures work fine stand-alone but when one calls the other, when mxb_add_books calls mxb_add_book_copy, in a package I get compilation errors:
    Create or replace package mxb_book
    As
    procedure mxb_add_book_copy (isbn_in in varchar2, barcode_ID_in in varchar2);
    procedure mxb_add_books (isbn_in in varchar2, barcode_ID_in in varchar2, title_in in varchar2,
    author_in in varchar2, page_count_in in number, summary_in in varchar2 default null, date_published_in in date default null);
    end mxb_book;
    create or replace package body mxb_book
    as
    /* private procedure for use only in this package body */
    Procedure assert_notnull (tested_variable in varchar2)
    Is begin
    If tested_variable is null
    Then
    Raise value_error;
    End if;
    End assert_notnull;
    procedure mxb_add_book_copy (isbn_in in varchar2, barcode_ID_in in varchar2)
    is
    begin
    assert_notnull(isbn_in);
    assert_notnull(barcode_id_in);
    insert into MXB_book_copies_TEMP(isbn,barcode_id)
    values (isbn_in, barcode_id_in);
    exception
    when dup_val_on_index
    then
    null;
    end mxb_add_book_copy;
    End;
    procedure mxb_add_books (isbn_in in varchar2, barcode_ID_in in varchar2, title_in in varchar2,
    author_in in varchar2, page_count_in in number, summary_in in varchar2 default null, date_published_in in date default null)
    as
    begin
    /* check for reasonable inputs */
    if isbn_in is null then
    raise value_error;
    end if;
    /* put a record in the "books" table */
    insert into MXB_books_TEMP(isbn, title, summary, author, date_published, page_count)
    values (isbn_in,title_in, summary_in, author_in, date_published_in, page_count_in);
    /* if supplied, put a record in the "book_copies" table */
    if barcode_id_in is not null
    then
    mxb_add_book_copy (isbn_in, barcode_ID_in)
    end if;
    end mxb_add_books;
    end mxb_book;

    welcome to the forum.
    please read this to improve your posts:
    SQL and PL/SQL FAQ
    *[edit]*
    --you're missing a ; before your last end if and <tt>END mxb_book; </tt> in the last line should be <tt>END mxb_book_body;</tt>.--
    There is an additional <tt>end;</tt> after <tt> END mxb_add_book_copy;</tt> and the missing ; before your last end if .
    bye
    TPD
    Edited by: T.PD on 14.12.2011 18:13

  • Help with installation problems for PE 12; error while installing Shared Technologies. Suggestions?

    Help. I've tried to install PE12 multiple times without success due to shared technology installation failure. The install gets right to the end and then fails when trying to launch and uninstalls. Per the help suggestions, I downloaded the ASA, which identified no problems.
    Very frustrating.
    Any suggestions for someone who is not too tech savvy?
    Thanks.

    In Windows what has always worked for me is ending any already running PSE/PRE processes from previous or current versions - look for anything with 'Elements' in the name, and 'dynamiclinkmanager.exe'. Then I run the setup program by right-clicking and selecting 'Run as Administrator'. This runs the setup program with even higher privileges than a user account with Administrator privileges.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Win XP Installation problem on System with KT880 DELTA FSR

    WHen I try install win xp with sp2 included, installation fails in about 19 minute to end in graphical part of installation.
    when installation crashes i see only blue screen with
    IRQL_NOT_LESS_OR_EQUAL
    configuration is here
    CyberCase CY 229 ATX se zdrojem 400W
    MB MSI KT880 Delta FSR
    CPU Athlon XP 2800+ Barton BOX
    DIMM 512 CL 2.5 8x32 Apacer
    GPU Sapphire Radeon 9600
    FDD ALPS 3.5"
    HDD WD 80GB IDE on IDE 1
    DVD RW LG GSA 4160B Dual on IDE 2
    I tried in BIOS agp 4x, vlink and fastwrite disabled, etc..
    Help please ..

    You can test the memory by downloading this program,
    http://www.memtest.org/download/1.40/memtest86+-1.40.floppy.zip
    Creates a bootdisk which you must boot from. (Disk cannot be read in windows)
    If the PSU cannot provide enough power then running the memory at a lower frequency can help, as 333Mhz uses less power than 400Mhz.
    Test the memory at 333Mhz and see if you get any errors, maybe ask a friend to run the memory at 400Mhz with memtest.
    If it does run at 400Mhz (200Mhz) without any errors then it is not faulty.
    From this point forward you will always test any memory modules that you buy with memtest.
    It is a very useful program.

  • Oracle10g Installation problem on Linux with DHCP IP

    Hi,
    I am new to Oracle Products, I have tried to install Oracle 10G on Linux with DHCP IP.
    I got the following warning while installing even though I have loopback interface configured.
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned public IP addresses. However, the primary network interface on the system should be configured with a static IP address in order for the Oracle Software to function properly. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    Please help me in resolving this problem or Can I ignore this message?
    My Server Configurations:
    [root@SQAESMRH5 Oracle_Install_Errors]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:12:3F:79:FA:2C
    inet addr:10.10.121.61 Bcast:10.10.121.2 Mask:255.255.255.0
    inet6 addr: fe80::212:3fff:fe79:fa2c/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:20751998 errors:0 dropped:0 overruns:0 frame:0
    TX packets:19278549 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:2150795393 (2.0 GiB) TX bytes:438232502 (417.9 MiB)
    Interrupt:177
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:12383146 errors:0 dropped:0 overruns:0 frame:0
    TX packets:12383146 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1965045834 (1.8 GiB) TX bytes:1965045834 (1.8 GiB)
    [root@SQAESMRH5 Oracle_Install_Errors]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    #::1 localhost6.localdomain6 localhost6
    127.0.0.1 localhost.localdomain localhost
    #::1 localhost6.localdomain6 localhost6
    [root@SQAESMRH5 Oracle_Install_Errors]#

    This warning means it is not recommended to install Oracle 10g on a DHCP assigned IP address. It could work, but you won't be able to configure Enterprise Manager, since this tool requires a fixed IP address. If possible, have the IP address fixed.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • Designer6i Installation Problem on P4 with Win2000

    I get following error and installation aborts:
    cgenrx61.map(0): FILE_NOT_FOUND while
    mapping cgenrx61
    Does anyone know what is happening here?
    Thanks,
    Tony

    To install 8i on a P4 you to search for a patch in metalink to substitute the Instalation Product Program.
    I already have the same problem and I solve it with this patch.
    Best Regards Can anyone list this link? Oracle's search engine stinks! I couldn't find any documentation on the P4 installation issue on the site.

  • Installation problem when creating first database

    Hy , I have a dell power edge with Windows 2003 R2 32bit. 4Gb RAm. I am installing oracle standard edition 11g. the installation completed successfully, when creating the default database i got an error. It refered me to the log below
    Location of the file is : D:\Oracle\app\Administrator\cfgtoollogs\dbca\ORCL\emConfig.log
    SEVERE: Error starting Database Control
    Refer to the log file at D:\Oracle\app\Administrator\cfgtoollogs\dbca\ORCL\emConfig.log for more details.
    Nov 10, 2008 5:07:32 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
         at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:869)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:250)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:213)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:235)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
         at java.lang.Thread.run(Thread.java:595)
    I have tried deleting the database and recreating it. Still the same.
    I have put the ip and host name of the server in the host file . does not work.
    Can you help me please

    D:\Oracle\app\Administrator\cfgtoollogs\dbca\ORCL\emConfig.log contains the following information
    CONFIG: Waiting for service 'OracleDBConsoleORCL' to fully start
    Nov 10, 2008 5:07:32 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at D:\Oracle\app\Administrator\cfgtoollogs\dbca\ORCL\emConfig.log for more details.
    Nov 10, 2008 5:07:32 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
         at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:869)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:250)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:213)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:235)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
         at java.lang.Thread.run(Thread.java:595)
    Nov 10, 2008 5:07:32 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to D:\Oracle\app\Administrator\product\11.1.0\db_1\oui

  • ILife '09 installation problems; run preflight script error

    Hi, not sure where else to put this topic so I figured this would be the best place. The iLife section has forums for individual applications and not the entire thing.
    I'd like to point out that I had iLife '08 installed and working but I uninstalled it before I proceeded with the '09 installation since I wanted to start clean. I also installed iWork '09 successfully.
    When I try installing iLife '09 however, I get a an error stating "The following install setup failed: run preflight script for registration. contact the software manufacturer for assistance.". I have tried to repair disk permissions through Disk Utility and then reboot, but still get the same error. I have also tried using some of Onyx's "cleaning" utilities, but it doesn't help either.
    I also get the same "run preflight script" error when I try installing the latest Quicktime update through Apple Software Update application.
    Not sure any of these are related but I'm out of ideas. Is anyone else getting anything similar or know how to fix any of this?

    Just a guess, but do you have a retail disk of iLife '09 or an upgrade that came as a supplement to your new Mac? If the latter, you should have the iLife '08 applications installed in their default locations (where they were located when you first started up the new Mac) because it is highly unlikely that an upgrade disk can upgrade what is not there.
    If this is your problem, you may not have to reinstall the entire OS. Instead, first try looking for an "Install Bundled Software" app (or something with a similar name) on your new Mac's system disk 1. This may allow you to reinstall the original iLife apps without having to reinstall the OS. If so, the upgrade disk should work once they are back in place.

  • IDOC created with errors!

    Hello All,
    I am sure that I am not posting this in the right forum. But I did this because, I get more responses in this compared to others. Sorry if this has caused any trouble.
    I had extended a standard idoc with 2 customer segments and procesed the idoc file. An idoc got created witht he following error message.
    EDI: Syntax error in IDoc (mandatory segment missing)
    Message no. E0072
    Diagnosis
    The segment E1EDK14 has the attribute 'Mandatory' in the syntax description of the basic type /IRM/CHGBACKS01 (customer enhancement ). However, the segment is missing in the IDoc. The segment number logged in the status record identifies the item before which the segment is missing.
    This error may have been triggered by an unidentifiable segment before the expected mandatory segment.
    Procedure
    Please check the IDoc or the syntax description of the basic type /IRM/CHGBACKS01 (customer enhancement ).
    When we insert new segments, where should we insert? How important is the segment number? Why is this error message even though that mandatory segment is there in the idoc?
    Please help.
    Thanks,
    Lavanya

    Hi,
    I got the following error message.
    Basic type ZCHGBCK does not exist
    Message no. EA447
    Diagnosis
    IDoc type ZCHGBCK could not be found.
    Procedure
    Please enter an IDoc type that exists.
    Srinivasan,
    I had tested this with the standard idoc and it was perfect. i am having these issues after extension only.
    Thanks,
    Edited by: Lavanya Boora on Jun 2, 2008 10:55 PM

  • Can a pdf have problems when created with multiple PDF versions?

    In our everyday workflow, we have PDFs created from different versions.  Our main files are created as PDF v1.5, but then we might import pages created from another software that is v1.3, then we might scan and add a page that is created as v1.6.  Has anyone noticed any issues with files created this way?  I am troubleshooting some problem files and wonder if this could be contributing.
    Thanks.

    Could possibly be an issue, but it likely depends on the features used. The major problem would be going from later versions to prior versions in terms of the version you open everything in. If you are using the latest version for the editing, I would not see why there would be a problem. Earlier versions of Acrobat may have problems with PDFs saved in later versions, but that can typically be fixed with Reduce File Size or the PDF Optimizer.

Maybe you are looking for

  • Proxy Maximum Payload size

    Hi , What is the maximum size of payload a proxy ( ABAP server/client) can handle in XI?  Also send me docs on Proxy Sizing ? Regards, Praveen Kumar

  • Load balancing & Fail over with 10g

    Hi all, I understand that 10g offers a framework that allows a web site to run on multiple jvm's, therefore, offering load balancing and failover facilities. I can't find detailed information about this though on Oracle's webSite. If you know of any

  • GTK file dialog causes crash

    Hello community, I am experiencing a weird problem since I upgraded this afternoon. The upgrade itself went smooth and didnt break any package. I checked the latest mirrors an found out my system is perfectly up to date. Unfortunately, the GTK file d

  • WorkFlow integration patches (OCS windows r2)

    Instruction (cut): Before integrating Oracle Workflow with the Oracle Files schema, you must apply the following patches: ARU 4920260 (for issue 2183448) // FIND in OLD Patches ARU 4909037 (for issue 3180908) // FIND in OLD Patches ARU 5126488 (for i

  • Can I sync iCal with my Google Calendar account?

    I was just wondering if any of you have or know how to sync your iCal with a Google calendar. I've tried myself, but I don't seem to be able to do it. I don't even know if it's possible but was just wondering if I could get some help. Thanks!!!!!