Lookup expression is not working when I am using with in the rectangle box in SSRS

I have two datasets with common member is ProgramID.
I have followed the below steps,
1. Added one table  (2x2) and mapped this table to dataset1. After that I have removed top row.                                               
That means I am maintaing only  data row.
2. Added group to the table (ProgramID). Now the programid is sitting at cell#(1,1) and  cell#(1,2) is blank
3. I have verified the report with preview and able to see the data for my all programs. I have 5 programs
4. my plan is adding chart and matrix reports to cell# (1,2). If I am adding chart/matrix to the cell#(1,2) then we can't contol the  cell alignments in terms of height x width.
 To resolve that problem, I have added one rectangle control to the cell#(1,2) then I have added my chart and matrix report
5. After completing the report, I have verified with preview and able to see the reports (chart/matrix) for all my 5 programs by page wise (note: I have provided page break before for my rectangle)
6. Till this point, I have no issues
7. Now, I have added one more row under the group. so, we have our main table (2x2). Becuase of programId group we can only see 3 cells in total table  (cell# (1,1) =ProgramId  cell#(1,2)=chart and matix reports under rectangle box; cell#(2,1)=already
merged with ProgramID group; cell#(2,2)= planned to add one more rectanlge and add two reports (chart and matrix)
8. Now, i have added rectangle to cell#(2,2) then added chart and matrix reports within the rectangle.
9. cell#(2,2) reports are needs to extract the data from dataset-2. Here we have common member is ProgramID (ds-1,ds-2)
10. First I have tested for matrix report by adding lookup expression
      Matrix report (2x2)
     row-1: Cell(1,1)= Gender report heading ; cell(1,2)=Month  (column group)
     Note: month is also common member in both the datasets. 
     row-2: cell(2,1)--  =Lookup(Programid.value, Programid.value,Gender.value,"Dataset2")  (Gender data is Male and Female)
                Cell(2,2) -- empty for now
 11. I have tried to preview the report and able to see the report without any issues and below are observations
        main Table (2 x2)
         Cell# (1,1)  = ProgramID --Returning all 5 programs properly
         Cell# (1,2)  = Dataset1 related report (chart and matrix reports under rectangle) -- able to see without any issues
         Cell#(2,1)  = We already know this is merged cell. i.e menas ProgramID dispalying
          Cell#(2,2)= Only Male record is dispalying in the matrix report which is under rectanlge (here we have applied Lookup expression.
Note: male is the first record from the database and Female is the second record
Also, observed that Cell#(2,2) matrix report is unable to display the gender count information when I have provided count value expression in the cell(2,2) within the matrix and the expression I have uses is
  = sum(Lookup(ProgramId.value,ProgramId.value,GenderCOunt.value,"Dataset2"))
Please ask me if I am unable to explain or lengthy explain.
Point : Why the lookup expression is giving the first record only (in case of gender #(male, female) and why it is unable to give the gendercount.  Gendercount cell is totally blank.
Please help me.
Kishore.

Hi Kishore,
I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
=lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
As to the second issue, please try to use the following expression:
=Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
E-mail: [email protected]
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • Form in Dynamic page not working when checkbox is used.

    I have created a form using dynamic page. The form most have display fields and a checkbox field. When I check a box, it assigns 'Y' value and when unclick, it assign 'N' to the database field.
    When I submit the form, the procedure which is supposed to save the form data never gets executed. Well, at least it says, page not found HTTP 404 error.
    Interestingly if I make this field a text box and manually enter 'Y' or 'N', and then submit the form, the procedure is executed. Data gets saved.
    Is the checkbox not supposed to be used for a database field because checkbox value can be assigned only using javascript and the procedure never get that value ?
    Can you please tell me how to use a checkbox for a database field using dynamic page ?
    thanks,
    Mainak

    Sharmila,
    When I said, the form does not get submitted, I meant that the procedure does not work. The form gets submitted but the procedure does not work. It gives HTTP 404 error. That is what perplexes me. I am unable to understand why the procedure does not work when I click a checkbox.
    May be you can make this work. I am hopeless about this.
    Here is the code for the procedure sumbit_form:
    NOTE: I ADDED TWO FIELDS CALLED PROMOT VARCHAR2(1), PROMOTID NUMBER(4) TO THE EMP TABLE AND CREATED A NEW TABLE CALLED PROMOTEMP. THIS IS A TEST CASE.
    create or replace procedure sumbit_form
    (p_empno IN portal30.wwv_utl_api_types.vc_arr, p_promot IN portal30.wwv_utl_api_types.vc_arr, p_action IN VARCHAR2)
    is
    begin
    if p_action = 'save' then
    for i in 1..p_empno.count LOOP
    update scott.promotemp
    set promot = p_promot(i)
    where empno = p_empno(i);
    END LOOP;
    end if;
    commit;
    htp.p('<b>Saved Successfully</b>');
    htp.p('<table border=1 bordercolor="red">');
    for c1 in (select * from promotemp where promot='Y')
    LOOP
    htp.p('<tr><td>');
    htp.p(c1.ename);
    htp.p('</td><td>');
    htp.p(c1.job);
    htp.p('</td><td>');
    htp.p(c1.mgr);
    htp.p('</td><td>');
    htp.p(c1.sal);
    htp.p('</td><td>');
    htp.p(c1.deptno);
    htp.p('</td></tr>');
    end loop;
    htp.p('</table>');
    EXCEPTION
    when others then
    raise;
    end;
    Here is the code for the dynamic page.
    <HTML>
    <HEAD>
    <TITLE>Promot Emp</TITLE>
    <script language="JavaScript1.1">
    function include(form) {
    var thisform = form;
    for (var i=0; i<thisform.length; i++) {
         if (thisform.elements.type == 'checkbox') {
              if (thisform.elements[i].checked) {
                   thisform.elements[i].value = 'Y'; }
              else { thisform.elements[i].value = 'N'; }
    form.submit();
    function show(form) {
    var thisform = form;
    for (var i=0; i<thisform.length; i++) {
         if (thisform.elements[i].type == 'checkbox') {
              if (thisform.elements[i].value = 'Y') {
                   thisform.elements[i].checked = true; }
              else { thisform.elements[i].checked = false; }
    </script>
    </HEAD>
    <BODY>
    <FORM action="scott.sumbit_form" method="post">
    <table border=1 bordercolor="red">
    <tr>
    <td> </td>
    <td>Name</td>
    <td>Job</td>
    <td>Manager</td>
    <td>Hire Date</td>
    <td>Commission</td>
    <td>Department#</td>
    <td>Include</td>
    </tr>
    <ORACLE>declare
    i number;
    begin
    i := 0;
    for c1 in (select * from scott.promotemp where promotid = :promotid)
    loop
    htp.p('<tr><td>');
    htp.p('<input type="hidden" name="p_empno" value='||c1.empno||'>');
    htp.p('</td><td>');
    htp.p(c1.ename);
    htp.p('</td><td>');
    htp.p(c1.job);
    htp.p('</td><td>');
    htp.p(c1.mgr);
    htp.p('</td><td>');
    htp.p(c1.hiredate);
    htp.p('</td><td>');
    htp.p(c1.comm);
    htp.p('</td><td>');
    htp.p(c1.deptno);
    htp.p('</td><td>');
    if (c1.promot = 'Y') then
    htp.p('<SELECT NAME="p_promot" SIZE="1">
    <OPTION SELECTED VALUE="'||c1.promot||'">Yes
    <OPTION VALUE="N">No
    </SELECT>');
    else
    htp.p('<SELECT NAME="p_promot" SIZE="1">
    <OPTION SELECTED VALUE="'||c1.promot||'">No
    <OPTION VALUE="Y">Yes
    </SELECT>');
    end if;
    htp.p('</td></tr>');
    end loop;
    htp.p('</table>');
    htp.p('<input type="submit" value="save" name="p_action">');
    end;
    </ORACLE>
    </form>
    </BODY>
    </HTML>
    thanks,
    Mainak

  • Youtube does not work when i am using wifi on iphone 4

    the youtube does not work when i use wifi. it works perfectly when i use 3 g network ..

    At home when i use my Wi-Fi it work normal, but as soon as i go out, for example on the bus or at work it keeps saying "Cannot connect to Youtube".

  • Mouse not working when reinstalling OS X with install disk

    I am trying to reinstall OS X 10.3 on iMAC G5 after a hard drive crash with the help of the original install disks, but my wireless mouse does not work anymore. Any ideas how I can solve this or go through the installation process with the keyboard alone? I couldn't find a keyboard shortcut to tab from a list in a window to the select button...

    How is your mouse not working? Is it dead?
    Is the wireless mouse a Mighty Mouse or a 3rd party mouse?
    Does you mouse need batteries?
    *Just in case it's dirty:*
    http://docs.info.apple.com/article.html?artnum=302417 How to clean your Mighty Mouse
    Take a piece of bright white paper, turn the mouse upside down on it, press down on the ball, and run the mouse quickly in circles over the paper. This will remove all the gunk that's building up on the ball
    TIP: To get to the gook inside the scroll nipple use a plastic toothpick.
    "Other Options:" Wear latex disposable gloves. A box of same can be purchased from your local Dollar Store or Pharmacy.
    Some cell phone leather cases actually fit right over the Mighty Mouse.
    Clean/wipe the Mighty Mouse off with a damp cloth/rag prior to going to bed each evening.
    Some users have found using the small alcohol pads quite successful. These can be obtained from any drug/pharmacy or Dollar Store.
    Only do the following if your warranty has run out:
    Cleaning inside and dismantling the Apple Mighty Mouse
    If so, then I suggest (if your 1 year warranty is not up and/or you have Apple Care Protecton Plan) you call Apple Tech Support & ask for a replacement.
    =========================
    Mighty Mouse Take Apart Photos

  • IMessage is not working when camera is deactivated with parental lock, this makes no sense, does it?

    Hello, when you deactivate the camera with the parental lock, it will deactivate iMessage imediately.
    It seems that the deactivation of Facetime, witch is deactivated automaticly after the deactivation of the camera, leeds to the problem.
    Because I have to turn off the camera due security restrictions of my working place, my camera is always deactivated.
    So it was impossible to activate iMessage after installing iOS 5 on my iPhone.
    After reactivation of the camera iMessage activation was possible.
    Greetings A.T.Schmidt

    I would definitely recommend you contact eBay about the issue and let them know! As an eBay seller myself, I attempt to make sure all the products I'm selling are in good condition and will be able to be used by someone else. It is awful and rude to sell a product such as a smartphone that is gravely important and have it not work. The reason it's not working with your account is because the phone was previously activated on the seller's account. (One phone at a time rule*).  In order for you to start fresh and new you need to get in touch with someone from eBay and have this seller reprimanded for causing you so much trouble. I myself have considered purchasing tech items from eBay and Amazon and as good as the seller's ratings may be, that does not qualify them to be able to sell to just anybody. Unfortunately you received a "lemon" phone - AKA it doesn't work like they promised.  Once the seller has been contacted by eBay customer support, your next step will be to go to Verizon and tell them exactly what happened.
    I bought the phone I have now from Wal-Mart and I promise you I will never do that again. Within 3 months, the phone was completely dead. It may be cheaper and it may sound great but 3rd party sellers are NOT recommended by me personally. It's nothing personal against you I'm not trying to discourage your spending choices but trust me, you do get your money's worth if you buy direct. Plus, if something is wrong with the phone Verizon can't really help you out because they have no clue what software you're running on or how up to date it is. Just some friendly advice from someone who has done it before. Hopefully this will not happen to you again. I know first hand it can be quite frustrating and I empathize with you. Hope this works out for you! ;D

  • Why does hotmail not work when I open it with firefox?

    When I open firefox in safe mode hotmail is functional but when I open firefox normally hotmail does not work. I can't seem to find out what add ons I have.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    If it does work in Firefox Safe-mode then disable all extensions (Tools > Add-ons > Extensions) and then try to find which is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • IPhone 4S speaker not working when I push to turn up the volume doesn't show icon or any sound

    Some one please help my iPhone 4S speakers not working and when I try to turn up the volume it doesn't show the icon

    Try This...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Also...
    See Acoustic-speaker/microphone/receiver
    Here  >  http://support.apple.com/kb/TS2802

  • My igoogle homepage not working when i clicked a mail on the page, nothing were loaded unless I go to main gmail website, help please

    I always access this website as my home page and especially to check my e-mail if available. This site is from google itself and apparently, the GMAIL widget aren't working when I clicked any mail or link inside that widget. I had to go into main GMAIL home page at top of the page link in order to read any available e-mail.
    Please fix this

    In iWeb do Command-Shift-L to see the outline of the page.
    You'll notice that the links are covered by another layer.
    http://www.atlastilellc.com/Atlas_Tile/Marble.html
    Make sure the content is in the layer where it belongs. The buttons with the links are -55pixels into the Header layer.
    Move them down. Open the Inspector > Yellow ruler to see their position.

  • A sudden problem using chat when talking withh AT&T Tech Supprt. They spent 90 minutes checking the problem & it all came Down to Fixfox. When trying to chat with them the CHAT BOX blinks off

    A problem recently developed using Firefox. When I now try to Chat with AT&T Tech Support about my internet, the CHAT BOX blinks on & off every second. It used to work fine but now it doesn't.
    AT&T Tech Support just spent 93 minutes on the phone controlling my computer by remote & every thing pointed to Firefox. It does work fine with all other browsers, too.
    AT&T suggested a new auto update for Windows 7 might not be compatible with Firefox. Is there any way to fix this problem?
    I'm using Firefox 4.0.1 because Firefox 5 isn't compatible with 2 Tool Bars I need for some very important websites that I can't be without. Firefox said they're working on the problem & I'll upgrade when they've fixed it. But for now, I need this problem fixed.
    Thanks!

    Don't expect support here. Nokia does not bother to pay a tech or two to support the people who have bought the 920. Not really a point to these forums.
    Anyways, i have huge bt issues as well. Cannot connect or see my jawbone. In truck with pioneer nav system (it is illegal here to use a phone without handsfree in vehicle) it links, but when i make a call or receive a call it shows the phone off the receiver icon so it knows call in progress, but i either get no sound from the caller... at all, or i get a robotic mess i cannot decipher. when i cannot hear anything, people can hear me, but when i hear robotic, people can hear me but with distortion. However, when it reads a text message, the phone voice is fine through the system. Because i have to turn bt off then to use phone, i have to return this handset and just go back to android.
    Have also had this drop calls a few times now as reception is probably the worst i have seen in a decade... even drops in downtown core. Battery life poor because i assume its always struggling for a signal.

  • Prompts are not working when we call another report from the narrative view

    Hi,
    In my dashboard i need a table view report which should have scrolling option only for that section.
    For this i added a html tag <iframe ........scrolling="yes"> in the narrative view and i added that narrative view in the report.
    Now,it works fine in the dashboard.
    But when i apply prompts in the dashboard the values are not filtering even though i added the "is prompted" filter condition in the criteria of both narrative view section and the called function.
    Any help would be greatly appriciated.
    Thanks,
    chinna.

    Hi,
    since you have created an iframe dashboard prompt wont work on that report.Same is the case if you put the report in Embeded content.
    One possible workaround is to creaate a dummy report having columns same as that of dashboard prompt.Put all the columns is prmompted in this report
    (No need to create dummy report if you already have those columns in some other report,You can use that report also)
    Then go to your Iframe report and use "filter based on other request".In this way dashboard prompt will filter dummy report and based on dummy report values your iframe report will also filter.
    Thanks
    Sandeep

  • Drag and drop not working when uploading file using safari

    why i cannot drag and drop any file when using safari , and what happens the file auotmatically open while i need to upload it only , extra for that , i cannot write  any remark or fill a space while using website related to my work.
    my work is to upload drawing files using dwf file to a website so the other parties can review and give me review , and then i reply to the remark at the same place and make meeting through the same site.
    please any body can give any way to correct my mac.
    latelly i installed win7 only to use it for that website , and iam now changing from mac to win whenever i want to work , this not acceptable to me because it is waste of time beside i like the mac and it working with other application but not for safari.

    why ?
    I'm sorry, but every OS is different.  You cannot expect all features of one to be in another.  Or alternatively, for similar features, be done it the exact same way. 
    It looks to me after a quick google search that winexplorer is basically the moral equivalent of the mac's finder to present the file system in different ways.  The OSX Finder also has alternative views of the file system, i.e., icons, list, columns.  Experiment with the list and column views and see if one of them are more to your liking.
    As for winexplorer on the mac.  I don't know if this simulates it or not but there is a program called Macintosh Explorer so check that out as well.
    And finally, in the end, as I said in my earlier post, no matter what, nothing on the mac is going to change what I believe you think you can do and drop a file on a browser window and expect it to upload.

  • SPARQL query through Jena adaptor not work when string literals used

    Hi,
    When I executed the following SPARQL query through Oracle Jena adaptor:
    SELECT ?personHasFirstName WHERE
    {?personHasFirstName foaf:firstName ?name . }
    I got the expected results.
    However it won't return anything when I narrowed the query to match a particular name like below:
    SELECT ?personHasFirstName WHERE
    {?personHasFirstName foaf:firstName \"Julie\" . }
    I also tried the Filter approach:
    SELECT ?personHasFirstName WHERE {?personHasFirstName foaf:firstName ?name . FILTER (?name =\"Julie\") }
    It still doesn't return any results.
    I saw from the release notes about the bug dealing with "\". My guess is that the above behavior is caused by that bug. What is the suggested way to walk-around this? Thanks,
    Weihua

    Could you please try this? It works as expected on my machine.
    GraphOracleSem graph = new GraphOracleSem( oracle, modelName);
    ModelOracleSem model = new ModelOracleSem(graph);
    Node sub = Node.createURI("http://test.com/employee123");
    Node pre = Node.createURI("http://xmlns.com/foaf/0.1/firstName");
    Node obj = Node.createLiteral("Julie");
    graph.add(Triple.create(sub, pre, obj));
    String queryString =
    " PREFIX foaf: <http://xmlns.com/foaf/0.1/> " +
    "SELECT ?person WHERE { ?person foaf:firstName \"Julie\" . } ";
    QueryExecution qexec = QueryExecutionFactory.create(
    QueryFactory.create(queryString), model);
    try {
    ResultSet results = qexec.execSelect();
    while (results.hasNext()) {
    QuerySolution soln = results.nextSolution();
    psOut.println("runQuery: soln " + soln);
    finally {
    if (qexec != null)
    qexec.close();
    output snippet:
    runQuery: soln ( ?person = <http://test.com/employee123> )

  • Dynamic record group not working when apostrophes are used

    Hi Everyone,
    I have developed a Form for the most part everything is working as expected. However, there is a search functionality that is giving me problems. The issue is that when the user enters search criteria for last_name that has an apostrophe (O'brian) the search lov doesn't get populated because the dynamic record group is not getting created when the string has an apostrophe (ie O'brian). I have a dynamic record group that takes the user's search criteria and populates an LOV on the screen with the records that matched their criteria.
    Here is the code that is behind my search button where the dynamic RG gets created. It works fine for all searches that don't contain an apostrophe. Btw, the Oracle Forms version is 10g.
    DECLARE
    p_where_debtor varchar2(2000);
    p_where_liab varchar2(2000);
    rg_id RecordGroup;
    v_query varchar2(2000) := null;
    rg_name varchar2(2000):= 'RG_LIAB_LST';
    errcode NUMBER;
    BEGIN
    IF :SEARCH.cd_nb is null and
    :SEARCH.cd_seq is null and
    :SEARCH.f_name is null and
    :SEARCH.l_name is null and
    :SEARCH.mi_name is null
    then
    display_message ('Search criteria must be entered');
    raise form_trigger_failure;
    END IF;
    v_query := 'SELECT last_name, first_name, middle_name, c_no, c_seq
    FROM TABLE_VW2 WHERE 1=1';
    /*Search criteria entered by user*/
    IF :SEARCH.l_name_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(last_name) LIKE '''||UPPER(:SEARCH.l_name)||'%''';
    END IF;
    IF :SEARCH.f_name_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(first_name) LIKE '''||UPPER(:SEARCH.f_name)||'%''';
    END IF;
    IF :SEARCH.mi_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(middle_name) LIKE '''||UPPER(:SEARCH.mi_name)||'%''';
    END IF;
    IF :SEARCH.cdcs_nbr_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(c_no) LIKE '''||UPPER(:SEARCH.cd_nb)||'%''';
    END IF;
    IF :SEARCH.cdcs_seq_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(c_seq) LIKE '''||UPPER(:SEARCH.cd_seq)||'%''';
    END IF;
    /*Make sure record group doesn't exisit*/
    rg_id := Find_Group(rg_name);
    /*If it doesn't exist then create record group*/
    IF id_null(rg_id) THEN
    rg_id:= create_group_from_query(rg_name,v_query);
    END IF;
    IF NOT id_null (rg_id) THEN
    delete_group (rg_id);
    rg_id:= create_group_from_query(rg_name, v_query);
    END IF;
    errcode := Populate_Group(rg_id);
    Any help would be greatly appreciated.
    Thanks,
    Adrian

    For every item where an apostroph can occur, do a
    REPLACE(:BLOCK.ITEM, '''', '''''');

  • Alerts not working when "reply" is used

    When I get a reply to a sms text, there is no alert, only the led flashes.  I do not have alerts turned off.  They work fine, when the message originates from the sender.

    Can u give us the details like which component you are using for alerts.

  • Open resetlogs is not  working when creating clone db with online backup

    Hi All,
    I am trying to create a clone database using hot backup of a database .
    STEPS THAT I FOLLOWED
    LET ----- >CURRENT_DB NAME=DEV
    CLONE DATABASE NAME=DEVCLONE
    steps PERFORMED FORM DEV DB
    - put the database in backup mode using 'alter database begin backup'
    - copy all the data files to a different folder
    - during copy i have performed some operations on the DB (creating users, tables, dmls etc...)
    - in between copying i also performed log switch
    - after completion of copy , "alter database end backup"
    - created a backup control file in a human readable format (alter database backup controlfile to trace as ........)
    steps performed for clone DB side ((DEVCLONE)
    - created a parameter file for the database .
    - modified the backup control file so that it will point to the location of copied destination of datafiles
    - set the ORACLE_SID
    - then 'sqlplus / as sysdba
    - starup nomount
    - run the modified control file ( created a control file for the clone database)
    - recover the database using "recover database using backup controlfile"
    I have provided the archive files that it was asking for (archive logs that has been generated in DEV DB)
    then i canceled the recovery by typing "cancel"
    - recover database using backup controlfile until cancel;
    then typed "cancel"
    - then try to open the database with open resetlogs but it showed below error
    alter database open resetlogs
    ERROR at line 1:
    ORA-01195: online backup of file 1 needs more recovery to be consistent
    ORA-01110: data file 1: 'D:\DATA_GUARD\DEVHOT\SYSTEM01.DBF'
    please help me on this ......
    Thanks

    Thanks , now i am able to open the DB in open reset logs mode .
    Previously , when i had not taken the archive log after "alter database end backup" , i was not able to open the db with open resetlogs because the
    fuzzy status of all the datafile headers were YES .
    But after taking the archive log that got generated after "alter database end backup" and applying it on the clone db(Created with HOT backup ) the datafile_header status got changed from YES to NO .
    So for that i am able to open the clone db with open resetlogs .
    Can you please help me with a small description why this is happening ?
    Thanks.......

Maybe you are looking for