Dates driving me madd

I have a form whcih updates to an access database. The users
uses a calendar box to enter the date in the form and this enters
fine.
I need a search page to find the information based on the
search date. I have the search page and results page but cannot get
around the data mismatch errors. I have tried to change the date
formats from UK to US, in both access and on the hosting server but
nothing gets any results.
It does not matter which format the date is in, so long as it
returns the search.
Any help or resources would be appreciated.
Chris.

More info please... Format, sequence settings etc...
Could be dodgy Ram... in which case, shut computer down and remove Ram sticks one by one until problem goes away.
Could be corrupt render files... Did you have to render your sequence? If so, dump all render files and re-render.
Could be corrupt media files/directory... When you scrub through the timeline, does it crash at the same point? Try to see if there is one particular clip that causes issues. If so, remove clip from capture scratch and re-capture.
Firstly though, before anything... Have you tried trashing preferences?

Similar Messages

  • Data-Driven test : Compilation should be avoided while running tests in batch when .csv file inputs changed to use them in script

    Hi,
    I am running Data-Driven  test on different machines with different  input values in .CSV file in batch mode.we are facing following problem:
     Test not considering modified values in  .CSV file until we recompile the test.
    Is there any way to avoid this dependency of compilation after updating .CSV file???
    Regards,
    Nagasree.

    Assuming the CSV is part of the Visual Studio solution. Open the properties panel for the CSV file from solution explorer. Set "Copy to output directory" to "Copy if newer" or to "Copy always". Some documents recommend
    "Copy if newer" but I prefer "Copy always" as occasionally a file was not copied as I expected. The difference between the two copy methods is a little disk space and a little time, but disks are normally big and the time to copy is normally
    small. Any savings are, in my opinion, far outweighed by being sure that the file will be copied correctly.
    See also
    http://stackoverflow.com/questions/23469100/how-to-run-a-test-many-times-with-data-read-from-csv-file-data-driving/25742114#25742114
    Regards
    Adrian

  • Problem of php scripts

    I am a new php user, I have a problem of the php scripts syntax in my detail_member.php and error message is showing that which I don't know how to fix , if you can help me who is a new php user and the first time user on this forum, I 'll be very grateful appreciate.
    Error message:Parse error: parse error in c:\program files\easyphp1-8\www\immanuel\public_html\member\detail_member.php on line 103
    Code:
    <?php require_once('../../Connections/icccon.php'); ?>
    <?php
    mysql_select_db($database_icccon, $icccon);
    $query_query_date = "SELECT * FROM member, timesheet WHERE member.memberID=timesheet.memberID";
    $query_date = mysql_query($query_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    $totalRows_query_date = mysql_num_rows($query_date);
    $maxRows_query_date = 10;
    $pageNum_query_date = 0;
    if (isset($_GET['pageNum_query_date'])) {
    $pageNum_query_date = $_GET['pageNum_query_date'];
    $startRow_query_date = $pageNum_query_date * $maxRows_query_date;
    mysql_select_db($database_icccon, $icccon);
    $recordID = $_GET['recordID'];
    $query_query_date = "SELECT * FROM member WHERE memberID = $recordID";
    $query_limit_query_date = sprintf("%s LIMIT %d, %d", $query_query_date, $startRow_query_date, $maxRows_query_date);
    $query_date = mysql_query($query_limit_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    if (isset($_GET['totalRows_query_date'])) {
    $totalRows_query_date = $_GET['totalRows_query_date'];
    } else {
    $all_query_date = mysql_query($query_query_date);
    $totalRows_query_date = mysql_num_rows($all_query_date);
    $totalPages_query_date = ceil($totalRows_query_date/$maxRows_query_date)-1;
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>detail_member</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../styles/icccon.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <table>
    <tr>
    <td width="62%" nowrap class="m-time"><?php $row_query_date['Sunday']recordID=$row_query_date['Sunday'];?><br></td>
    <td width="38%" nowrap class="m-time">Delete</td>
    </tr>
    </table>
    </body>
    </html><?php
    mysql_free_result($query_date);
    ?>

    Followed your instruction, I have put the surrounding code tags of my php codes, hopfully it helps you to read and help me to figure out the problem of syntax on line103 which is:<td width="62%" nowrap class="m-time"><?php echo $row_query_date['Sunday'];recordID=$row_query_date['memberID'];?></td>
    <?php require_once('../../Connections/icccon.php'); ?>
    <?php
    mysql_select_db($database_icccon, $icccon);
    $query_query_date = "SELECT * FROM member LEFT JOIN timesheet ON member.memberID = timesheet.memberID";
    $query_date = mysql_query($query_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    $totalRows_query_date = mysql_num_rows($query_date);
    $maxRows_query_date = 10;
    $pageNum_query_date = 0;
    if (isset($_GET['pageNum_query_date'])) {
      $pageNum_query_date = $_GET['pageNum_query_date'];
    $startRow_query_date = $pageNum_query_date * $maxRows_query_date;
    mysql_select_db($database_icccon, $icccon);
    $recordID = $_GET['recordID'];
    $query_query_date = "SELECT * FROM member WHERE memberID = $recordID";
    $query_limit_query_date = sprintf("%s LIMIT %d, %d", $query_query_date, $startRow_query_date, $maxRows_query_date);
    $query_date = mysql_query($query_limit_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    if (isset($_GET['totalRows_query_date'])) {
      $totalRows_query_date = $_GET['totalRows_query_date'];
    } else {
      $all_query_date = mysql_query($query_query_date);
      $totalRows_query_date = mysql_num_rows($all_query_date);
    $totalPages_query_date = ceil($totalRows_query_date/$maxRows_query_date)-1;
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>detail_member</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../styles/icccon.css" rel="stylesheet" type="text/css">
    </head>
    <body><center>
         <div id="reg">
         <p class="visitor-title">Please review the detailed personal information:</p>
    <div id="backlist"><a href="member.php">The List of  Members  </a>   /     <a href="../add_record/add_member.php">Add New Member</a></div>
      <table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td valign="top" id="visitor-L">
        <p class="infoCopy">ID:<?php echo $row_query_date['memberID']; ?></p>
             <p ><img src="images/<?php echo $row_query_date['large']; ?>" class="kuang"> </p>
          <p><?php echo $row_query_date['title']; ?>  <?php echo $row_query_date['name']; ?><br>
          English Name: <?php echo $row_query_date['englishname']; ?><br>
          <a href="../update/update_member.php?memberID=<?php echo $row_query_date['memberID']; ?>">Update</a><br>
           <a href="../update/delete_visitor.php?memberID=<?php echo $row_query_date['memberID'];?>">Delete</a>
           </p>     </td>
        <td  valign="top" id="visitor-R">
         <ul>
         <li><span class="data">Address:</span><span class="info-detail"><?php echo $row_query_date['address1']; ?>
         <?php echo $row_query_date['address2']; ?></span><br>
         <span class="data">City:</span><span class="info-detail"><?php echo $row_query_date['city']; ?></span><br>
         <span class="data">State:</span><span class="info-detail"><?php echo $row_query_date['state']; ?></span><br>
         <span class="data">Zip Code:</span><span class="info-detail"><?php echo $row_query_date['zip']; ?></span><br>
         </li>
         </ul>
         <ul>
         <li>
         <span class="data">Daytime Phone:</span><span class="info-detail"><?php echo $row_query_date['day_phone']; ?></span><br>
         <span class="data">Night phone:</span><span class="info-detail"><?php echo $row_query_date['night_phone']; ?></span><br>
         <span class="data">Cell phone:</span><span class="info-detail"><?php echo $row_query_date['cell_phone']; ?></span><br>
         <span class="data">Fellowship:</span><span class="info-detail"><?php echo $row_query_date['category']; ?></span><br>
         <span class="data">Email:</span><span class="info-detail"><?php echo $row_query_date['email']; ?> </span><br>
         </li>
         </ul>
         <ul>
         <li><span class="data">Country of Origin:</span><span class="info-detail"><?php echo $row_query_date['country']; ?></span><br>
         <span class="data">Occupation:</span><span class="info-detail"><?php echo $row_query_date['occupation']; ?></span><br>
         <span class="data">Status of Marrige:</span><span class="info-detail"><?php echo $row_query_date['marrige']; ?></span> <br>
         <span class="data">Date of Birth:</span> <span class="info-detail"><?php echo $row_query_date['dob']; ?></span><br>
         <span class="data">Range of Age:</span> <span class="info-detail"><?php echo $row_query_date['age']; ?>  years old</span><br>
         <span class="data">Language:</span> <span class="info-detail"><?php echo $row_query_date['language']; ?></span><br>
         <span class="data">Driving Status:</span><span class="info-detail"><?php echo $row_query_date['drivingOptions']; ?></span> <br>
         <span class="data">Working Status:</span> <span class="info-detail"><?php echo $row_query_date['workingstatus']; ?></span><br>
         </li>
         </ul>
         <ul>
         <li>
         <span class="data">Referral by:</span><span class="info-detail"><?php echo $row_query_date['referral']; ?></span> <br>
         <span class="data">Religion:</span><span class="info-detail"><?php echo $row_query_date['religion']; ?></span><br>
         <span class="data">How Long have been in U.S.?:</span><span class="info-detail"><?php echo $row_query_date['howlong']; ?></span><br>
         </li>
         </ul>     </td>
        <td valign="top"  align="right" id="R" >
         <ul>
        <li><span class="data" colspan="2">Records of attendence on Sunday:</span></li>
         </ul>
         <?php if ($totalRows_query_date > 0) {  ?>
         <table width="80%" border="0" cellspacing="0" align="right" cellpadding="0">
        <tr >
            <td colspan="2" class="m-date">Date of Attendance</td>
          </tr>
        <?php do { ?>
        <tr>
              <td width="62%" nowrap class="m-time"><?php echo $row_query_date['Sunday'];recordID=$row_query_date['memberID'];?></td>
              <td width="38%" nowrap class="m-time">Delete</td>
        </tr>
        <?php } while ($row_query_date = mysql_fetch_assoc($query_date)); ?>
    </table>
         <?php }  ?></td>
         <td valign="top" id="R" >
         <ul>
         <li><span class="data">Records of attendence on Friday Night:</span></li>
         </ul>
         <table width="80%" border="0" cellspacing="0" align="right" cellpadding="0">
        <tr >
            <td colspan="2" class="m-date">Date of Attendance</td>
          </tr>
        <tr>
              <td width="62%" nowrap class="m-time"><?php echo $row_query_date['Friday'];?></td>
              <td width="38%" nowrap class="m-time">Delete</td>
        </tr>
    </table>
         </td>
      </tr>
    </table>
    </div>
    </center>
    </body>
    </html><?php
    mysql_free_result($query_date);
    ?>

  • All the data in driving table should be displayed - obiee 10g

    Hi All,
    Table T1
    Col1 col2
    A AA1
    B BB1
    C CC1
    D DD1
    Table T2
    col1 Col2 col3
    A 200 01-DEC-2012
    B 300 03-DEC-2012
    D 250 05-DEC-2012
    Result to be:
    A 200 01-DEC-2012
    B 300 03-DEC-2012
    C
    D 250 05-DEC-2012
    When we pass date parameter from 01-DEC to 05-DEC
    Then the result we are getting is
    A 200 01-DEC-2012
    B 300 03-DEC-2012
    D 250 05-DEC-2012
    We need to get all the records from Table T1 irrespective of whether the records present in Table T2 or not.
    we tried joins but didnt worked..
    Thanks.

    If these are physically mapped then change the join inner to to Left outer or else you can go with
    For logical source 'product p1' properties->General tab
    Click on Add button and select ' product_group p2' and set Type as 'Left Outer'
    If these tables are with complex join then double click on join mapping to get join wizard->Select table at 'Driving' and 'Type' Left outer or Right Outer.
    Do these in BMM layer.
    If helps pls mark

  • Please help with this issue "To Run a SSIS Package outside of Server Data Tools You must install Drived Column of Integration sercvies of higher" From C# app

     i have searched all over the google and here on MSDN(I have read all the threads related to my problem ) , i am new to SISS and doing my clg project ,
    I have this package which loads data from  dim tables to a fact table , my Package runs without any problem in BIDS (2012)
    I have installed SQl Server integration services on SQL and service is also running in services.msc,
    the problem comes when i execute my package using my C# application i am using MSDN Method to execute a SSIS package programmatically given here.
    "http://msdn.microsoft.com/en-us/library/ms136090.aspx"
    For loading my FactTable i have used a Derived columns  and some lookups , 
    Now if i don't use derived columns and looks ups and just use source and destination component then my package runs fine from my C# application but if i use derived columns or looks ups etc it gives the following error
    "Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/SSIS.Pipeline: To Run a SSIS package outside of SQL Server Data Tools you must Install Derived Column of Integration services of higher"
    I am searching and trying to resolve this issue from previous 2 days but without any luck please help or guide me what is solution to this problem ,,i will be very thankful
    I have also found that integration services that are running on my system have version  10.0
    but the BIDS have version Version 11.0.3402.0
    IS this causing problem ?  if yes then what i have to do  ?

    Hi BlaxButt,
    The package is developed in SSDT installed by SQL Server 2012, so it is a SSIS 2012 package. However, the Integration Services you have installed is SQL Server 2008 R2 version. To run the package outside SSDT, you need SSIS 2012 installed. The reason why
    the package runs fine with only Source and Destination components is that such a simple package can be executed by the DTExec utility installed by SQL Server 2012 Data base Engine or Client Tools (SQL Server Import and Export Wizard). To run a package that
    uses other tasks/components outside SSDT/BIDS, the SSIS runtime is also required except the DTExec utility. To obtain the SSIS 2012 runtime, we have to install SSIS 2012 on the server where the package runs.
    Reference:
    http://stackoverflow.com/questions/19989099/getting-error-running-ssis-package-on-non-ssis-server
    Regards,
    Mike Yin
    TechNet Community Support

  • I have a new (mid-2011 27" Imac with 2 Thunderbolt ports each driving one 27" Thunderbolt display. The 3 displays work perfectly in OSX Lion but in Bootcamp 4.0 with Windows 7 (64 bit) only 2 screens come up. everything is up to date. Anyonce who can help

    I have a new (mid-2011 27" Imac with 2 Thunderbolt Ports each driving one 27" Thunderbolt display.
    Graphic card is AMD Radeon HD 6970M  with 2Gb of VRAM.   All works 100% in Lion but
    in Bootcamp 4.0 running windows 7 Professional (64 bit) Only 2 of the 3 screens work not all three.
    Tried updates, calling Apple etc. But no luck.  Windows doesn't recognize the 3rd screen while
    checking on the driver in windows is tells me it's the latest and best available. ?  In VMware
    Windows 7 also works fine over three screens so windows can do it. But I need it natively to
    work. (i.o.w. in Bootcamp). Does Anybody know how to solve this, or if Apple is working on a
    solution for this ?  It really hurts to have one of these expensive screens staring at you being dead.

    I have a new (mid-2011 27" Imac with 2 Thunderbolt Ports each driving one 27" Thunderbolt display.
    Graphic card is AMD Radeon HD 6970M  with 2Gb of VRAM.   All works 100% in Lion but
    in Bootcamp 4.0 running windows 7 Professional (64 bit) Only 2 of the 3 screens work not all three.
    Tried updates, calling Apple etc. But no luck.  Windows doesn't recognize the 3rd screen while
    checking on the driver in windows is tells me it's the latest and best available. ?  In VMware
    Windows 7 also works fine over three screens so windows can do it. But I need it natively to
    work. (i.o.w. in Bootcamp). Does Anybody know how to solve this, or if Apple is working on a
    solution for this ?  It really hurts to have one of these expensive screens staring at you being dead.

  • Baseline date not driving the due date

    My client is currently implementing ECC 6.
    In my past project, I had always thought that the baseline date drives the due date of a vendor invoice for example. But in transaction FB60, when i put in my baseline date, the due date gets calcualted using the payment terms. Is this correct? My client would like the baseline date to drive the due date for paying invoices. How can I correct this please?
    Thanks for your help.

    Hi,
    Yes, it is possible to overwrite the baseline date while making the posting in FB60. However, the payment terms is also taken into account for calculating due date. For example if payment terms id P30 - net due 30 days, the due date will be 30 days from baseline date.
    If baseline date is May 29th 2007, due date will be Jun 27th 2007
    If baseline date is changed to May 31st 2007, due date will change to Jun 30th 2007.
    Probably, you would like to increase or decrease the credit period days, which can done by changing the payment terms.
    Thanks
    Murali.

  • Date and Time and others not working after 10.5.6- its driving me bonkers

    Recently, after booting my computer and logging in (I am the sole user and it auto logs in).
    Well only 3 things show up in the upper right menu bar:
    Spotlight, and two 3rd party items, I added (connect360 and bootchamp)
    But airport and Date and Time do not sow up at all. When I go to System preferences I see that things are all screwed up: the box that says "show date and time in menu bar" is always unchecked. If I recheck it will revert the next time I open up the preference pane. Another odd this is it that it lets me click the boxes even when the padlock is locked.
    Now, I can log out and then log back in, and it loads everything correctly. But really its stuff like this that drives me bonkers. Anyone have a similar problem or a solution?
    I am going to try and disable auto-login and see if it works the first time when I login. If it works it will be better than right now but, it will still irritate me.
    Thanks in advance

    You might try moving the apple.com.systempreferences.plist (in the Users/yourusername/Library/Preferences folder) to the desktop and restarting or log-out/log-in.
    If it doesn’t help, you can move the .plist file back into the Preferences folder, replacing the new one it created to restore your original settings.

  • Tabular Form With Dates Is Driving Me Nuts!

    Hello,
    Still new to the world of APEX/HTML-DB, and I'm pulling my hair out with something right now.
    I have a tabular form that is updating a table. I'm pre-populating the date field with a default value of SYSDATE and it's 'Display as Text (Saves State'. It shows fine, but when I submit to the database all the other fields are input EXCEPT my date field which is always blank! The field in the database is set to NOT NULL, and it doesn't give me an error. Where is my date going!?
    The second problem I have is that SYSDATE is in GMT, and I need CST. How can I convert that? I used the to_char(current_date, 'DD-MM-YYYY HH24:MI') but it always gives me an error.
    Any help would be most appreciated, as this is the last thing I need to do to get my simple app up and running.

    Here is an example of my trigger...
    create or replace TRIGGER "bu_MY_ORDER_TABLE"
    before update on "MY_ORDER_TABLE"
    for each row
    begin
    :new.order_date := :old.order_date;
    end;
    -- order_date is a TIMESTAMP(6) set to default of sysdate at table level.
    :>) It works great for me... Bill

  • The endless message telling me that I've turned off cellular data for a given app is driving me crazy

    Like many of you I don't have an unlimited data plan anymore. So I've chosen to turn off the ability for some things to download anything unless it's on WiFi. In spite of this the d@#ned phone keeps telling me that I need to turn on cellular dat for "pick the app". I'd wish the phone would shut up and just work. Wait a mnute! Wasn't that one of the original slogans Apple had?

    Did you get anywhere with this? I'm considering wiping it and setting it up as a new device.

  • How can I extract multine data using a regex? ... driving me nuts!!

    Hi everyone,
    I have a file which I'm interested in extracting information from. Here is a snippet:
    CGCNNNNGTAGTC
    TAGTCNN
    ... my goal is to create a regex which extracts out everything beyond the N (on the first line), along with anything on the next line which is not N.
    As a result, my desired outcome is "GTAGTCTAGTC"
    What I've worked on sofar (for my regex) is:
    Pattern p = Pattern.compile("(N[ATGC].*)\\r\\n[ATGC].*N", Pattern.MULTILINE);I've worked on it for sometime now, and am very interested in advice as-to how I can extract my desired information.
    Thanks once again,
    p.
    Edited by: phosse1 on Apr 9, 2009 8:37 PM
    Edited by: phosse1 on Apr 9, 2009 8:38 PM

    Till one of the regex gurus comes around to shorten the regex by 50% and increase the readability and efficiency by 1000% ;-)import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class CrossLineMatcher {
       public static void main(String[] args) {
          String[] inputs = {
             "CGCNNNNGTAGTC\n" +
             "TAGTCNN",
             "CGCNNNNGTAGTC\r\n" +
             "TAGTCNN",
             "CGCNNNNGTAGTC\r" +
             "TAGTCNN",
          String regex = "(?m)(?<=N)([^N]+)(?:$[\\r\\n]+^)([^N]+)(?=N)";
          Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE);
          for (String input : inputs) {
             Matcher matcher = pattern.matcher(input);
             while (matcher.find()) {
                System.out.println(matcher.group(1)+matcher.group(2));
          System.out.println("=======================");
          regex = "(?m).*?N([^N]+)(?:$[\\r\\n]+^)([^N]+)N.*?";
          for (String input : inputs) {
             System.out.println(input.replaceAll(regex, "$1$2"));
    everything beyond the N (on the first line), along with anything on the next line which is not NYou want to express a match for "anything that is not N", use [^N]
    [ATGC] means "anything that is A, T, G or C"
    db

  • Sprint says Q10 can not access internet/data in Chas/Hunt WV area

    So I upgraded to a new Q10 and spent a few hours loading and configuing all my emails, etc. 
    Driving to work this morning, I noted that there was no emails received after I left my house (wifi-enabled).  Tried to open the Browser and received the error stating there was no connection to the internet.  Wasted most of the workday fiddling with the settings --- no joy.  So on the way home I stop at the Sprint store.  I walk in and showed the guy my phone and said, "I need some help with this."
    He immediately said, "No internet or data?"  Dayum.  He went on to say that BB 3G/4G v10 won't work in this area and that BB was aware of the problem.  Something about Sprint sharing towers with Intelos and the phones won't recognize something.  Over my head, but all other smartphones work here...just the BB Q10 won't. 
    Really bites --- when I'm on WiFi the thing rocks and is everything I need in a smartphone.  So much better than my daughters iPhone 5...except for this.

    Not sure if the same but
    my brother is unable to get Data on his Sprint iphone unless its on LTE and most where he is is not LTE enabled.
    It still makes calls and recieves calls but no data.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • For a few months now my ical keeps jumping back and forth.  It's very hard to use my calendar as it doesn't open on today, it may stay a few seconds and then it goes backwards to random dates and forwards.  It doesn't sit still so I can see what I have on

    My iCal is driving me nuts.
    It won't sit still when I am looking at my calender.  I try holding it still with one finger, two fingers and it just moves.  It jumps to random dates and I have no confidence in it any longer.   I use my calendar all the time and this just isn't good enough.
    I have gone into the apple store and they said they hadn't seen that before.  It did it while I was there.  They restored the phone and it didn't make any difference.
    I have turned the calendar off in settings - mail - icloud - deleted and then turned back on again.  It didn't help.
    I put the Google Calendar app on in the hopes I would have a calendar that wouldn't frustrate me and it is so slow in responding, I have deleted it.
    I see online that many others are having the same problem with their iCal. 
    It would be great to know the solution.
    Please help

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

  • How to display Column data in one row

    Hello,
    I have one Employee with 4 effective date displayed in one column. Effective date is drived by Reason of : New Hire, Rehire, Transfer etc.
    I want to show the effective dates for one reason in one single row. For example a person was rehired 4 times it will show as
    1006555     6/12/2006     1/2/2007     6/11/2007     5/12/2008     12/29/2008     5/17/2010
    It's currntly showing as:
    AUDITEFFECTIVEDATE_3
    6/12/2006
    1/2/2007
    6/11/2007
    5/12/2008
    5/17/2010

    Well that's a little tougher... For a solution to work, you're going to need to find a way to differentiate between the the specific hiring events.  Without seeing what data is available, I'd say start looking at the use of running totals... or in this case a running count.
    Set it up to reset on EmployeeID and count each "event", incrimenting up with each instance.
    Then your formula would look more like this...
    IF {EventType} = "Rehire" AND {#RTotal1} = 1 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Exit" AND {#RTotal1} = 1 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Rehire" AND {#RTotal1} = 2 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Exit" AND {#RTotal1} = 2 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Rehire" AND {#RTotal1} = 3 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Exit" AND {#RTotal1} = 3 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Rehire" AND {#RTotal1} = 4 THEN AUDITEFFECTIVEDATE_3
    IF {EventType} = "Exit" AND {#RTotal1} = 4 THEN AUDITEFFECTIVEDATE_3
    This issue then becomes an issue of space on the report. You end up wasting 1/2 of your horizontal space trying to allot for one odd ball... You'll also get to re-work the report if the same employee goes for rounds 5, 6 or 7...
    HTH,
    Jason

  • Not getting data in OBIEE report while pulling columns from different DB

    Hi All,
    I am creating a report in OBIEE 11g which uses Table A and table B which are joined in both physical layer and BMM layer. But somehow I am not getting any data in the report where as data is actually present for the matching joining columns. However when I made one of the tables (Table A ) as a driving table, I am getting data but only with a filter applied in the report which restricts the data to few records. If the filter is removed, I get an error which is " A Drive Table join exceeded the limit of XXX backend database queries".
    Could anyone tell me what can be the issue? Other than using driving table, is there any alternate method to resolve the issue?
    Thanks In Advance,
    Anju

    The error is due to the setting MAX_QUERIES_PER_DRIVE_JOIN in the database features table that controls and tunes driving table performance. Also, try to follow these blogposts to do cross-database joins/federated queries: http://oraclebizint.wordpress.com/2008/03/19/oracle-bi-ee-101332-cross-database-joins/ and http://www.rittmanmead.com/2007/10/reporting-against-multiple-datasources-in-obiee/
    Please assign points if helpful/correct.

Maybe you are looking for