A question about correct SEU in Virtex4 LX25 FPGA

I have a problem when I scrube the DSP, IOB, CLK, CLB using the data stored in the Flash to correct the SEU in Virtex4 LX25 FPGA. This is my flow chart:
step1: read the state register to verify the state register
step2:  read the control register to verify the control register
step3:  write a 32bit data to FAR register and read FAR register to virify the FAR register
step4:  scrube the DSP, IOB, CLK, CLB logic in the Virtex4 LX25 FPGA using the data stored in the Flash(I shield the LUT RAM and SRL16).
Problem: when the step4 is done, if I immediately implement the step1 the scrube programe can influence the CLB logic. But when the step4 is done, if I delay 0.1s to implement the step1 the scrube programe has no influence on CLB logic.
Is this means that I should wait a minute when I begin the next scrube process? Thank you in advance. 
 

Hi Lesea, Virtex4 is not supported by Soft Error Mitigation (SEM) Core, and I need to protect the Virtex4 LX25 FPGA by simple scrubbing. The configuration management engine I designed is the same as that in Correcting Single-Event Upsets in Virtex-4 FPGA Configuration Memory. I also do the fault injection experiment, and the configuration management engine can correct the faults in the Virtex4 LX25 FPGA.
On my board: digital signal A---->encode---->D/A---->A/D---->decode---->digital signal B
When I don't scrubbing the FPGA, the signal B is always the same as the signal A, so I think my board and the software in the FPGA operate well. When I scrubbing the FPGA too frequently, the signal B is not always the same as signal A(I only scrubbing the DSP, IOB, CLK, and CLB logic and I shield the LUT RAM and SRL16 logic). So I think the problem is caused by my configuration management engine.
I also find that the time between two scrubbing process can not be too short. For instance, if I delay only several clks(2.3825MHz) before the next scrubbing process, the signal B is not always the same as the signal A. But if I delay 0.1s, 1s or 10s before the next scrubbing process, the signal B is always the same as the signal A. So how can I solve the problem? I can do experiment to find the minimal time between the two scrubbing process that have no influence on my software. I want to know what causes this problem. Thank you:)
Regards,
Zhiyuan Peng
 

Similar Messages

  • I have a question about ' correct for aspect ratio'

    I have recently completed a wedding video, and the bride and her family have expressed disappointment that my footage make them ' look like a group of dwarves....  small and fat'.
    My initial reaction to this was to say there is nothing I can do about their shape, however I did agree to investigate further. I have checked my cameras to ensure that I am filming in 4:3 aspect ratio.
    I have noted tonight however that final cut (I use Final Cut Express 4.0.1) has a tool that allows you to 'correct for aspect ratio'. I cannot find reference to this in the user manual (although I am sure it is there). When I apply this to any clips, it does appear to stretch the images upwards/ vertical.
    Should I be using this all times before editing?
    Is this perhaps the cuase of the dwarf effect on the final footage? I have never had any complaints before.
    Any help or experience would be appreciated.

    Here is a screen shot of the clip properties. Pixel aspect is PAL- CCIR 601.

  • Question about Correcting Errors in the Converted Model

    Hi,
    I've used SQL Developer (v1.5.1) to capture (offline) the DDL from a Sybase 12 DB and have converted this to Oracle, which all seemed to run ok. However, I noticed some errors in the Migration Log. None of them have the prefix 'Parse Exception' so, according to the online help, no manual intervention is required to resolve them.
    I don't even know if the contents of the migration log are a problem, generally they can be grouped under one of the three headings below.
    "*Multiple Limitations for Stored Procedure* extUpdateExtSuccess 03-SEP-08-16:09:41"
    "*Translation limitation* '@@ERROR' encountered on Stored Procedure CorporateActions.dbo.extBMDeleteBatchSchedule line 14 column 4 03-SEP-08-14:53:23"
    "*Index* 'XPKSpinOffExt' on table 'SpinOffExt' *has been dropped as it is a duplicate of a constraint* 03-SEP-08-14:39:26"
    Are these errors something I need to do something about before I try generating the DDL? Are they related to Sybase (which I know very little about).
    Online help is not very helpful on this subject.
    Thanks,
    Antony

    Hi, Hareesh
    I agree. But that is how it is defined now by someone else. It is hard to change it as he defines the same structure on the receiving side. I didn't want to change the receiving structure as it touches the proxy code too. So I want to make something short and sweet.
    Basically the data looks like this:
    11,222
    55,666
    The result xml should be something like:
    <JOB>
      <Msg>
         <Transaction>
            <DATA>
               11
               222
            </DATA>
         </Transaction>
         <Transaction>
            <DATA>
              55
              666
            </DATA>
          </Transaction>
      </MSG>
    </JOB>
    I know either the DATA has no meaning and it's giving me a headache ... but that's how it's done and I don't want to rock the boat too much. There are lots of mapping that I have changed otherwise.
    Thanks,
    Jonathan.

  • Question about correct use of WM_CONCAT

    Good morning,
    I'm trying to accomplish the following:
    starting with this
         ENAME
         ADAMS
         ALLEN
         BLAKE
    ...and ending with this
         OLD_NAME   NEW_NAME
         ADAMS      AADMS
         ALLEN      AELLN
         BLAKE      ABEKL
    ...basically, alphabetically sorting the characters inside each name. I have an intermediate step that looks promising
    select e.ename oldname, substr(e.ename, iter.pos, 1) newcharpos
      from emp e,
           (select rownum pos from emp) iter
    where iter.pos <= length(e.ename)
    order by e.ename, substr(e.ename, iter.pos, 1);The above yields
    OLDNAME    NEWCHARPOS
    ADAMS      A
    ADAMS      A
    ADAMS      D
    ADAMS      M
    ADAMS      S
    ALLEN      A
    ALLEN      E
    ALLEN      L
    ALLEN      L
    ALLEN      N
    BLAKE      A
    BLAKE      B
    BLAKE      E
    BLAKE      K
    BLAKE      L
    ...the individual characters are in the right sequence, I figured all I had to do was to use WM_CONCAT (and replace the comma it inserts with the empty string) and I'd be done. I figured this would do it: (replace of comma left out for clarity)
    select oldname,
           wm_concat(newcharpos) newname
      from (
            select e.ename oldname, substr(e.ename, iter.pos, 1) newcharpos
              from emp e,
                   (select rownum pos from emp) iter
             where iter.pos <= length(e.ename)
             order by e.ename, substr(e.ename, iter.pos, 1)
      group by oldname;but the sequence of newcharpos gets messed up in the process and, instead of the expected result, I get this:
    OLDNAME    NEWNAME
    ADAMS      A,S,M,D,A
    ALLEN      A,N,L,L,E
    BLAKE      A,L,K,E,B
    ...My question is, how do I structure the last query so the character order stays as calculated in the inner query ?
    Thank you for your help,
    John.

    Or
    SQL> select   oldname,
           wm_concat(newcharpos) keep (dense_rank last order by null)  newname
      from (
            select e.ename oldname, substr(e.ename, iter.pos, 1) newcharpos
              from emp e,
                   (select rownum pos from emp) iter
             where iter.pos <= length(e.ename)
             order by e.ename, substr(e.ename, iter.pos, 1)
      group by oldname
    OLDNAME    NEWNAME                      
    ADAMS      A,A,D,M,S                    
    ALLEN      A,E,L,L,N                    
    BLAKE      A,B,E,K,L                    
    CLARK      A,C,K,L,R                    
    FORD       D,F,O,R                      
    JAMES      A,E,J,M,S                    
    JONES      E,J,N,O,S                    
    KING       G,I,K,N                      
    MARTIN     A,I,M,N,R,T                  
    MILLER     E,I,L,L,M,R                  
    SCOTT      C,O,S,T,T                    
    SMITH      H,I,M,S,T                    
    TURNER     E,N,R,R,T,U                  
    WARD       A,D,R,W                      
    14 rows selected.Or (11gR2)
    SQL> select ename oldname, column_value newname
      from emp,
           xmltable(('string-join(for $i in (' || rtrim(regexp_replace(ename, '(.)', '"\1",'),',') || ') order by $i return $i, "")'))
    OLDNAME    NEWNAME                      
    SMITH      HIMST                        
    ALLEN      AELLN                        
    WARD       ADRW                         
    JONES      EJNOS                        
    MARTIN     AIMNRT                       
    BLAKE      ABEKL                        
    CLARK      ACKLR                        
    SCOTT      COSTT                        
    KING       GIKN                         
    TURNER     ENRRTU                       
    ADAMS      AADMS                        
    JAMES      AEJMS                        
    FORD       DFOR                         
    MILLER     EILLMR                       
    14 rows selected.

  • Question about correctly EXIT on SQL Script

    Hi there,
    I have created a SQL script, every time when the raise_application error appears then of course the PL/SQL block ends but then still the external sql script is being executed, how can I prevent the External sql script from being executed after a raise application error is displayed?
    Regards
    RobH
    DECLARE
    BEGIN
    IF start_date > stop_date
    THEN
    raise_application_error (-020110,
    'Start Date can not be greater Stop Date. '
    ELSE ..... do some selecting and inserting of data into temporary tables etc...
    END IF;
    END;
    --And now a external SQL script should be started...
    @c:\reports\test.sql

    you can trap your exception in the inner block using EXCEPTION block and from there propagate it to the external block to stop further processing. something like this...
    DECLARE
      l_deptno NUMBER;
    BEGIN
      FOR i IN (SELECT deptno FROM dept)
      LOOP
        BEGIN
          FOR j IN (SELECT empno, ename FROM emp WHERE deptno = i.deptno)
          LOOP
            IF ( i.deptno = 20 ) THEN
              RAISE_APPLICATION_ERROR(-20001, 'Error Raised');
            ELSE
              DBMS_OUTPUT.PUT_LINE('Dept = ' || i.deptno || ' EmpNo: ' || j.empno || ' EName: ' || j.ename);
            END IF;
          END LOOP;
        EXCEPTION
          WHEN OTHERS THEN
            DBMS_OUTPUT.PUT_LINE('Error Trapped Inside');
            RAISE;
        END;
      END LOOP;
    EXCEPTION
      WHEN OTHERS THEN
        DBMS_OUTPUT.PUT_LINE('Error Trapped Outside');
    END;
    SQL> /
    Dept = 10 EmpNo: 7782 EName: CLARK
    Dept = 10 EmpNo: 7839 EName: KING
    Dept = 10 EmpNo: 7934 EName: MILLER
    Error Trapped Inside
    Error Trapped Outside
    PL/SQL procedure successfully completed.

  • Question about correcting dependencies

    Hello.
    Suppose I've been using pacman -Rd way too often than I should, and broke some dependencies - Is there any way I can cause pacman to install all missing dependencies on a system?
    Thanks.

    Dear Sean,
    There is no spaces. When we copied from Azure to text editor, we end up getting those spaces. The main problem is that in order to connect
    to Azure storage account we need to install Http_Request2, Mail_mime, and Mail_mimeDecode dependencies into Azure SDK for PHP. Unfortunately, we are not able to install them.
    Best regards,
    Pedro Gustavo Duarte

  • A question about Bar Colors in SSRS Bar Chart

    I have a chart in a report that has 27 categories, and no series. The categories all display properly with the correct results, so the chart is informationally (not sure that's a word) correct but all the bars are the same color. If I try to ass a series, each bar shows up as a different color but now each category has 27 bars in it (actually, it has one really thin bar and room for 26 more that are not showing.)
    So, my question is, can I have the colors of the individual bars be different for each category without having to use a series? I know I can use a SWITCH Statement and assign a different color to each value, but that isn't a viable solution as the categories could change and new ones could show up later.
    Oh, in case the information is relevant: I am building the report in Visual Studio 2008.
    This topic first appeared in the Spiceworks Community

    Hi Lesea, Virtex4 is not supported by Soft Error Mitigation (SEM) Core, and I need to protect the Virtex4 LX25 FPGA by simple scrubbing. The configuration management engine I designed is the same as that in Correcting Single-Event Upsets in Virtex-4 FPGA Configuration Memory. I also do the fault injection experiment, and the configuration management engine can correct the faults in the Virtex4 LX25 FPGA.
    On my board: digital signal A---->encode---->D/A---->A/D---->decode---->digital signal B
    When I don't scrubbing the FPGA, the signal B is always the same as the signal A, so I think my board and the software in the FPGA operate well. When I scrubbing the FPGA too frequently, the signal B is not always the same as signal A(I only scrubbing the DSP, IOB, CLK, and CLB logic and I shield the LUT RAM and SRL16 logic). So I think the problem is caused by my configuration management engine.
    I also find that the time between two scrubbing process can not be too short. For instance, if I delay only several clks(2.3825MHz) before the next scrubbing process, the signal B is not always the same as the signal A. But if I delay 0.1s, 1s or 10s before the next scrubbing process, the signal B is always the same as the signal A. So how can I solve the problem? I can do experiment to find the minimal time between the two scrubbing process that have no influence on my software. I want to know what causes this problem. Thank you:)
    Regards,
    Zhiyuan Peng
     

  • 2 question about GPU and Lens correction ,cs5

    Hi
    i have 2 questions about Gpu and lens correction in Cs5
    1)Filter->lens correction->search online
    i get often and almost every connection time out at the first click on search online , at the second click i get no online profile
    is it normal?
    2) question is about Gpu
    it run faster , but talking about ajustament layer
    like saturation or vibrance for example
    i found with the gpu on , a light slow refresh compared with gpu off
    i have set cache  levels 6 ,history 20
    i guess are the defaul
    well i add a saturation layer and move the saturation slide ,increase o decrease saturation
    with Gpu Off , the changes are immedially , i mean i can see in real time the increase o decrease of saturation
    with Gpu On it takes a few(very few) time more
    again is normal ?
    don't be angry , i'm going to buy cs5 and i'm unsecure ... the price make a big role
    thanks

    For what it's worth, I also see a timeout on the first [ Search Online ] click, after about half a minute delay.  Second click turns up results immediately.  This happens each time Lens Correction is started, even without restarting Photoshop, and in both 32 and 64 bit versions.  Also note that I started with one profile listed by default (though from the wrong camera) for my 40D with 28-135 zoom.
    I alsow noticed that I was seeing progress bar activity in the Lens Correction dialog while I was typing this (even though Lens Correction was NOT the active window) every time I hit the 'L' key.  Strange.
    Windows 7 x64.
    -Noel

  • Questions about 1003051 - TDMS 3.0 corrections - Composite SAP Note

    Experts:
    We, from a big SAP shop, want to set up TDMS for ERP,  BI, HCM and CRM.
    We have some questions about note 1003051:
    1) Is this note about ERP (and HCM)  only?  If so, what are the notes for TDMS on BI and CRM?
    2) Should we apply this note to all systems involved: sender, controller (SM7.0 in our case) and receiver?
    3) We have enhp1...enhp4 in our ERP (and HCM), enhp1 on BI and perhaps enhp1 on CRM (not sure yet).
        a)  What is the impact of enhp on TDMS?
        b) should we install TDMS before applying enhp OR the sequence does not matter?
    Thanks for your help!

    1) Is this note about ERP (and HCM) only? If so, what are the notes for TDMS on BI and CRM?
    >This is a composite note, and contains information about various other notes related to TDMS. Refer to each note mentioned in this note individually to assess the same.
    2) Should we apply this note to all systems involved: sender, controller (SM7.0 in our case) and receiver?
    >Depends from note to note, Each note contains the necessary information about the system it has to be installed on.
    3) We have enhp1...enhp4 in our ERP (and HCM), enhp1 on BI and perhaps enhp1 on CRM (not sure yet).
    a) What is the impact of enhp on TDMS?
    >TDMS in standard supports Basis 7.0 systems. However it generally works fine with 7.01 too.
    b) should we install TDMS before applying enhp OR the sequence does not matter?
    >As TDMS 3.0 is only available for systems with basis 4.6C to 7.0. So install TDMS first and then the EHP.
    I hope these answers help.
    Regards
    Pankaj.

  • Two questions about Risk Management 2.0

    hi experts,
    Please find below two questions about Risk Management:
    -In SPRO, Risk Management>Create top node: after completing information and executing I have this error:
    Error in the ABAP Application Program
    The current ABAP program "/ORM/ORM_CREATE_TOP_NODES" had to be terminated
    because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "/ORM/SAPLORM_API_SERVICES " in
    include "/ORM/LORM_API_SERVICESU10 " in
    line 97:
    "Bei PERFORM bzw. CALL FUNCTION "GET_ORGUNIT_THRESHOLDS" ist der Aktual"
    "parameter "I_ORGUNIT_ID" zum Formalparameter "IV_ORGUNIT_ID" inkompati"
    "bel."
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "/ORM/ORM_CREATE_TOP_NODES" had to be terminated
    because it has
    come across a statement that unfortunately cannot be executed.
    Do you know where it could come from?
    -On the Portal>Risk Management
    when I click in a link under the risk management menu(activities and risks, risk report, document risk,...) i alway have an internal server error:
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Do we have to set up some customizing points before accessing these links?
    Thank you !
    Regards,
    Julien

    Hi Julien ,
    I have the same error what u described as :-
    -On the Portal>Risk Management
    when I click in a link under the risk management menu(activities and risks, risk report, document risk,...) i alway have an internal server error:
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Do we have to set up some customizing points before accessing these links?    "
    Are you able to solve this. Please let me know how to resolve this???
    Thanks
    Regards,
    Atul

  • Questions about using a PDF form online

    I have a client who wants to create an online version of a PDF form that they are currently using. I am currently trying to explain to them that this would be best done as an HTML web form, but I may not win this argument. I have only used PDFs for printed forms (either hand-written or using form fields) so I am not familiar with any problems that converting the form for use online would entail.
    When the 'Submit' button is pressed on the form, is there a way to redirect to another web page after the data is submitted? (i.e. does the PDF have access to it's outer 'environment'?)
    Are there any security issues submitting data using the PDF form as opposed to using a standard web form? (There may be sensitive data being submitted)
    I'm not sure how they plan to handle the data that is submitted, but there are several options in the submitForm parameters - I am assuming that using the HTML option would submit the data in the same format as a web form would. Am I correct here?
    Can the PDF be prevented from being downloaded or printed? This form should only be used to submit data to their server, not as a printed form.
    Are there any other 'gotchas' that I need to look out for? Does anyone have a recommendation for a site which contains any tutorials or guidelines for using PDF forms online?

    Thanks for the information.
    Yes, I agree that there is less reason for it to be a PDF form (Actually, no real reason other than the original form already exists in PDF), but I am unfortunately in the position that my input in this project is not necessarily being considered (my company is following direct -and inconsistent- directions from the client, and I have no contact with the client to ask questions about what their actual needs are). I have been told to give the client the 'Tomato' that they are asking for, even though they are describing an 'Apple'.
    The reason this form is not meant to be printed is that we have replaced the 'Signature' fields from the original form with checkboxes that the user must check to confirm they have 'signed' the document. If they are to print/fax/whatever the document, they should use the original form, not this one. And I am still trying to explain to them that this would be better served with an HTML web form, but I fear I am losing that battle.
    I have brought up the fact that it is not 100% guaranteed that Acrobat will be available in the browser, although I can only guess that it is less than likely that anyone will not have some sort of PDF viewer available to their browser.
    I will also mention that issues may arise if the file is not submitted from within the browser.

  • Questions about mac mini iTunes server, streaming to macbook pro, ipads, etc.

    I'm thinking about getting a mac mini to work with my NAS as a iTunes server. I have a bunch of questions about this. I will have two iPhones, a few iPads, and a laptop that will be accessing the files. I have iTunes match. This is basically to keep an always on computer for hosting the music/movies. My questions are as follows . . .
    #1 Are there any good, comprehensive guides to show you how to do this?
    #2 Can the movies be accessed when not at home on the shared network?
    #3 Can the iPads or the macbook pro download the shared movies to be stored locally?
    #4 Back to #3, how will it work on my macbook pro with listening to music (I have iTunes match)? Say i go to library and I break out my macbook pro and I don't have internet. What happens if I download music while at home onto my macbook pro to listen to it when I go to the library? Will i start a new library on my macbook pro? How will that mesh with the home server when I come back.
    #5 Is there a way to mirror files or folders? So something that I have on my macbook pro will also mirror on the home server.
    Thanks for your help on this. I'll post any follow up questions.

    seanfenton wrote:
    1. I want to replace the Optical drive with a 2TB SATA. can I use this 2.5 inch?
    I do not know if it is the same model number, but this one will work in your MBP:
    http://eshop.macsales.com/item/SEAGATE%20OWC/ST2000LM003M/
    2. I want to replace the HD with a 128GB SSD 840. When I replace these drives, will my OS still be in tact? I have never done this job before.
    No. You will have to format the drives in Disk Utility>Erase to Mac OS Extended (Journaled) and then install the OSX by using the original install disks.
    3.) I want to replace the ram sticks to max capacity. This is 2 2GB sticks, Correct?
    No.  An early 17" 2008 MBP will accept 6GB RAM with the following specifications:  200-pin PC2-5300 (667MHz) DDR2 SO-DIMM.  The best sources of Mac compatible RAM are OWC and Crucial.
    4.) Most difficult...
    I want to extend the monitor wirelessly to a projector. I thought about using Apple TV and Airplay. However, support for airplay is for MacBooks 2011 and newer. I thought of using a PS3 and the media server, but I think this brings on a format compatibility issue. (my library is so large I could not afford to convert all my movies to MP4.) So, how would you recommend I put my extended monitor with VLC player onto a projector?
    Could I possibly connect the MBP to a Mac Mini as an extension? would this work natively? I would rather use a VGA cord than F with 3rd party app BS.
    Cannot help you there.
    5..) I want to Bypass iTunes this time around. I would prefer to use Finder and VLC to manage all of my music. I mostly play all my music on shuffle, so, could I create a playlist on VLC with all of my music and play it randomly? (im sure this is possible but i'd like to organize all my plans with confirmation.)
    You are not obligated to use iTunes.
    6.) Can i upgrade the keyboard to backlit? i've read that this is possible.
    All MBPs have back lighted keyboards.  Your either needs a NVRAM reset or a repair.
    Ciao.

  • Hi I have a question about shooting in Raw with my Canon EOS 6d. I'm in the process of learning photography and my goal was to start shooting in raw. I have Photoshop CS5. When I tried to edit my images in raw I received an error message stating, "The pho

    Hi I have a question about shooting in Raw with my Canon EOS 6d.
    I'm in the process of learning photography and my goal was to start shooting in raw.
    I have Photoshop CS5. When I tried to edit my images in raw I received an error message stating, "The photoshop camera raw plug-in did not recognize the format. If these files are from a camera, you may need to update your camera raw plug in."
    In researching the issue I read that to edit in raw you need a camera model requirement of at least 7.3 which only works with CS6. My version of CS5 is 6.0.0.205. Being new to all this I see that my options are to upgrade to CS6 or convert by using DNG converter and paying a monthly fee. Two things I know nothing about and don't know which is would be more beneficial.
    I'd appreciate any advise on which route to go and how upgrade and what it may cost. THANKS in advance!
    Heather

    In researching the issue I read that to edit in raw you need a camera model requirement of at least 7.3 which only works with CS6.
    That is correct. Your camera was first supported by Camera Raw 7.3. Camera Raw 7.3 will not work with CS5. You need CS6 or CC.
    Being new to all this I see that my options are to upgrade to CS6 or convert by using DNG converter and paying a monthly fee. Two things I know nothing about and don't know which is would be more beneficial.
    I'd appreciate any advise on which route to go and how upgrade and what it may cost.
    It all depends on your preferred workflow and your budget.
    Using the DNG converter is free. There is no monthly fee. You use the converter to convert all Raw files from the EOS 6D to DNGs then edit the DNGs in CS5. That's an extra step every time - every photo. Some people don't like the extra step. Others don't mind.
    Camera raw, DNG | Adobe Photoshop CC
    Or you can upgrade to CS6 (non-Cloud) and pay the upgrade fee
    Creative Suite 6
    Or join the Cloud and pay the monthly fee
    Or join the Photoshop Photography Program (US9.99/month) and get PS CC+LR

  • Question about download file in OAS4

    Question about download file in OAS4:
    I use Oracle Application Server 4.0.7 on my Windows NT 4.0 SP6;
    I use PL/Sql Cartridge developer a document system; It's use the
    upload/download in PL/Sql Cartridge;
    I read the document , the Upload/download in Pl/Sql Base on the
    Oracle Application Server's Content Service. the Problem is when I
    download a document, If I upload a Html or MsWord file, It will store in a LongRaw column, when me download ; It's tell me can't
    find a application to open this file; I will select a application
    from list to open the download file;
    As normal, It will open MsWord Automatic when download a "doc" file ; also It will open a new window of Browser to view a Html file;
    I check the download process on client Browser; when download
    file, The content-type always return "application/octet-stream";
    Also the download File will lost the postfix of the file,
    So Browser don't open the File Automatic;
    I think If I set the correct Content-Type , Browser can know how open the file; So I use owa_content.set_content_type procedure
    set the Doc file to "application/msword" , but the WEb Server always
    return "application/octet-stream";
    I didn't know how to do this problem, Plese help me.
    null

    I have a Tecra M2 and rely on your email update to ensure I have the latest drivers on my machine.
    When I received a Toshiba support email on 14 April 2005 giving reference to a QFE from Microsoft I assumed it would be necessary for my Tecra.
    I was very confused when I found that this QFE and subsequent ones posted on the 16 April 2005 relate to Pre SP2 critical updates no9t required if one has already taken earlier advice of updating to Service Pack, at the very least your narrative should make mention of this. I find it very difficult to believe that your updates are two+ years out of date.

  • Question about sony NFC tags

    Hi every body,
    I have a little question about the NT1 smart tags of sony.
    I installed other app from google play to NFC tags in my phone.
    I installed it, because the smart tag app of sony, don't have the action to turn on or turn off the GPS by NFC tag.
    When I used with other app, and I written on the blue smart tag, I mark to became the blue smart tag to read only.
    So, now I can't to write on him, and the phone is not recognazied the blue smart tag ( all other smarts tags is OK, because I didn't used them ).
    When I scan the blue smart tag, the phone show a message: "unknown type tag".
    Am I can cancelled it and became it back? that's mean that the phone is recognaized it and I can to write on it?
    Or, is it one way, and I can't used with the blue smart tag again?
    Thank you.

    you can do a factory reset or repair your phone with SUS
    Update Service (SUS)
    http://www.sonymobile.com/gb/tools/update-service/
    http://www-support-downloads.sonymobile.com/Software%20Downloads/Update_Service_Setup-2.11.12.5.exe
    Alternatives on How to backup Xperias
    http://talk.sonymobile.com/thread/36355
    Don't forget to mark the Correct Answers & Helpful Answers
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

Maybe you are looking for