JPEG to e-mail as an attachment

I think I read all the posts on this subject and none has really made it clear on how to do it properly.

I have an application that calls the camera after taking the photo and the camera is closed an email with the image as an attachment is sent.  The attachment sent is smaller and of lower quality if I just went to the image on the Blackberry, press menu, highlight "Send as email", enter the appropriate information and click Send.

Why is there a difference and how can I fix?

I'm trying to get the process to take a photo and email as automated as possible, less "work" for the user.

Here is the code I use to send the attachment:

try {

            // Create the connection to a file that may or may not exist.
            FileConnection file = (FileConnection) Connector.open("file://" + path);

            InputStream input = file.openInputStream();
            int available = input.available();

            byte[] data = new byte[(int) file.fileSize()];
            input.read(data);

            Bitmap bitmap = Bitmap.createBitmapFromBytes(data, 0, data.length, 3);

            // create a multipart
            Multipart mp = new Multipart();

            // data for the content of the file
            String messageData = "Image Upload";

            JPEGEncodedImage jpegImage = JPEGEncodedImage.encode(bitmap, 100);

            // create the file
            SupportedAttachmentPart sap = new SupportedAttachmentPart(mp, jpegImage.getMIMEType(), path, jpegImage.getData());

            TextBodyPart tbp = new TextBodyPart(mp, messageData);

            // add the file to the multipart
            mp.addBodyPart(tbp);
            mp.addBodyPart(sap);

            // create a message in the sent items folder
            Folder folders[] = Session.getDefaultInstance().getStore().list(Folder.SENT);
            Message message = new Message(folders[0]);

            // add recipients to the message and send
            try {
                Address toAdd = new Address("[email protected]", "Image");
                Address toAdds[] = new Address[1];
                toAdds[0] = toAdd;
                message.addRecipients(Message.RecipientType.TO, toAdds);
                message.setContent(mp);
                message.setSubject("IMAGE UPLOAD");

                Transport.send(message);
            } catch (Exception e) {
                Dialog.inform(e.toString());
            }
        } catch (Exception e) {
            Dialog.alert("Problem with sending picture: " + e);
        }

Thank you

Nevermind, figured it out.  Just need to look a little more difficult creating a bitmap (changed the scale).

Tags: BlackBerry Developers

Similar Questions

  • AppleScript to choose a message in mail & download the attachment

    Hello

    I would like to know if there is a way to prompt the user to choose a message like how we are able to choose file / folder?

    Above all, I would like the process to go as:

    Choose a mail, download his attachment, perform actions on the attachment.

    I'm stuck at how I can refer to a message as well to download the attachment. ATM, I'm only able to get the message ID in already by selecting the message in Mail and making "set my_Sel to get the selection."

    Thank you.

    It might be possible, but heavy, at best.

    It would be much easier to create a user screen the message in question and then call the script, but if you want to go the other way you may:

    (a) a list of all messages in the mailbox

    (b) to present the user with a list of posts by choose in the list

    (c) affect the result

    What is your opposition to act on the selection?

  • redirect e-mail with photos attached

    When you try to send an e-mail with an attached picture in live mail, I get a notice on the screen that live mail cannot

    find photos in the e-mail message.  Transmitted without, he is received with an empty box with an x in the top left corner, but

    No picture.  This is not consistent with each email, which cannot live mail search image when it appears on my

    perfectally screen?

    Submit all Live and Hotmail queries on the forum right here:

    Windows Live Solution Center
    http://windowslivehelp.com/

  • Sending mail with an attachment using UTL_SMTP

    Hi all

    I'm working on a PL/SQL code, where do I send a mail with an attachment using UTL_SMTP. I use the following code, I changed the value of p_to and p_from

    DECLARE

    l_mail_conn UTL_SMTP.connection;

    l_boundary VARCHAR2 (50): = '-= * #abc1234321cba #* =';

    l_step PLS_INTEGER: = 12000; -Make sure you define a multiple of 3 would not exceed the 24573

    p_to VARCHAR2 (100): = ' [email protected] ';

    p_from VARCHAR2 (100): = ' [email protected] ';

    p_subject VARCHAR2 (100): = "UPLOAD of FILE MAIL."

    p_text_msg VARCHAR2 (100): = 'it is a system generated email';

    p_attach_name VARCHAR2 (100);

    p_attach_mime VARCHAR2 (100);

    p_attach_blob BLOB;

    p_smtp_host VARCHAR2 (100): = 'localhost ';

    p_smtp_port NUMBER: = 25;

    BEGIN

    l_mail_conn: = UTL_SMTP.open_connection (p_smtp_host, p_smtp_port);

    UTL_SMTP. HELO (l_mail_conn, p_smtp_host);

    UTL_SMTP.mail (l_mail_conn, p_from);

    UTL_SMTP. RCPT (l_mail_conn, p_to);

    UTL_SMTP.open_data (l_mail_conn);

    UTL_SMTP.write_data (l_mail_conn, ' Date: ' |) TO_CHAR (SYSDATE, ' ' DD-MON-YYYY HH24:MI:SS) | UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' from: ' | p_to |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' from: ' | p_from |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' subject: ' | p_subject |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Reply-To: ' | p_from |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, "MIME-Version: 1.0 ' |") UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: multipart/mixed; limit = "" | ") l_boundary | '"' || UTL_TCP. CRLF. UTL_TCP. CRLF);

    IF p_text_msg IS NOT NULL THEN

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: text/plain; charset = "iso-8859-1" ' |) UTL_TCP. CRLF. UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, p_text_msg);

    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

    END IF;

    IF p_attach_name IS NOT NULL THEN

    FOR I IN (SELECT *)

    OF xx_mail_test_table

    WHERE ROWNUM = 1

    ORDER BY last_update_date DESC) LOOP

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: ' | p_attach_mime |) '; name =' ' | I.FILE_NAME | '"' || UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, "Content-Transfer-Encoding: base64' |") UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Disposition: attachment; filename = "" | ") I.FILE_NAME | '"' || UTL_TCP. CRLF. UTL_TCP. CRLF);

    FOR J FROM 0... TRUNC ((DBMS_LOB. GetLength (I.file_name) - 1) / l_step) LOOP

    UTL_SMTP.write_data (l_mail_conn, UTL_RAW.cast_to_varchar2 (UTL_ENCODE.base64_encode (DBMS_LOB.substr (I.FILE_NAME, l_step, J * l_step + 1)));)

    END LOOP;

    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

    END LOOP;

    END IF;

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) '--' || UTL_TCP. CRLF);

    UTL_SMTP.close_data (l_mail_conn);

    UTL_SMTP. Quit (l_mail_conn);

    EXCEPTION

    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN

    UTL_SMTP. Quit (l_mail_conn);

    lift;

    WHILE OTHERS THEN

    dbms_output.put_line (SQLERRM);

    END;

    This is when I execute the block that I get 2 mails to the same but there are some attachments, I checked the table and he gave.

    Could someone help me as to where I'm wrong?

    Create the raw DATA for the SMTP protocol can be tricky.

    I cheat and use a package that has been designed to do easily.

    APEX_MAIL

    MK

  • Send an E-mail with an attachment procedure Oracle

    Jin

    I have the procedure to send e-mail with excel attachment
    The data in the Excel file are built by using the query in my procedure. Send mail with attachment, it works well.
    Now the situation is if there is no data in the Excel worksheet that is built dynamically, we limit the sending of email
    is that possible, please let me know,
    Am using the utl_tcp method to build the excel file

    Thank you
    Vel

    Something like that? But I have not tested. Please test carefully.

    PROCEDURE GCN_ORDER(errbuf OUT VARCHAR2, retcode OUT VARCHAR2) IS
      rc          integer;
      crlf        VARCHAR2(2) := CHR(13) || CHR(10);
      mesg        VARCHAR2(1000);
      c           utl_tcp.connection;
      L_FROM_DATE DATE;
      L_TO_DATE   DATE;
    
      msg_from        VARCHAR2(100) := '[email protected]';
      to_addresses    VARCHAR2(1000);
      cc_addresses    VARCHAR2(1000);
      email_addresses VARCHAR2(2000);
      msg_subject     VARCHAR2(200) := 'E-mail Alert: ';
      msg_text1       VARCHAR2(15) := 'Dear Sir,';
      msg_text2       VARCHAR2(500) := 'Please find the attached file,';
      msg_text3       VARCHAR2(25) := 'Division';
      msg_text4       VARCHAR2(25) := 'For the period : ';
      v_mail_to       VARCHAR2(1000);
      lv_gcn          varchar2(1000);
    
      next_column            number;
      recipient_email_length number;
      single_recipient_addr  varchar2(100);
    
      v_is_there_any_attachment CHAR(1):='N'; --New var.
    
      cursor cur_select(L_FROM_DATE DATE, L_TO_DATE DATE) is
        SELECT (substr(wdd.source_header_type_name, 5) || ',' ||
               oha.order_number || ',' || wdd.attribute1 || ',' ||
               TO_DATE(wdd.attribute2, 'dd/mm/rrrr') || ',' ||
               TO_DATE(oha.creation_date, 'dd/mm/rrrr') || ',' ||
               TO_DATE(ola.creation_date, 'dd/mm/rrrr') || ',' ||
               ola.ordered_item) gcn
          FROM apps.oe_order_headers_all oha,
               apps.oe_order_lines_all   ola,
               apps.wsh_delivery_details wdd
         WHERE oha.org_id = 92
           AND oha.org_id = ola.org_id
           AND oha.header_id = ola.header_id
           AND wdd.inventory_item_id = ola.inventory_item_id
           AND wdd.source_header_number = oha.order_number
           AND wdd.source_line_id = ola.line_id
           AND wdd.org_id = oha.org_id
           AND wdd.attribute_category = '92Freight'
           AND TO_DATE(wdd.attribute2, 'dd/mm/rrrr') <
               TO_DATE(ola.creation_date, 'dd/mm/rrrr')
           AND TO_DATE(wdd.attribute2, 'dd/mm/rrrr') BETWEEN L_FROM_DATE AND
               L_TO_DATE
           AND oha.flow_status_code NOT IN ('BOOKED', 'ENTERED');
    
      cursor cur_to_email is
        SELECT email_address
          FROM alert_users_ID
         WHERE org_id IN (1, 92)
           AND status_flag = 'Y'
           AND report_id = 3
           AND MAIL_TYPE = 'To'
           AND (module = 'AR' OR module IS NULL);
    
      cursor cur_cc_email is
        SELECT email_address
          FROM alert_users_ID
         WHERE org_id IN (1, 92)
           AND status_flag = 'Y'
           AND report_id = 3
           AND MAIL_TYPE = 'Cc'
           AND (module = 'AR' OR module IS NULL);
    
    BEGIN
    
      --FROM AND TO DATE LOGIC
      select MIN(START_DATE), MAX(END_DATE)
        INTO L_FROM_DATE, L_TO_DATE
        from apps.gl_period_statuses
       where closing_status = 'O'
         AND APPLICATION_ID = 101
         AND SET_OF_BOOKS_ID = 2;
    
      for c_to in cur_to_email loop
        to_addresses := to_addresses || ',' || c_to.email_address;
      end loop;
    
      to_addresses := ltrim(to_addresses, ',');
    
      for c_cc in cur_cc_email loop
        cc_addresses := cc_addresses || ',' || c_cc.email_address;
      end loop;
    
      cc_addresses := ltrim(cc_addresses, ',');
    
      email_addresses := to_addresses || ',' || cc_addresses;
    
      recipient_email_length := length(email_addresses);
      email_addresses        := email_addresses || ','; -- Add comma for the last asddress
      next_column            := 1;
      if instr(email_addresses, ',') = 0 then
        -- Single E-mail address
        single_recipient_addr  := email_addresses;
        recipient_email_length := 1;
      end if;
    
      c := utl_tcp.open_connection(remote_host => '127.0.0.1',
                                   remote_port => 25,
                                   tx_timeout  => null);
    
      rc := utl_tcp.write_line(c, 'HELO 127.0.0.1');
      rc := utl_tcp.write_line(c, 'EHLO 127.0.0.1');
    
      rc := utl_tcp.write_line(c, 'MAIL FROM: ' || msg_from);
    
      while next_column <= recipient_email_length loop
        -- Process Multiple E-mail addresses in the loop OR single E-mail address once.
        single_recipient_addr := substr(email_addresses,
                                        next_column,
                                        instr(email_addresses, ',', next_column) -
                                        next_column);
        next_column           := instr(email_addresses, ',', next_column) + 1;
    
        --rc := utl_tcp.write_line(c, 'MAIL FROM: '||msg_from);
        rc := utl_tcp.write_line(c, 'RCPT TO: ' || single_recipient_addr);
      end loop;
      rc := utl_tcp.write_line(c, 'DATA');
      rc := utl_tcp.write_line(c,
                               'Date: ' ||
                               TO_CHAR(SYSDATE, 'dd Mon yy hh24:mi:ss'));
      rc := utl_tcp.write_line(c,
                               'From: ' || msg_from || ' <' || msg_from || '>');
      rc := utl_tcp.write_line(c, 'MIME-Version: 1.0');
      rc := utl_tcp.write_line(c, 'To: ' || to_addresses);
      rc := utl_tcp.write_line(c, 'Cc: ' || cc_addresses);
      rc := utl_tcp.write_line(c, 'Subject: ' || msg_subject);
      rc := utl_tcp.write_line(c, 'Content-Type: multipart/mixed;');
      rc := utl_tcp.write_line(c, ' boundary="-----SECBOUND"');
      rc := utl_tcp.write_line(c, '');
      rc := utl_tcp.write_line(c, '-------SECBOUND');
      rc := utl_tcp.write_line(c, 'Content-Type: text/plain');
      rc := utl_tcp.write_line(c, 'Content-Transfer-Encoding: 7bit');
      rc := utl_tcp.write_line(c, '');
      rc := utl_tcp.write_line(c, msg_text1);
      rc := utl_tcp.write_line(c, ' ');
      rc := utl_tcp.write_line(c, msg_text2);
      rc := utl_tcp.write_line(c, ' ');
      rc := utl_tcp.write_line(c, msg_text3);
      rc := utl_tcp.write_line(c,
                               msg_text4 || to_char(l_from_date, 'MON-YY') ||
                               ' to ' || to_char(l_to_date, 'MON-YY'));
      rc := utl_tcp.write_line(c, '');
      rc := utl_tcp.write_line(c, '-------SECBOUND');
      rc := utl_tcp.write_line(c, 'Content-Type: text/plain;');
      rc := utl_tcp.write_line(c, ' name="GCN_Details.csv"');
      rc := utl_tcp.write_line(c, 'Content-Transfer_Encoding: 8bit');
      rc := utl_tcp.write_line(c, 'Content-Disposition: attachment;'); --Indicates that this is an attachment.
      rc := utl_tcp.write_line(c, ' filename="GCN_Details.csv"');
      rc := utl_tcp.write_line(c, '-------SECBOUND');
      rc := utl_tcp.write_line(c, '');
      begin
    
        -- WRITE COLUMN HEADERS
        rc := utl_tcp.write_text(c, 'BRANCH' || ',' || 'ORDER NUMBER');
        rc := utl_tcp.write_line(c, ' ');
    
        for c1 in cur_select(L_FROM_DATE, L_TO_DATE) loop --You are starting to write the data
          lv_gcn := c1.gcn;
          rc     := utl_tcp.write_text(c, lv_gcn);
          rc     := utl_tcp.write_line(c, ' ');
          v_is_there_any_attachment:='Y';--Is there any data ?
        end loop;
    
      exception
        when others then
          dbms_output.put_line('error : ' || sqlerrm);
          rc := utl_tcp.write_text(c, 'Data Error');
      end;
      If v_is_there_any_attachment ='Y' THEN
         rc := utl_tcp.write_line(c, '');
         rc := utl_tcp.write_line(c, '.');
         rc := utl_tcp.write_line(c, '-------SECBOUND');
      --end loop;
      END If;
      rc := utl_tcp.write_line(c, 'QUIT');
      dbms_output.put_line(utl_tcp.get_line(c, TRUE));
      utl_tcp.close_connection(c);
    EXCEPTION
      when others then
        utl_tcp.close_connection(c);
        raise_application_error(-20000, SQLERRM);
    END GCN_ORDER;
    
  • Sending E-Mail with an attachment using PL/SQL

    Hello

    I am trying to send an E-Mail with an attachment using pl/sql on Oracle 9i.
    I found the code from the link below.
    http://www.orafaq.com/wiki/Send_mail_from_PL/SQL
    but the attachment it sends is defined in the pl/sql block.
    I want to attach a file in a different location. How can I do this?

    Thanks in advance

    If the attachment is also on the server (it must be on the server), you can load into a BLOB and which attach to your e-mail (you will need to create an Oracle Directory that points to the file to be attached).

    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:255615160805 #68529763836665
    This thread is big enough, a ctrl + f there might give you some clues.

    Currently I do not have the mail api available on here, but I still have it on a "test/playground DB", so I'll take a look later, when I have time and place.

  • YAHOOMAIL. with Firefox / unable "attach." I tried to seal a flyer / is a jpeg file. He would not attach.

    and when I thought he had tied, and I pressed 'send', it has not sent / he just put the email in the project folder. When I used Chrome, NO problems - the attached attachment and I sent the e-mail. I waited and tried again, same thing happened. I checked the recommendations of prior assistance of Mozilla and I have these settings he suggested if Firefox is having problems with yahoomail.

    so you know, I'm running an old Compaq V6000 with XP Pro now

    Hello

    It seems that this problem occurs for the cache and cookies. Can you please try to delete cache and cookies?
    Note: This will be you temporarily disconnect all sites, you're connected to.
    To clear the cache and cookies to do the following:

    1. Click the menu button

      , choose historic, then "Claire recent history...". ».

    2. Under "Time range to clear", select "all".
    3. Now, click the arrow next to details to toggle the active details list.
    4. In the list of details, see the Cache and Cookies and uncheck everything.
    5. Now click on the "Clear now" button

    More information can be found in the article remove the navigation, search and download history on Firefox .

    This solve your problems? Please report to us!

    Thank you.

  • How to answer an e-mail sent as attachment

    I just got an email (an email to) asking that I have send an email previously sent (e-mail B).  I would like to meet A email and as part of my answer, I want to forward e-mail B as an attachment to the email A.  Could someone explain to me how this seemingly simple task can be done using Apple's Mail?

    Very much appreciated.

    You can transfer the B email with a reference tone.

    You can copy and paste the email B in your current email A

  • Sending e-mail with an attachment of Office 2010

    Why am I unable to send an Excel of Office 2010 file directly as an attachment? It works OK if I send the file in My Documents and then attach it to an e-mail. I use Outlook 2010

    It is a Windows XP forum.

    Your question is a Microsoft Office one.

    May be better to use the Forums of Microsoft Office.

    You can also describe exactly what you see.

    Is Microsoft Outlook your default mail client?

    In Excel, you click on "Save & Send" and send this way (attempt anyway)?

    What happening exactly / are you doing - step by step and all the messages you get verbatim?

  • Analyzes E-mails with no attachment - HP Envy 120

    After you have scanned a document and sent to my e-mail address, what happens with the not scanned attachment. How can I fix this. Sender address is eprintcenterhp.com

    A new HP printer software update comes through via the Mac. With the download, the HP Envy 120 is now sending E-mail scans with the attachment. The problem is resolved.

  • Windows 7 Live Mail problem w / "Attach a file" / "Send to mail recipient of the message": go to Firefox Mozzilla vs Windows Live Mail email e-mail

    Salvation and tks for your services, as it has been a LONG search by the 84 yo non-tek's problem solved!

    For apprx 1 month when I passed ATT.net as my Internet Server w/ATT email Mozzila Firefox main mail server, Time Warner became my service Iternet allowing me to continue w/Gtek.biz in mail server.

    PROBLEM: Each Document of widows, I chose - via "Attach a file" - more went to my Windows Live Mail/top Mail CONTAINER (new e-mail), but went to the former Att/Firefox-Thunderbird-Mozzilla new e-mail!

    FYI: I got Mozzzila Firefox - Thunderbird REMOVED from my computer. AND get this message:

    "There are no associated messaging program to perform the requested operation."

    "PLEASE INSTALL AN E-MAIL PROGRAM OR IF IT IS ALREADY INSTALLED, CREATE AN ASSOCIATION IN THE DEFAULT PROGRAM CONTROL PANEL. (FYI, I need services from my local tech PC using 'Remote Control' to do this reinstall?)  TKS for your great patience with main operatr of mind! Herb Janecek (361)232-5270 / * address email is removed from the privacy *, Corpus Christi, Texas

    Hi Betty,.

    If I understand correctly your problem solved by upgrading your system to Windows 10. Correct me if I'm wrong. If you're new to Windows 10 the links provided below will help you to better understand and help them work with Windows 10.

    Get Started with Windows 10

    Need help with Windows 10?

    Keep us.

    Kind regards

  • E-mail security. Attachment scanning of content filter

    Hi, is there a document where you could see what type of files can Email Security appliance look for a string? I would like to create an outgoing content filter that looks like "inside" the attachment of a string. I think that you can do in office and PDF documents but I'm not completely sure and also I do not know in what other types of files, you can search.

    The final step should be to find a string, 'Confidential' for example and if the mail is not encrypted drop. If there are 'confidential', string email should be encrypted, and this word might be inside the Word document.

    Is first possible?

    Thanks in advance

    Samuel

    There are almost 400 + file types that ESA can recognize and analyze. It is possible to find these strings in Office and PDF documents you have requested among other things.

    When you have found the string, you can take a number of actions as quarantine, encrypt, drop, etc. If you want an analysis above consider using the integration of RSA Data Loss Prevention in the DRY for detection more precise.

  • Cannot forward the e-mail with an attachment

    I use att.net as my email, I can send emails fine and can reply and forward emails (which have no binding) but I can't send an email that has an attachment)

    It keeps saying ' att.net Mail found the original e-mail, but met with some display problems. Please try again later. "

    It works now, not sure what happened unless ATT knew the problem on Chrome and the fixed

  • I want to send an e-mail message and attach photos how

    Explain in simple terms how to write an E-Mail and attach 2 or 3 pictures and sed it?

    It depends on which program/email service provider you use for your email. Please tell us for more specific instructions.

    Basically:

    1. create a new email.

    2. type the message.

    3. type the subject.

    4 find a button that says something like attachments or attach files. He will often have a paperclip icon.

    5. click on attachments (or similar) button then go to your photos and select them (then click OK/Insert/attach depending on your e-mail program).

    6 type / select e-mail to the addresses of the recipients in the of: field.

    7. click on send.

    Images may take a few minutes to download so be patient. Some e-mail providers set a maximum size on photos - say ~ 25MB total/e-mail (this varies depending on the mail provider).

  • How to create a job that e-mail with csv attached.

    Hello

    Could all help with that.

    I have a trigger that inserts (after changing the DLL) on the diagram at track_t, (table).

    Now, I put a job to convert track_t (table) to CSV data, daily...

    Then, I need to define a job to send the mail on a daily basis with the attached csv.

    set - trigger, procedue to send mail. But how to create a job to send a mail with csv generated

    8ff4363d-844d-49fd-87D1-2125143d11a8 wrote:

    Hello

    Could all help with that.

    I have a trigger that inserts (after changing the DLL) on the diagram at track_t, (table).

    Now, I put a job to convert track_t (table) to CSV data, daily...

    Then, I need to define a job to send the mail on a daily basis with the attached csv.

    set - trigger, procedue to send mail. But how to create a job to send a mail with csv generated

    DBMS_SCHEDULER

    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25788/d_sched.htm#ARPLS72235

Maybe you are looking for

  • I have two libraries in photo how can I remove a

    Hello I have two photo libraries, I built two by accident. I need to get rid of one, how to remove it? When I drag the to the trash, the progress bar just hangs and nothing happens. Thank you

  • System recovery format a drive?

    When you do a restore of the system from the recovery partition - it formats the drive before copying the files or copy it just above then? -If i not I thought formatting the drive me beforehard. (The os partition)

  • Remiain data in buffer with event VISA

    Hello I'm trying to use the VISA event to read data from a serial port. I created a simple VI to test this (see attachment). 1. I initialize the port and the event 2. in a while loop: whenever I press a button 'help' of the order is sent to my Board

  • Creation of an existing group PS4000 and PS6010 - just checked.

    Hello We have two existing EQL units that have never actually placed in a group. Successfully completed their thing during the last five years or so, but now it's time for an upgrade. I have a couple PS6510Es ready to get into the data center. The fi

  • Installation of the 2nd HDD in Optiplex 380

    Trying to install my drive of secondary data to another computer in an Optiplex 380. What I have learned and done so far are to install the drive, enter the BIOS to enable the SATA 2 port, and then restart. Windows recognizes the drive at startup and