Problem in JA text Download into file

When text file is downloaded from ECC ,  the Japanese character takes more spaces in the file , comparing to Earlier version 4.6 C ( NUS) .
        For that other characters left to it  displaces from its defined position
thanks
bobby

When text file is downloaded from ECC ,  the Japanese character takes more spaces in the file , comparing to Earlier version 4.6 C ( NUS) .
        For that other characters left to it  displaces from its defined position
thanks
bobby

Similar Messages

  • Problems while uploading text documents into Unicode Database

    I just upgraded our database from 9iR1 to 9iR2 (9.2.0.1.0). The server
    character set is AL32UTF8. Now I'm facing a problem when
    uploading text documents into the database via a web frontend.
    I use the upload table defined for the PL/SQL Database Access Descriptor:
    create table TB_UPLOAD (
    NAME VARCHAR2(256) not null,
    MIME_TYPE VARCHAR2(128),
    DOC_SIZE NUMBER,
    DAD_CHARSET VARCHAR2(128),
    LAST_UPDATED DATE,
    CONTENT_TYPE VARCHAR2(128),
    BLOB_CONTENT BLOB);
    After uploading a text document containing the two words "hallo welt",
    the following statement returns not "hallo welt", but "68616C6C6F2077656C74":
    declare
    b_loc blob;
    v_amount integer := 100;
    v_buffer varchar2(100);
    v_offset integer := 1;
    begin
    select blob_content into b_loc from tb_upload where name like 'mydoc.txt';
    dbms_lob.read(b_loc, v_amount, v_offset, v_buffer);
    htp.prn(v_buffer);
    end;
    What is this? I studied the documentation, but didn't found a solution.
    When trying to use Oracle's built-in procedure wpg_docload.download_file,
    the content is shown the way it should be. Unfortunately, I can't use
    wpg_docload.download_file in order to copy the BLOB content to another table.
    Any hints would be appreciated!
    Thanks so much in advance!
    Roman
    E-Mail: [email protected]

    Hi Roman,
    the upload uses a BLOB (Binary Lob). Your Document is
    stored as is in the binary representation. If you
    use dbms_lob.read on a blob and your buffer is a varchar2 the binary representation is not translated!!!
    use a raw for the buffer and utl_raw.cast_to_varchar2
    to do the conversion to varchar.
    try this
    Procedure SHOW_DOC(p_name doc_test.name%TYPE)
    IS
    v_len number;
    v_mime_type tb_upload.mime_type%TYPE;
    v_offset integer := 1;
    v_Buf_size integer := 32767;
    v_buf raw(32767);
    v_blob blob;
    v_Doc_name varchar2(1000);
    BEGIN
    v_doc_name := url_Decode(p_name);
    select mime_type,doc_size,blob_content
    into v_mime_Type,v_len,v_blob
    from tb_upload
    where name = v_doc_name;
    OWA_UTIL.MIME_HEADER(v_Mime_Type);
    begin
    LOOP
    DBMS_LOB.READ(v_blob,v_buf_size,v_offset,v_buf);
    HTP.PRN(UTL_RAW.CAST_TO_VARCHAR2(v_buf));
    v_offset := v_offset + v_buf_size;
    END LOOP;
    exception
    when no_data_found then
    null;
    end;
    END;
    HTH
    detlev

  • Problems while uploading text documents into Database

    I just upgraded our database from 9iR1 to 9iR2 (9.2.0.1.0). The server
    character set is AL32UTF8. Now I'm facing a problem when
    uploading text documents into the database via a web frontend.
    I use the upload table defined for the PL/SQL Database Access Descriptor:
    create table TB_UPLOAD (
    NAME VARCHAR2(256) not null,
    MIME_TYPE VARCHAR2(128),
    DOC_SIZE NUMBER,
    DAD_CHARSET VARCHAR2(128),
    LAST_UPDATED DATE,
    CONTENT_TYPE VARCHAR2(128),
    BLOB_CONTENT BLOB);
    After uploading a text document containing the two words "hallo welt",
    the following statement returns not "hallo welt", but "68616C6C6F2077656C74":
    declare
    b_loc blob;
    v_amount integer := 100;
    v_buffer varchar2(100);
    v_offset integer := 1;
    begin
    select blob_content into b_loc from tb_upload where name like 'mydoc.txt';
    dbms_lob.read(b_loc, v_amount, v_offset, v_buffer);
    htp.prn(v_buffer);
    end;
    What is this? I studied the documentation, but didn't found a solution.
    When trying to use Oracle's built-in procedure wpg_docload.download_file,
    the content is shown the way it should be. Unfortunately, I can't use
    wpg_docload.download_file in order to copy the BLOB content to another table.
    Any hints would be appreciated!
    Thanks so much in advance!
    Roman
    E-Mail: [email protected]

    Hi Roman,
    the upload uses a BLOB (Binary Lob). Your Document is
    stored as is in the binary representation. If you
    use dbms_lob.read on a blob and your buffer is a varchar2 the binary representation is not translated!!!
    use a raw for the buffer and utl_raw.cast_to_varchar2
    to do the conversion to varchar.
    try this
    Procedure SHOW_DOC(p_name doc_test.name%TYPE)
    IS
    v_len number;
    v_mime_type tb_upload.mime_type%TYPE;
    v_offset integer := 1;
    v_Buf_size integer := 32767;
    v_buf raw(32767);
    v_blob blob;
    v_Doc_name varchar2(1000);
    BEGIN
    v_doc_name := url_Decode(p_name);
    select mime_type,doc_size,blob_content
    into v_mime_Type,v_len,v_blob
    from tb_upload
    where name = v_doc_name;
    OWA_UTIL.MIME_HEADER(v_Mime_Type);
    begin
    LOOP
    DBMS_LOB.READ(v_blob,v_buf_size,v_offset,v_buf);
    HTP.PRN(UTL_RAW.CAST_TO_VARCHAR2(v_buf));
    v_offset := v_offset + v_buf_size;
    END LOOP;
    exception
    when no_data_found then
    null;
    end;
    END;
    HTH
    detlev

  • Problem with reading text from .DOC files through java and POI

    I have used a jar file "poi-scratchpad-3.2-FINAL-20081019.jar" and "poi-3.2-FINAL.jar" to read text from a .DOC file. I used the "getParagraphText()" function of the class "org.apache.poi.hwpf.extractor.WordExtractor" to get the text.
    I am able to get the text in the .DOC file but along with that i am getting the following messages/warnings
    Current policy properties
    *     thread.thread_num_limited: true*
    *     file.write.state: disabled*
    *     net.connect_ex_dom_list:*
    *     mmc.sess_cab_act.block_unsigned: false*
    *     mmc.sess_cab_act.action: validate*
    *     mmc.sess_pe_act.block_blacklisted: false*
    *     mmc.sess_pe_act.block_invalid: true*
    *     jscan.sess_applet_act.stub_out_blocked_applet: true*
    *     file.destructive.in_list:*
    *     jscan.sess_applet_act.block_all: false*
    *     file.write.in_list:*
    *     file.nondestructive.in_list:*
    *     window.num_limited: true*
    *     file.read.state: disabled*
    *     jscan.session.origin_uri: http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/poi/poi/3.2-FINAL/poi-3.2-FINAL.jar*
    *     file.nondestructive.state: disabled*
    *     jscan.session.user_ipaddr: 10.136.64.153*
    *     net.connect_other: false*
    *     thread.thread_num_max: 8*
    *     file.destructive.ex_list:*
    *     file.nondestructive.ex_list:*
    *     file.write.ex_list:*
    *     jscan.sess_applet_act.sig_invalid: block*
    *     file.read.in_list:*
    *     mmc.sess_cab_act.block_invalid: true*
    *     jscan.session.policyname: TU1DIERlZmF1bHQgUG9saWN5*
    *     mmc.sess_pe_act.action: validate*
    *     thread.threadgroup_create: false*
    *     net.connect_in_dom_list:*
    *     net.bind_enable: false*
    *     jscan.sess_applet_act.sig_trusted: pass*
    *     jscan.session.user_name: 10.166.64.201*
    *     jscan.session.user_hostname:*
    *     file.read.ex_list:*
    *     jscan.sess_applet_act.sig_blacklisted: block*
    *     jscan.session.daemon_protocol: http*
    *     net.connect_src: true*
    *     jscan.sess_applet_act.unsigned: instrument*
    *     mmc.sess_pe_act.block_unsigned: false*
    *     file.destructive.state: disabled*
    *     mmc.sess_cab_act.block_blacklisted: true*
    *     window.num_max: 5*
    Below the above messages/warnings the data is getting printed. Only the text part of the data is retrieved not the fonts, styles and bullets etc.
    Can anyone explain me why I am getting above warnings and how can I remove them. Is it possible to fetch the text depending on delimiters.
    Thanks in advance,
    Tiijnar
    Edited by: tiijnar on May 21, 2009 2:45 AM

    The jar files which were used are downloaded from http://jarfinder.com. Those jars created the problem of displaying those messages on console. I downloaded APIs from apache.org and used them in my application. Now my application is running good.
    Tiijnar

  • "\n" problem while downloading the file in unix environment

    Hi folks,
    I have some problem in uploading and downloading the file in unix environment..
    This is my sample code i am using.
    File userDataFile = new File("xyz".csv");
    out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(userDataFile),"UNICODE"));
    out.write("Name"+"\t");
    out.write("Age"+"\t");
    out.write("Dob"+"\t");
    out.write("Contact"+"\n");
    for(int i=0;i<retList.size;i++){
    out.write("xyz"+"\t");
    out.write("22"+"\t");
    out.write("300399"+"\t");
    out.write("xyzzz"+"\n");
    as per this i wrote code for generating the reports. Its contains some 7k records.
    Its works in Windows environment.
    Some times in Windows environment if the contents size is 7000 records means
    i got only the headers..
    I am not getting any real records.
    I am not sure.. my client is using may be an unix environment..
    Please give the solutions for this..
    Very thanks in advance.

    Hi Jothi,
    This is not an answer to your question. It is a question for you instead. I have tried to reach you on several forums regarding the HAP_DOCUMENT documentation you have.
    Again, I am really sorry to contact you through a differente forum, but I really need the HAP_DOCUMENT documentation for my project.
    Please send me a message to [email protected]
    Thanks again.
    JULIAN CASTRO

  • Safari 6 bug (Can't download software files) - file not in download window

    Dear Everybody,
    I insatlled Safari 6 and also afterwards ML, everything works fine on my macbook air but on my 2009 (early) iMac safari 6 has a severe problem. When I download software files such as a adove flash player dmg file, The file (link) loads in the browser bar until the blue bar reaches the right (not in download window) and then when it is done the browser window is black and the file is nowhere to be found?

    Thanks Linc, that solved my problem - i had to re-download the SpeedDownload software and use the Uninstaller from there.
    Seems SD isn't compatible with ML.

  • Add Ons,Internet Explorer and downloading PDF files

    There is one website where I have an issue downloading some PDF files,I do not have problems on any other website,admin at problem website gets no other complaints.
    I use Adobe Reader 11.0.08.
    I discovered that if I DISABLE the ADD ON in Internet Explorer for Adobe Reader I can easily download all content from this problem website ,If I ENABLE ( my norml operation ) the ADD ON for Adobe Reader ,the PDF download problem appears again.
    What exactly is the ADD ON doing ? I'm under the inmpression that it ties software to a website ,so when I ask for a PDF file on a website, the website looks for Adobe Reader and the PDF file opens  ,using Adobe Reader . . . if I disable the ADD ON . . . doesn't the website NOT know how to give me the PDF file . . .  yet with the ADD ON Disabled this problem website downloads the PDF file using Adobe ( it said it is using Adobe ) with no problem ?
    Why ??
    This issue happens on two differnt PC's ??

    P.Willener,
    Thanks for response.
    The website is not public ,that I have PDF download issues using Adobe Reader 11.0.08. I have no PDF download issues on any other website with PDF files.
    On this problem site I can download some files, others I can't.
    The website admin gets no other complaints from other website users.
    I discovered that on a friends new PC ,this website works good and I can download all files, no problems.
    I have an older PC ( 2008 vintage )  ,it runs Windows 7 and IE 11 , with this PC I have PDF download issues on this website only , when the problem occurs the files stop and never complete downloading,  all recent website PDF  files download OK, older files do not ,on my PC   . . . but if I DISABLE the Adobe Reader ADD ON ,ALL files download with no problem, if I ENABLE the Adobe ADD ON ,I have problems.
    My question is . . . why ?  When the ADD ON for Adobe Reader is ENABLED what is different then when the ADD ON is DISABLED ,for Adobe Reader ?
    To me ,it seems that in the ENABLED mode ,the PDF file is opening within the IE browser ,using Adobe Reader , when the ADD ON is DISABLED the PDF file is opening in the External Reader mode , using Adobe Reader am I correct on this thinking ????
    So again why would I have issues on this one website only ?  Yes there is a work around but my normal way of operating is what the Adobe Reader ADD ON ENABLED.
    Any ideas what is going on ????  If you suspect the website any thoughts on what their problem could be ????   Again they get no other complaints ,I guess they all have new PC's.
    Al

  • PDF PROBLEMS!  Not able to download PDF files into Safari anymore?!?

    I was always able to download PDF files into Adobe Reader from the internet. I can't download them anymore...My MacBook keeps trying to load and reload the page, but never does it. I downloaded the most recent Adobe Reader 9, but this did not fix the problem. I can open PDF files I have saved, but can' t download them in Safari. Any ideas? Thanks-

    Hi Jes,
    I get an error message saying
    "The page cannot be found"
    infact when i hover the mouse over the link i am able to see the correct path and the correct correct values as follows
    schema.procedure?V=04&C=001
    but when i click on it, i get the error as above.
    i am not sure whether it is any permissions issue in linux. or is the procedure not getting executed properly at all.
    but iam able to read those pdfs and insert them into an oracle table.
    but just not able to download them back again.
    but exactly the same code and same tables etc work in windows.
    Thanks,
    Philip.

  • I have a downloaded font file for a school problem on a flash drive and I do not know how to install it into my photoshop application. Need to be walked through this as I am an older user who does not understand any of this stuff.

    I have a downloaded font file for a school problem on a flash drive and I do not know how to install it into my photoshop application. Need to be walked through this as I am an older user who does not understand any of this stuff.

    Fonts are handled by your operating system and installed through the respective System Control panel (Windows) or Fontbook (Mac). On Windows simply type "Fonts" in the search bar in the start menu and when you open the panel/ folder use File --> Add Font. On Mac the procedures are similar, you just need to find the Fontbook app in Applications:Utilities.
    Mylenium

  • Problems downloading RAW files into Lightroom 4 from a 70D camera.

    I had a canon rebel xsi and had been able to download my RAW files to lightroom 4.  However, I have recently bought a 70D and is won't download into Lightroom 4.  I have been told that Lightroom 4 doesn't support the 70D and I have to upgrade to Lightroom 5.  Is this correct, or can I get some kind of plug in?  Also if Lightroom 5 how much would it be for me to upgrade, is an "upgrade" cheaper to someone who has already got Lightroom 4.

    Once you buy LR 5 you can install any of the LR 5.x versions where LR 5.7 just came out and supports the newest cameras, like the Nikon D750 or Canon 7D Mark II along with all earlier models.
    It would be wise to download and install the LR 5.7 as a trial and make sure it works for you before buying the upgrade.  The minimum OS is 10.7 and Win 7, I think, so if you’re on XP or Vista or OS X 10.6 then you’re out of luck.
    The various version of LR are available on the Adobe Updates site:  http://www.adobe.com/downloads/updates/
    They will run in trial mode for 30 days or until you enter appropriate serial numbers.

  • Download ascii file procedure -problem as its getting binary after download

    Hi ,
    I have create a application that will download a file from a customised blob table by calling the procedure below which is as per oracle documentation:
    CREATE OR REPLACE PROCEDURE download_my_file(p_file IN NUMBER) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(400);
    Lob_loc BLOB;
    BEGIN
    SELECT b.MIME_TYPE, a.file_content, a.file_name,A.file_size
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM PCD_PROCESS_TBL a,PCD_CNTL_TBL b
    WHERE a.seq_no =p_file AND ROWNUM<2;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( NVL(v_mime,'text/plain'), FALSE,'ISO-8859-4' );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment; filename="'||SUBSTR(v_file_name,INSTR(v_file_name,'/')+1)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    END download_my_file;
    The problem is that when our process updating the blob table with .dat file from Unix the data getting inserted fine.The file is basically a ascii file. But after downloading this by mime 'text/plain' or 'application/octet' i can see its getting as a binary file and it is not carriage return by a new line.A space like character getting inserted inside each line .
    can anybody please help out of that how can we get rid of this.
    I even change the blob to clob but still the problem persists even for clob the procedure not getting called.
    Thanks in advance,
    Deba

    Sounds like the problem you're having is the mismatch between the Unix text file format and the Windows text file format.
    Specifically, Unix uses LF (line feed) to denote the end of a line, while Windows uses CRLF (two characters, carriage return and line feed).
    If you open the file in Wordpad, you should see it ok.

  • How to download mp3 files into iTunes

    This question differs from, but is related to subscribing to podcasts (http://discussions.apple.com/thread.jspa?threadID=2124335&tstart).
    Rather than subscribing to a podcast, I just want to download a story http://transmissionsfrombeyond.com/podpresstrac/web/121/0/TFB_020TheWatersOfMeribah.mp3, hosted at http://transmissionsfrombeyond.com/2009/08/transmission20. I did File->AddFileToLibrary. The dialogue box that came up was pointing at a temporary internet file folder. For the file name, I provided the URL above, but all that happened was that it downloaded 2 files into the temporary internet file folder:
    TFB020TheWatersOfMeribah[1].mp3
    TFB020TheWatersOfMeribah[2].mp3
    Why are there 2 parts?
    I tried to drag them to the iTunes Podcasts area, then try to drag it to the Podcast entry in the navigation panel along the left. Neither action resulted in the appearance of the files in iTunes.
    I tried to find where iTunes stores its files. It seems to be at "My Documents\My Music\iTunes\iTunes Music", though the folder structure in no way mirrors the 6 iTunes libraries (Music, Movies, TV Shows, Podcasts, Applications, Radio). Previously suscribed podcasts had corresponding folders in the Podcasts subfolder, but there were no subfolders for the other five libraries.
    I dragged the two mp3's into the Podcasts subfolder, but it didn't show up in iTunes. I then emulated the previously subscribed podcasts by creating a TheWatersOfMeribah folder within the Podcasts subfolder, then dragged the mp3's into that folder. Again, no joy.
    Surely, I doing something very wrong. What is the way to download mp3's into one's iPod Touch?

    Apple rejects my alias wrote:
    That's the thing, it's not a subscription podcast. It's just an mp3 file. Entering a URL as worked for subscription podcasts, but hasn't worked for the URL of the mp3 file.
    No, it won't!
    I've checked the links you provided and the problem is - they are not Podcasts (as you noted), despite what the text on the page says. In order to get these programmes into the Podcast section of iTunes, they must be downloaded _as Podcasts._ So why not get the Podcast?
    First, let's get the Podcast, then I'll explain what the problem has been.
    To actually get the Podcast; on the pages you linked, look for and click on the *iTunes/1 click* button, just above the donate button. You may get a dialogue box appear that says "This link needs to open an application. Send to:" and one of the choices should be iTunes - choose it. That step may be skipped and you may go straight to iTunes.
    When iTunes does open, it should go to the *iTunes Store/Podcasts/.../Transmissions From Beyond* page, where you can select individual episodes or subscribe to the complete series. Make your choice. The advantage of subscribing is that iTunes will then do all the work of finding new episodes, downloading them and syncing them to your iPod.
    An alternative is to search in the iTunes Store for "Transmissions From Beyond" which will find the Podcast. I've just done this, so I know it works!
    Now, what was the problem?
    On the pages you linked to, the authors keep referring to everything as a Podcast, but an mp3 file _is only a Podcast_ if it's downloaded through a "Podcast catcher", such as iTunes. This whole process then keeps track of new episodes and can also automate the removal of an episode that you have listened to if you wish. (See the options in the Podcast tab of your iPod when you connect it to iTunes.)
    If you download the mp3 files as you did, they are simply mp3 files, which will end up in the music section of your library, perhaps with a genre of Podcast. (To be a Podcast, the file needs to have a *Media Kind* of Podcast, not the genre. A Podcast can have any genre, speech, music, drama etc.)
    As you have seen, even the content providers are mis-informed about what a Podcast is.
    By the way, when you tried "entering the URL" - iTunes will only recognise valid *Podcast Feed URLs,* but not the location of an mp3 file. The enter URL option is useful if you have the *Podcast Feed* of a Podcast that is not listed in the iTunes Store.
    Finally, in fact you have downloaded the mp3 file _three times._
    The first time as TFB020TheWatersOfMeribah.mp3,
    the second time as TFB020TheWatersOfMeribah[1].mp3,
    and a third time as TFB020TheWatersOfMeribah[2].mp3
    Phil
    Message was edited by: the fiend

  • Hi, since installing mountain lion on my macbook, it wont download pdf files from internet sites, the same problem does not exist on my mac mini, i am using firefox on both macs, please help!

    Hi, since installing mountain lion on my macbook, it wont download pdf files from internet sites, the same problem does not exist on my mac mini, i am using firefox on both macs, please help!

    Back up all data.
    Quit Safari. In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Why are my photos suddenly in JPEG format when taking them from camera card to IPHOTO - which then wont let me download into a file! Help been doing this for years and something has suddenly changed in the last 2 days to my camera? or IPHOTO??

    I am away for a year and have been downloading pictures from my camera - a FUJIFILM EXR compact for the last 15 weeks into files on my mac using IPHOTO no problem...suddenly in the last 2 days I have tried to do this and IPHOTO opens the pictures ok but wont downoad them as they are now JPEG?  have I switched something over inadvertently or what - help please!!!!  many thanks

    sorry maybe Im not making my issue clear...thanks for answering anyway:
    over the last years- but 15 weeks specifically I have downloaded photos from my camers card- putting it straight into the apple mac and then opening IPHOTO then i am able to click and put the pics into my folders in IPHOTO but as of 2 days ago - the camera card went in, the pics opened BUT there is an error message which states iphoto cannot save them to file......as they are JPEGS
    I can see that others too have had this issue and there are 'answers' but I am a complete novice and cannot understand the answers given and need someone to 'hand hold me' through a step by step this is what you must do....
    so hope that now is cleared as to why there is a 'problem'
    hope you can still help me thanks for you time

  • When i try download a file from the internet it looks like its downloading then when i go to open this file it opens up in the app text edit and says it cannot open i DOS mode? Can anyne help?

    when i try to download a file from the internet it starts to download but when its finished it opens up in the app "text edit" and it says this file cannot open in DOS mode.
    Can anyone help?

    It sounds like perhaps the file doesn't have an extension that the system recognizes. Is this all files, or just one specific one, and if so, which? What is the name (and extension, if it has one) of the downloaded file? What kind of file do you *expect* it to be? (PDF, or whatever). Renaming a file with the appropriate extension can often fix that kind of problem.
    Matt

Maybe you are looking for

  • Error in Asset accounting

    Hi, ALL, For asset fiscal year close i run the t.code AJRW to close the asset fiscal year system is saying it is a background processing when i enter system gone to background processing,  here my question is how to identifiy in background process i

  • Sccm 2012 R2 Software update problem

    Hi, I have 3 ADR's ADRWin7-1, ADRWin7-2 and ADRWin7-3 All three Run on Second tuesday of the month and has common Package. All three ADR's create a new group every time they run. Schedule : ADRWin7-1 Deployes patches to Phase1 collection on 2nd Tuesd

  • Bought a used imac but its locked by old username and password

    bought a used imac but its locked by old username and password

  • I recently installed a bios update and now I can't locate the built-in webcam on my 210-2190 laptop

    After installing a recent BIOS update, the search and webcam disappeared from the start  menu. I got the search function fixed, but I can't locate the webcam sofware. How do I turn the software back on?

  • CRM 7 Business Package

    Hi Has anyone installed the Business Package for CRM 7 as yet? On SWDC there are 4 files....foundation, bp foundation, application and bp application. I have downloaded and unzipped these but none of them are simple SCA files that can be loaded into