Encoding file attached using UTL_SMTP.

Hello group,

I was asked to use UTL_SMTP to send a simple file in a version of oracle 9i on Windows database, I get the attachment to my mail, but the problem is that when we open the file, the text shows junk characters, or only numbers...

What controls for setting the text encoding or what I'm doing wrong.

Thanks in advance.
declare
  l_maicon utl_smtp.connection;
  l_boundary    VARCHAR2(50) := '----=*#abc1234321cba#*=';
---
  v_archivo bfile:=NULL;
  v_texto varchar(4000);
  v_adjunto raw(32767);
begin
  l_maicon :=utl_smtp.open_connection('mail.anyuser.com');
  utl_smtp.helo(l_maicon,'hostname');
  utl_smtp.mail(l_maicon,'[email protected]');
  utl_smtp.rcpt(l_maicon,'[email protected]');

  UTL_SMTP.open_data(l_maicon);
  
  UTL_SMTP.write_data(l_maicon, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'To: ' || '[email protected]' || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'From: ' || '[email protected]' || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'Subject: ' || 'test email oracle 9i con anexado'|| UTL_TCP.crlf);
--  UTL_SMTP.write_data(l_maicon, 'Reply-To: ' || p_from || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'MIME-Version: 1.0' || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'Content-Type: multipart/mixed; boundary="' || l_boundary || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
  
  UTL_SMTP.write_data(l_maicon, '--' || l_boundary || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'Content-Type: text/plain; charset="iso-8859-1"' || UTL_TCP.crlf || UTL_TCP.crlf);

  UTL_SMTP.write_data(l_maicon, 'test de email oracle 9i, pf no tomar en cuenta');
  UTL_SMTP.write_data(l_maicon, UTL_TCP.crlf || UTL_TCP.crlf);


  UTL_SMTP.write_data(l_maicon, '--' || l_boundary || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'Content-Type: ' || 'text/plain; charset="iso-8859-1"' || '; name="' || 'switch.sql' || '"' || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'Content-Transfer-Encoding: base64' || UTL_TCP.crlf);
  UTL_SMTP.write_data(l_maicon, 'Content-Disposition: attachment; filename="' || 'switch.sql' || '"' || UTL_TCP.crlf || UTL_TCP.crlf);

  v_archivo:=bfilename('BDUMP', 'switch.sql');
  dbms_lob.fileopen(v_archivo, dbms_lob.file_readonly);
  v_adjunto:=dbms_lob.substr(v_archivo);
--  v_texto:=dbms_lob.substr(v_archivo);
  dbms_lob.close(v_archivo);

  UTL_SMTP.write_data(l_maicon, v_adjunto);

  UTL_SMTP.write_data(l_maicon, UTL_TCP.crlf || UTL_TCP.crlf);
  
  UTL_SMTP.write_data(l_maicon, '--' || l_boundary || '--' || UTL_TCP.crlf);
  UTL_SMTP.close_data(l_maicon);

  utl_smtp.quit(l_maicon);
end;
/

You informed of your recipient, you put the file encoded as an attachment

 UTL_SMTP.write_data(l_maicon, 'Content-Transfer-Encoding: base64' || UTL_TCP.crlf); 

but you put lob not encoded file

 v_archivo:=bfilename('BDUMP', 'switch.sql');
  dbms_lob.fileopen(v_archivo, dbms_lob.file_readonly);
  v_adjunto:=dbms_lob.substr(v_archivo);
--  v_texto:=dbms_lob.substr(v_archivo);
  dbms_lob.close(v_archivo);

Your recipient is trying to not decode not encoded the file and spit out.

You must code them your attachment with UTL_ENCODE.base64_encode before sending an email.

Tags: Database

Similar Questions

  • 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

  • How to send a large file attachment using iCloud mail

    I try to send an email with an attachment. The file size is 29.8 and message indicates the size of the file is greater than the limit of 28.5.  I can't find the mailbox. How can I find box mailbox?  Is there anything else I can do?

    Are you connect to your iCloud account, when you try to send the attachment of t? So little should be automatic:

    Send large attachments by using the mailbox

    You can use the mailbox to send files that exceed the maximum size allowed by your ISP email account . Mailbox post large attachments to iCloud, where they are encrypted and stored for 30 days.

    • If you have an iCloud account and you're connected to iCloud when you click on send, mail will automatically send the attachments using the mailbox. Mail attachments do not count against your storage iCloud.
    • If you have not an iCloud account, or if you are not connected, Mail asking you if you want to use the mailbox (always use send, select "no longer request for this account").

    If a recipient using Mail in OS X Yosemite or later, attachments are included with your message. For the other beneficiaries, your message includes links to download attachments and their expiry date.

    You can activate the mailbox or disable an account. Choose Mail > Preferences, click accounts, select the account, click Advanced, and then select or deselect the option "send large attachments with box.

  • Why attached used pps files opened after the latest Automatic update of the ie8?

    Attn: Microsoft Brainiacs; IT IS VERY ANNOYING!
    attached pps files won't open if clicked in outlook express/ie8 after automatic update more recent.
    When I try to open files pps attached, this is what I get.
    a box with a red x will appear and this is the message;
    "this file has no program associated with it for performing this action.
    Create an association in the FOLDER OPTIONS Control Panel."
     
    Before the automatic update, this function worked fine.
    Also, the association for pps files is still there in the Folder Options Control Panel.
    and more if I save the pps file attached somewhere / anywhere and then click on it, it opens fine.
    .. This failure to launch opening pps files attached, that happened after the latest Automatic update,
    .. just one more why people hate automatic updates or updates of any kind.
    like the previous functions of work suddenly and inexplicapbly no longer work after the update took place!
    So what's the cure for this annoying problem?
    E-mail address is removed from the privacy *.

    I have XP SP2 and PPS PPViewer 7 NOT VISTA
     
    That's what my watch key

    HKEY_CLASSES_ROOT\.pps\PowerPoint.slideshow.8
     
    not HKEY_CLASSES_ROOT\PowerPointViewer.SlideShow.11\shell\Show
     
    I also tried renaming it as shown below, and it will not let me NOW WHAT?
     
    where can I find IE7 to down load? all I see on the web and the site of MS is downloads for IE8
     
    Hi wwollmuth,

    I'm not sure from your post what version of Vista you are using or if you use the Viewer for Powerpoint as opposed to full Powerpoint (2003 or 2007?), but I can try to give you help to fix.

    For. Files PPS (Microsoft PowerPoint slide show)

    • Click Start, type regedit.exe and press ENTER
    • Navigate to the following branch:

    HKEY_CLASSES_ROOT\PowerPointViewer.slideshow.11\shell\Show

    • Click view , and then click Rename
    • Type the word Open so that the show is replaced with the Open command
    • If you have the PowerPoint 2007 Viewer is installed, repeat the steps above in this key, thus:

    HKEY_CLASSES_ROOT\PowerPointViewer.slideshow.12\shell\Show

    • After having changed from Show to Open, close the Registry Editor window.

    For. PPT (Microsoft PowerPoint Presentation) files

    • Click Start, type regedit.exe and press ENTER
    • Navigate to the following branch:

    HKEY_CLASSES_ROOT\PowerPointViewer.show.11\shell\Show

    • Click view , and then click Rename
    • Type the word Open so that the show is replaced with the Open command
    • If you have the PowerPoint 2007 Viewer is installed, repeat the steps above in this key, thus:

    HKEY_CLASSES_ROOT\PowerPointViewer.show.12\shell\Show

    I'm not sure from your post what version of Vista you are using or if you use the Viewer for Powerpoint as opposed to full Powerpoint (2003 or 2007?), but I can try to give you help to fix.

    For. Files PPS (Microsoft PowerPoint slide show)

    • Click Start, type regedit.exe and press ENTER
    • Navigate to the following branch:

    HKEY_CLASSES_ROOT\PowerPointViewer.slideshow.11\shell\Show

    • Click view , and then click Rename
    • Type the word Open so that the show is replaced with the Open command
    • If you have the PowerPoint 2007 Viewer is installed, repeat the steps above in this key, thus:

    HKEY_CLASSES_ROOT\PowerPointViewer.slideshow.12\shell\Show

    • After having changed from Show to Open, close the Registry Editor window.

    For. PPT (Microsoft PowerPoint Presentation) files

    • Click Start, type regedit.exe and press ENTER
    • Navigate to the following branch:

    HKEY_CLASSES_ROOT\PowerPointViewer.show.11\shell\Show

    • Click view , and then click Rename
    • Type the word Open so that the show is replaced with the Open command
    • If you have the PowerPoint 2007 Viewer is installed, repeat the steps above in this key, thus:

    HKEY_CLASSES_ROOT\PowerPointViewer.show.12\shell\Show

    Dave D
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    Hi wwollmuth,

    I'm not sure from your post what version of Vista you are using or if you use the Viewer for Powerpoint as opposed to full Powerpoint (2003 or 2007?), but I can try to give you help to fix.

    For. Files PPS (Microsoft PowerPoint slide show)

    • Click Start, type regedit.exe and press ENTER
    • Navigate to the following branch:

    HKEY_CLASSES_ROOT\PowerPointViewer.slideshow.11\shell\Show

    • Click view , and then click Rename
    • Type the word Open so that the show is replaced with the Open command
    • If you have the PowerPoint 2007 Viewer is installed, repeat the steps above in this key, thus:

    HKEY_CLASSES_ROOT\PowerPointViewer.slideshow.12\shell\Show

    • After having changed from Show to Open, close the Registry Editor window.

    For. PPT (Microsoft PowerPoint Presentation) files

    • Click Start, type regedit.exe and press ENTER
    • Navigate to the following branch:

    HKEY_CLASSES_ROOT\PowerPointViewer.show.11\shell\Show

    • Click view , and then click Rename
    • Type the word Open so that the show is replaced with the Open command
    • If you have the PowerPoint 2007 Viewer is installed, repeat the steps above in this key, thus:

    HKEY_CLASSES_ROOT\PowerPointViewer.show.12\shell\Show

    Dave D
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Cannot open the attachment in yahoo... says the file is used by another program... trying to open Microsoft Picture It!

    Cannot open the attachment in yahoo... says the file is used by another program... trying to open Microsoft Picture It!

    Minnie3,

    You may need to change the default program that opens the images.
    Hope that helps!

    Cody C
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • PDF attached used open - problem just started

    This week, a PDF file attached to an e-mail gives error message "error downloading, the download could not be saved, because an unknown error occurred - try again. On the download window, the message is "failed, resource mailbox. Yet, I can save the file to the desktop and open it.

    This problem just started happening.

    Help would be appreciated... Thank you in advace

    Perry B

    Problem solved, kind of...

    I went and changed the options of attachments to use my own Adobe Reader instead of the (in Thunderbird) option. Now by clicking on the attachment in Thunderbird works fine. There must be something wrong with the drive of Thunderbird.

  • unknown error in opening pdf files attached

    Vista operating system; Adobe Reader is selected to use to open the pdf files, but is not used in Thunderbird. If saved to the desktop, the files normally.

    How to load Thunderbird to use Adobe Reader to open .pdf files.

    Right-click on the attachment and choose 'open '.
    a new window opens
    Choose 'Open with' and select 'Adobe Reader' from the drop-down list drop-down list.
    Select this option to ' automatically for files like this in the future "
    Click OK

    It will now be shown here:
    Tools > Options > Annexes > Incoming tab
    or
    3 menu bar icon > Options > Options > spare parts > Incoming tab

    in Content Type, it will display ' document to adobe acrobat (.pdf)
    and to the right, it should show the 'Action' to use the adobe reader software.

    If you want Thunderbird always ask where to save the files, you can select this option or choose where to save files, and use the Browse button to search for a folder.
    Click OK

  • Open the file by using wildcard characters

    Anyone know how to open a file by using wildcard characters in the name.

    For example, a certain folder will contain a number of files, with the name built as follows:

    CALDB_ then a serial number with 6 digits and then 14 characters, which could be ANYTHING.  so it might look like this

    CALDB_123456_33KA1234567890.txt

    or

    CALDB_123457_33KA1234567890.txt

    The key part of the file name is the serial number of 6 digits that is unique and the CALDB_ which is always the same.

    I would like to use a command file with the name of the file as something like CALDB_123456_*.txt, but it doesn't seem to work.

    Can anyone help?

    Thank you

    Hi Dylan,.

    Along our forum, I searched and found a similar question for the use of wildcards in file selection. An active user (unclebump) has responded to this request with a VI, with which you can select a folder on your computer that is scanned for some files. I adjusted this VI to select CALDB_ files *. You will find this file (zipped), including my attached test folder.

    Maybe it will be useful for your application.

    Best regards

    Peter Schutte

  • File compressed using a codec that is not supported by the player

    I use Director of windows. I can't import audio my cd or i tunes = reason "file compressed using a codec that is not supported by the player", how to fix this? What are the options?

    Thanks for your help.

    Hello

    To check the file type, follow the steps below:

    (a) access the location where the file is stored

    (b) right click on the file

    (c) click Properties in the drop-down list

    (d) under the general tab check the listed file type.

    File types supported by Windows Media Player 12 and Windows Media Center

    http://Windows.Microsoft.com/en-us/Windows-Vista/file-types-supported-by-Windows-Media-Center

    For more information about iTunes contact Apple support in the below given link.

    http://www.Apple.com/support/iTunes/

    Windows Media Player cannot play the file. The player might not support the file type or does not support the codec used to compress the file. You may encounter this error message for the following reasons:

    1. the file type is supported by the drive, but the file was compressed by using a codec that is not supported by the player.

    2. the file might have been encoded with a codec that is not supported by Windows Media Player. If this is the case, Windows Media Player cannot play the file.

    Hope the helps of information. Please post back and we do know.

  • "File in use: the action cannot be completed because the folder or file is open in another program" when you rename a folder with Thumbs.db inside

    I looked at many similar responses but no nails really our problem.

    On a Windows client 7 to rename a folder that is located on a file server running SBS 2003.  When you try to rename a file that has a file "thumbs.db" in there he throws the message "file in use: the action cannot be completed because the folder or file is open in another program. and then it won't let you rename it.  This isn't a problem with other XP clients attached to the same server.  We have reduced to folders that have this file thumbs.db in through trial and error.

    It will work when you show just the icons which is unacceptable.  However, you can rename a folder that is located on the customers own local disk.

    Suggestions - we can work around it, but it of inturupting workflow and is old fashioned all simply boring.

    Thank you

    Happy to provide system info, anyone needs

    Hi JustinEllery,

    The question you posted would be better suited to the TechNet community. Please visit the link below to find a community that will provide the support you want.
    http://social.technet.Microsoft.com/forums/en-us/WindowsBackup/threads

  • I can not open/download files attached on all sites

    IM', unable to open/download attachments from various sites IE extensions of Hotmail and Centrelink. Very frustrating, even if I can do it on my other PC! I'm missing something here?

    Hello

    1. were you able to open/download the files attached successfully earlier?

    2. what happens when you try to open or download attachments?

    3. do you get any error code or error message?

    4. have you made changes on the computer before this problem?

    5 is this problem confined to specific files or all files?

    6. what browser you use to download/open the attachments?

    If you use Internet Explorer, then I you suggest to disable add-ons, then try to download and extract.

    Follow the steps to disable add-ons:

    a. open Internet Explorer

    b. press the ALT key, and then click Tools.

    c. click on Manage Add-ons.

    d. disable add-ons by clicking on them one at a time to highlight and then click Disable.

    Note: to re-enable the modules one by one and check with what add-on, you get this error message. Disable Add-ons will not cause any problem.

    If disabling add0one did not help, then it would be better to post the same question in Windows Live Hotmail forums to get help.

    http://answers.Microsoft.com/en-us/windowslive/Forum/Hotmail

    Please respond with more information so that we could help you more.

  • Try to burn DVD folder creates Movie.m2v under encoded files

    A few quirks happens after a wipe and reinstall (windows 7, PE 13.1) because something vile, I downloaded with a GoPro codec. When I try to share in disk file, select DVD, 4.7 GB, select the folder location of the active project - no record or video files appears. I looked in my computer and found a new file created in the folder of encrypted files in the active project, under the PREL / sequence 01/DVD - a movie.m2v this is the full video without audio. On a repeated attempt to burn a DVD to a folder, PE claims it's done, but nothing is nowhere. I can burn a DVD folder using PE8 that I keep active because I sometimes use an old video camera. Any ideas or something always wacky with the computer?

    CanoeRat

    Thanks for the reply.

    Profile ' burn to, followed by combustion complete message successful and no product found burning ' was seen before with this program.

    The typical solution is to remove the check mark next to the preference "Use hardware acceleration (works on Intel HD Graphics 2000 and higher)" If your computer does not use one of these cards. If your Device Manager/adapters/nickname of map just shows Intel HD Graphics you are not eligible take advantage of this preference.

    And those who do not have an eligible card and this enabled preference run into the problem you describe. So, if you don't already, please check the exact card video/graphics card using your computer. In all cases, please look at the burn to with and without this preference turned off.

    What did you find in the folder of encoded files and record DVD sounds great - Movie.m2v (which is the export without sound) and Movie.ac3 (which is the audio portion of export).

    After retrieving your computer, did you go through the usual exercises...

    Latest version of QuickTime installed

    Programs running as administrator

    RTA

  • Download file button or download the file by using a form

    Hi I need a file upload button or a file downloaded using a form, what plan I have to do?

    You can go with web marketing plan, if you are referring to BC accommodation to access CRM with cases submitted by users with the attachment of the form.

    Thank you

    Sanjit

  • Closing of file attachment Panel

    Tried this:

    hideMenuItem (ShowHideSubMenu (['Navigation', (oChildren: ["ShowHideFileAttachment"])])]);

    I get this:

    SyntaxError: missing) in parentheses

    1:Console:exec

    It seems to be a nested, reference table to do this.

    You try to hide the menu bar item or close the navigation panel.

    hideMenuItem

    app.hideMenuItem ("ShowHideFileAttachment"); delete attachments in the nav pane view options.

    Why not use the method execMenuItem of the app object and specify the name of the menu item to run JS?

    app.execMenuItem ("ShowHideFileAttachment"); Toggle the nav file attachment Panel;

    There are a wealth of information in the Acrobat JS API reference manual.

  • Download files attached with a button

    Hi all

    I am creating the following: a button that initiates a download, only the downloadable files are not on a web server, but they are attached to the pdf. Is this possible?

    I don't want the user to have to download the attachment manually, but I want to lighten the process for their use of the hollow of a button.

    So basically, I need the same functionality as the web download, but I need to link to a file attached internally.

    Is this possible?

    Yes, it is possible by using following command.

    this.exportDataObject ("MyAttachment.pdf");

    I also created a template for you, see the attachment.

Maybe you are looking for

  • Tecra A4 cannot read recovery disks

    I am trying to rebuild my Tecra A4 software.When I bought it in 2005, I did the recovery discs as recommended by using Sony CDR 700 MB disks. Now the CD-DVD do not read them.The discs are good, that I've explored them before (a while back), I can Exp

  • iTunes backup triggered a backup to iCloud?

    Hello. While safeguarding my iPad on my Mac, I noticed that it ALSO supported it until iCloud. I always check the local time to the top and noted that the iCloud back until a marked like a minute before that I had done on my Mac. How is - it is possi

  • Qosmio G20 - left cooling fan turns noise at startup

    After installing the BIOS ver 1.3, when the laptop computer powers until the cooling fan left running so strong, I thought it might burn or smoke.After windows has completely turn on the fan turns off after about 5 minutes. If I restart the pc, the f

  • Satellite M100: Slow down data transfer WiFi with WiFi Intel 3945ABG card

    Just jumped a nine M100 XP upgraded to SP2 on our network and have problems with Wifi. Everything works, just really slowly. Takes about 5 minutes to drag an MP3 off file server, download web pages at the speed of a dial-up modem and my beard length

  • Replacement motherboard for HP A6030N?

    Hi all I am using A6030N desktop for five years, had to let it stay on for almost two years. But this desktop computer little worked fantastically til last week. Its motherboard might have been fried, but I'm not sure. Here are the symptoms. (1) when