How do I stop IN CLAUSE when query a hierarchy of object.

I have a base class which is annotated with
@Entity(name="UdmHierarchyObject")
@Table(name="UDM_HIERARCHIES")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
public class UdmHierarchyObject ...
I have a single table hierarchy of objects which use the following annotation:
@Entity(name="Lookup")
@DiscriminatorValue(value="Lookup")
public class Lookup extends UdmHierarchyObject ....
Now I may have MANY classes that extend the base and this is were I am worried. When I query, EclipseLink always creates an IN CLAUSE including all the subclassed entities, which I don't really need. And I worry about it's size.
An example query produces the SELECT below.
select l from Lookup l join l.data d
where l.hierarchyObjectName = :name and d.name = 'Code'
order by d.value"
2008-05-28 14:06:31,773 DEBUG [oracle.toplink.sql:135] - ClientSession(22145060)--Connection(23069842)--
SELECT t1.ID, t1.JPA_DISC, t1.OBJECT_NAME, t1.OBJECT_TYPE, t1.UPDATED_ON, t2.ID, t2.HIERARCHY_NAME, t2.PARENT_ID, t2.REFERENCE_ID FROM UDM_DATA t0, UDM_HIERARCHIES t2, UDM_OBJECTS t1 WHERE (((((t2.HIERARCHY_NAME = ?) AND (t0.DATA_NAME = ?)) AND (t2.ID = t1.ID)) AND (t1.JPA_DISC IN (?, ?))) AND (t0.OWNER_ID = t1.ID)) ORDER BY t0.DATA_VALUE ASC
bind => [StateCode, Code, Lookup, EventTypeCode]
The actual query is fine, however I don't always need the t1.JPA_DISC IN (?, ?) part because I am providing sufficient filtering.
Is there a way to suppress this in the query, or should I not be bothered with a large IN CLAUSE?
You comments would be appreciated.

The issue is you are querying a branch class, so only the children of this branch must be filtered. Unless you are noticing real performance issues with the IN, I would not worry about it too much.
Otherwise, you could consider using joined inheritance, or some level in between joined and single table (JPA does not support this, but TopLink does if you customize your descriptors).
You could also customize your TopLink descriptors using a DescriptorCustomizer to change how subclasses are filtered. You would need to set the ClassDescriptor's InheritancePolicy's withAllSubclassesExpression.
-- James : http://www.eclipselink.org

Similar Messages

  • How do I stop duplicating contacts when I sync with gmail

    How do I stop duplicating contacts when I sync my IPod Touch with Gmail?

    I don't know if this helps much, but Address Book was basically the same application in a previous version of the Mac OS. Folks still seem to use the terms interchangably though. Similarly, Calendar used to be "iCal."
    I believe syncing contacts with Google or iCloud is an either/or proposition - you can't do both. When you sync with either, a copy is saved to your Mac for faster access (like a web browser's cache). I believe there's still an option to save contacts exclusively to your Mac (HD), but I don't think it's either preferred or occurs by default if you have an account such as Gmail/google or iCloud already set up.
    I've never played with preferences in Contacts (Address Book), but I do have both google and iCloud accounts associated with my Mac. Under System Preferences:Mail, Contacts & Calendars, you can specify what accounts do on your Mac. If you have multiple accounts set up, a list will appear on the left side. As you select each one, a list of check boxes appear to the right for each service you want to associate with that account. For example, I have an iCloud account for mail, calendars, contacts, and Safari (among others). I have a Gmail account for mail, although it gives me the option of using this account for calendars, etc. For Gmail, the only item I have checked is mail. It's never asked me if I wanted to sync my addresses with Google.
    I hope this helps... at least a little. If nothing else, I hope I've solved the "Address Book" mystery ;-)

  • How do i stop a download when it is too slow?

    How do I stop a download when it is too slow?

    Solved my own problem:  Go to the sidebar on i Tunes to "Downloads" and click on this.  It will show current downloads.  Click on the download you wish to delete and then click on "delete" in the File menu.  You can also shift-click to delete a range of items.

  • How do I stop system sounds when using AirPlay on my MacBook Pro?

    Hi all,
    Probably a quick question, but I'm fairly new to Macs. I've a Macbook Pro 13 Late 2011 and now I've got an Apple TV, I use AirPlay. But how do I stop system sounds when using AirPlay?
    Many thanks in advance, Jon.

    Open AirPort Utility located in HD > Applications > Utilities
    From the AirPort Utility menu bar click AirPort Utility > Preferences
    Deselect:   Monitor AirPort base stations for problems

  • Avoiding WITH clause when querying Multiple Facts

    OBIEE 10.1.3.4
    We have a report which requires that we query multiple facts, which share the same Item dimension.
    When we run the report, the BI Server generates a query using the WITH clause -
    WITH SAWITH0 ( SELECT.............)
    SAWITH1( SELECT .............)
    SELECT .........
    FROM SAWITH0 FULL OUTER JOIN SAWITH1
    The above query errors out with ORA-918 Column Ambiguously Defined. I cannot find any issue in the query that has been generated.
    The query does fail from SQL Plus with the same ORA error. But each of the select statements executed properly and the complete statement executes when I replace the FULL OUTER JOIN with INNER JOIN.
    I can only assume that this is a bug in Oracle Database.
    Now at times I have seen OBIEE generate separate queries when querying multiple facts and then combine the data together in memory.
    Is there a way that I can force OBIEE to avoid using WITH clause and run separate SELECT statements ? How does the BI Server choose between using a WITH clause or running separate queries ?
    Any help would be appreciated.

    I do not have a multi-dimensional data source.
    My connection pool seems fine to me, I am not sure I need to do anything with the connection pool.
    Hi Turribeach,
    I understand that BI Server uses WITH clause for multiple facts. But I have also seen it issue separate queries against the database.
    So what I am looking to understand under what situation does it issue separate queries i.e. No WITH clause ?
    Thanks

  • How do I avoid ORA-01473 when querying hierarchial on tables with VPD predicates

    My question is how to circumvent what seems to be a limitation i ORACLE, if at all possible. Please read on.
    When using VPD (Virtual Private Database) predictaes on a table and performing a hierarchial query on that table I get the following error message:
    ORA-01473: cannot have subqueries in CONNECT BY CLAUSE
    My query may look like the folwing:
    SELECT FIELD
    FROM TABLE
    START WITH ID = 1
    CONNECT BY PRIOR ID = PARENT
    As my predicate contains a query in it self, I suspect that the implicit augmentation of the predicate results in a query that looks like:
    SELECT FIELD
    FROM TABLE
    START WITH ID = 1
    CONNECT BY PRIOR ID = PARENT
    AND OWNER IN (SELECT OWNER FROM TABLE2 WHERE ...)
    at least, when executing a query like the one above (with the explicit predicate) I get the identical error message.
    So my question is:
    Do you know of any way to force the predicate to augment itslef onto the WHERE-clause? I would be perfectly happy with a query that looks like:
    SELECT FIELD
    FROM TABLE
    START WITH ID = 1
    CONNECT BY PRIOR ID = PARENT
    WHERE OWNER IN (SELECT OWNER FROM TABLE2 WHERE ...)
    or do you know of any fix/patch/release to ORACLE that allows you to include subqueries in the CONNECT BY-clause and eliminates the error message?

    The WHERE clause or AND clause applies to the line directly above it. Please see the examples of valid and invalid queries below, which differ only in the placement of the WHERE or AND clause. If this is not sufficient, please provide some sample data and desired output to clarify what you need.
    -- valid:
    SQL> SELECT     empno,
      2            mgr,
      3            deptno
      4  FROM     emp
      5  WHERE     deptno IN
      6            (SELECT deptno
      7             FROM     dept
      8             WHERE     dname = 'RESEARCH')
      9  START WITH mgr = 7566
    10  CONNECT BY PRIOR empno = mgr
    11  /
         EMPNO        MGR     DEPTNO                           
          7788       7566         20                           
          7876       7788         20                           
          7902       7566         20                           
           800       7902         20                           
    -- invalid:
    SQL>
    SQL> SELECT     empno,
      2            mgr,
      3            deptno
      4  FROM     emp
      5  START WITH mgr = 7566
      6  CONNECT BY PRIOR empno = mgr
      7  WHERE     deptno IN
      8            (SELECT deptno
      9             FROM     dept
    10             WHERE     dname = 'RESEARCH')
    11  /
    WHERE      deptno IN
    ERROR at line 7:
    ORA-00933: SQL command not properly ended
    -- valid:
    SQL>
    SQL> SELECT     empno,
      2            mgr,
      3            deptno
      4  FROM     emp
      5  START WITH mgr = 7566
      6  AND     deptno IN
      7            (SELECT deptno
      8             FROM     dept
      9             WHERE     dname = 'RESEARCH')
    10  CONNECT BY PRIOR empno = mgr
    11  /
         EMPNO        MGR     DEPTNO                           
          7788       7566         20                           
          7876       7788         20                           
          7902       7566         20                           
           800       7902         20                           
    -- invalid:
    SQL>
    SQL> SELECT     empno,
      2            mgr,
      3            deptno
      4  FROM     emp
      5  START WITH mgr = 7566
      6  CONNECT BY PRIOR empno = mgr
      7  AND     deptno IN
      8            (SELECT deptno
      9             FROM     dept
    10             WHERE     dname = 'RESEARCH')
    11  /
    FROM       emp
    ERROR at line 4:
    ORA-01473: cannot have subqueries in CONNECT BY clause

  • How do I stop Messages notifications when the app is closed?

    Messages have an annoying tendancy to still "come through" even after I've quit the program, popping up in the right hand corner of my screen until I attend to them.  How do I stop this from happening?  There are many times in the day when I'd like to not receive messages from contacts/friends/families and just concentrate on work.  I can turn my phone off, silence it, etc. to stop messages from coming through there, but on my computer, where I am working, turning off the device in question is not an option.  With Messages on Mavericks, quitting the program doesn't seem to do the trick.

    Alternative.
    In Messages > Preferences > General Section.
    Untick the "When I Quit, Set the Status to Off Line"
    This will stop the IMAgent Support app "listening" to the servers for new messages.
    It works best if there is a Buddy list account as well as iMessages (such AIM or Jabber).
    9:33 pm      Wednesday; April 30, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How do i stop programmes opening when i start up the computer

    When i turn the mac book on it keeps opening all my programmes. How do i stop this?

    Remove the check in this box when you log out:

  • Shared Reminders: How do I stop getting emails when changes are made?

    My wife and I both have iPhone 5's that we bought 2 weeks ago. We are sharing a calendar and a "Grocery" list in reminders. I have everything set up where it is working properly but I keep getting emails when a change is made to the grocery list. I don't get emails when there are changes to the calendar.
    I want to stop getting emails when there are changes made to our grocery list but I am not sure how to do it. We both have icloud accounts and we both have checked the box under preferences in my calendar for "in app notifications" for icloud invitations. When I open Reminders in icloud I don't see a preferences for reminders.
    If it helps , or makes any difference, my wife has a yahoo mail account and I have a hotmail account. She does not get emails about changes being made.
    thanks

    Did you try to switch Push "off" and fetch to "manually"? This way no mail is delivered until you choose to open the mail app. The moment you open Mail on your device, your mail account will be checked and if any, mail will be delivered.
    Fetch New Data
    This setting lets you turn Push on or off for MobileMe, Microsoft Exchange, Yahoo!, and any other push accounts on iPhone. Push accounts deliver new information to iPhone whenever new information appears on the server (some delays may occur). You might want to turn Push off to suspend delivery of email and other information, or to conserve battery life.
    When Push is off, and with accounts that don’t support push, data can still be fetched—that is, iPhone can check with the server and see if new information is available. Use the Fetch New Data setting to determine how often data is requested. For optimal battery life, don’t fetch too often.
    Turn Push on: Choose “Mail, Contacts, Calendars” > Fetch New Data, then tap to turn Push on.
    Set the interval to fetch data: Choose “Mail, Contacts, Calendars” > Fetch New Data, then choose how often you want to fetch data for all accounts.
    To conserve battery life, fetch less frequently.
    Setting Push to OFF (or setting Fetch to Manually on the Fetch New Data screen) overrides individual account settings.
    page 203 iPhone_User_Guide
    Message was edited by: Ingo2711

  • How can I stop iPhone mirroring when it's not activated on AirPlay settings and I'm streaming music?

    I'm streaming Soundcloud from iPhone 6 plus and when I'm browsing other apps like photos the mirroring function automatically activates on my tv.
    How can I stop this?
    Mirroring is not activated on my phone.
    Thanks

    '''Scan for Malware'''
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try some of the following programs to scan for malware:
    * [http://www.malwarebytes.org/mbam.php MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://windows.microsoft.com/MSE Microsoft Security Essentials] (A good permanent anti-virus if you don't already have one)
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    '''Update Firefox'''
    [[Update Firefox to the latest version]]
    '''Reset Firefox'''
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • How do I stop Photobooth loading when I plug in my iPad?

    Everytime I plug my ipad into my macbook, photobooth loads. How do I stop this?
    Thanks

    See if the instructions on this page help http://support.apple.com/kb/TS1501

  • QT - how do I stop movie playing when click HREF to new movie

    I want to be able to open a new QT movie at any time by clicking (HREF), but how do I stop or close the first movie? I have a text tract running on the first movie with captioning. At this point I have the new movie opening and the old movie playing in the background. I'm stumped.
    eMac   Mac OS X (10.4.8)  

    Give your FLVPlayback component an instance name and then,
    possibly from the navigation element that moves the user from that
    frame, tell that component instance to stop();
    Without a more complete description of your movie's structure
    its difficult to tell where, or in how many places, you should
    issue the stop() command.

  • How do I stop automatic placement of files as a smart object in Photoshop CS4?

    I have done numerous searches on the internet to find out how to stop Photoshop from placing files as a smart object. I followed the suggestion of going to Edit > Preferences > General to uncheck the "Place or Drag Raster Images as Smart Obejct" but that option does not appear in Photoshop CS4. Does anyone know how to deal with this issue in CS4?

    This may sound strange, but to avoid the "Smart Object" designation, just stop "placing" the files. Either open them, or copy and paste them into Photoshop.
    If you're just opening raster files in Photoshop, they come in as pixels - drag a newly opened raster file onto your target Photoshop file. If you're copy/pasting art from Illustrator, you can choose at the time whether it is a "Smart Object," or "Pixels." Sounds like you want pixels.

  • How do i stop Firefox crashes when I want to print a recipie from web

    I have gone to a number of websites in the last few days and every time i try to print a form or a recipie, firefox crashes and will not allow me to print from any site

    You're not going to stop it, and out here, what's illegal?
    What it boils down to is a matter of ethics, and it's wrong. But the web
    techies build this feature into their sites because they know somebody
    is going to fly in off an engine like Google or MSN. And take something,
    like a picture. Without stopping in and signing up or something else.
    But what if I or you is out collecting stamps or avatars or wallpapers,
    and have already taken a quiz, or signed up for a product? I've already
    done that...but the site developers who use this ingenious(hijacking)
    software don't see it that way, and don't care if you just got a computer
    and want to pick up something here or there. Those sites don't get
    anything when you visit and don't leave your number. I don't what
    these 19 tracking cookies are for, do you?
    "A liar should have a good memory" Scottish saying

  • How do I stop double spacing when hitting enter. It just seems to have started doing so itself.

    I am updating contact information within a page and when I hit enter I get double spacing. I have always gotten a single space as I need now when hitting enter I get a double space. I can find no way to correct this problem. Any ideas?
    Thanks,
    KAHSR

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/main.dwt" codeOutsideHTMLIsLocked="false" -->
    <head><META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Motorcyclists for Jesus Ministries</title>
    <!-- InstanceEndEditable --><link href="css/main.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    body {
    background-color: #EFEFEF;
    background-image: url(greydb.JPG);
    -->
    </style>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_callJS(jsStr) { //v2.0
      return eval(jsStr)
    //-->
    </script>
    <!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
    </head>
    <body onLoad="MM_preloadImages('top_nav/top_nav_r2_c2_f2.gif','top_nav/top_nav_r2_c3_f2.gif','t op_nav/top_nav_r2_c4_f2.gif','top_nav/top_nav_r2_c5_f2.gif','top_nav/top_nav_r2_c6_f2.gif' ,'top_nav_lower/top_nav_lower_r2_c1_f2.jpg','top_nav_lower/top_nav_lower_r2_c2_f2.jpg','to p_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower/top_nav_lower_r4_c4_f2.jpg','top_na v_lower/top_nav_lower_r2_c8_f2.jpg','top_nav_lower/top_nav_lower_r3_c4_f2.jpg','top_nav_lo wer/top_nav_lower_r3_c6_f2.jpg','left_nav/IntButtonOver.gif','left_nav/NewsboyOver.gif','l eft_nav/MembershipOver.gif','left_nav/ShopCartOve.gif','left_nav/MemberPageOver.jpg','righ t_nav/Rideplan_Over.gif','right_nav/History_Over.gif','right_nav/Resources_Over.gif')">
    <div align="center">
      <a name="top"></a>
      <table width="1000" cellspacing="0" cellpadding="0">
        <tr>
          <td colspan="5"><table border="0" cellpadding="0" cellspacing="0" width="1012">
            <!-- fwtable fwsrc="top_nav.png" fwbase="top_nav.gif" fwstyle="Dreamweaver" fwdocid = "431710440" fwnested="0" -->
            <tr>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="381" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="99" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="99" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="152" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="98" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="98" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="84" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td colspan="8"><img src="top_nav/top_nav_r1_c1.gif" alt="Motorcyclists for Jesus Ministries" name="top_nav_r1_c1" width="1012" height="60" border="0" usemap="#top_nav_r1_c1Map" title="Motorcyclists for Jesus Ministries"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="60" border="0"></td>
            </tr>
            <tr>
              <td rowspan="2"><img src="top_nav/top_nav_r2_c1.gif" alt="Motorcyclists for Jesus Ministries" name="top_nav_r2_c1" width="381" height="41" border="0" title="Motorcyclists for Jesus Ministries"></td>
              <td><a href="index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c2','','top_nav/top_nav_r2_c2_f2.gif',1);"><img name="top_nav_r2_c2" src="top_nav/top_nav_r2_c2.gif" width="99" height="40" border="0" title="Motorcyclists for Jesus Ministries"></a></td>
              <td><a href="events.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c3','','top_nav/top_nav_r2_c3_f2.gif',1);"><img name="top_nav_r2_c3" src="top_nav/top_nav_r2_c3.gif" width="99" height="40" border="0" title="Motorcyclists for Jesus Ministries Events"></a></td>
              <td><a href="spokenword.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c4','','top_nav/top_nav_r2_c4_f2.gif',1);"><img name="top_nav_r2_c4" src="top_nav/top_nav_r2_c4.gif" width="152" height="40" border="0" title="Motorcyclists for Jesus Ministries Newsletter"></a></td>
              <td><a href="links.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c5','','top_nav/top_nav_r2_c5_f2.gif',1);"><img name="top_nav_r2_c5" src="top_nav/top_nav_r2_c5.gif" width="98" height="40" border="0" title="Motorcyclists for Jesus Ministries Teams and Links"></a></td>
              <td colspan="2"><a href="contact.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c6','','top_nav/top_nav_r2_c6_f2.gif',1);"><img name="top_nav_r2_c6" src="top_nav/top_nav_r2_c6.gif" width="99" height="40" border="0" title="Contact Motorcyclists for Jesus Ministries"></a></td>
              <td rowspan="2"><img name="top_nav_r2_c8" src="top_nav/top_nav_r2_c8.gif" width="84" height="41" border="0" title="Motorcyclists for Jesus Ministries"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="40" border="0"></td>
            </tr>
            <tr>
              <td colspan="6"><img name="top_nav_r3_c2" src="top_nav/top_nav_r3_c2.gif" width="547" height="1" border="0" title=""></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="1" border="0"></td>
            </tr>
          </table></td>
        </tr>
        <tr>
          <td colspan="5"><table border="0" cellpadding="0" cellspacing="0" width="1011">
            <!-- fwtable fwsrc="top_nav_lower.png" fwbase="top_nav_lower.jpg" fwstyle="Dreamweaver" fwdocid = "877594449" fwnested="0" -->
            <tr>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="227" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="2" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="227" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="225" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="3" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="204" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="120" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td colspan="10"><img src="top_nav_lower/top_nav_lower_r1_c1.jpg" alt="Motorcyclists for Jesus Ministries" name="top_nav_lower_r1_c1" width="1011" height="179" border="0" usemap="#top_nav_lower_r1_c1Map"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="179" border="0"></td>
            </tr>
            <tr>
              <td rowspan="3"><a href="prayer_requests.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c1','','top_nav_lower/top_nav_lower_r2_c1_f2. jpg',1);"><img name="top_nav_lower_r2_c1" src="top_nav_lower/top_nav_lower_r2_c1.jpg" width="227" height="58" border="0" alt=""></a></td>
              <td colspan="3"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c2','','top_nav_lower/top_nav_lower_r2_c2_f2. jpg','top_nav_lower_r3_c2','','top_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower_r4 _c4','','top_nav_lower/top_nav_lower_r4_c4_f2.jpg',1);"><img name="top_nav_lower_r2_c2" src="top_nav_lower/top_nav_lower_r2_c2.jpg" width="230" height="1" border="0" alt=""></a></td>
              <td colspan="3"><img name="top_nav_lower_r2_c5" src="top_nav_lower/top_nav_lower_r2_c5.jpg" width="432" height="1" border="0" alt=""></td>
              <td rowspan="2" colspan="2"><a href="back_patch.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c8','','top_nav_lower/top_nav_lower_r2_c8_f2. jpg',1);"><img name="top_nav_lower_r2_c8" src="top_nav_lower/top_nav_lower_r2_c8.jpg" width="121" height="57" border="0" alt=""></a></td>
              <td rowspan="4"><img name="top_nav_lower_r2_c10" src="top_nav_lower/top_nav_lower_r2_c10.jpg" width="1" height="69" border="0" alt=""></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td rowspan="2" colspan="2"><a href="mission_statement.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c2','','top_nav_lower/top_nav_lower_r2_c2_f2. jpg','top_nav_lower_r3_c2','','top_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower_r4 _c4','','top_nav_lower/top_nav_lower_r4_c4_f2.jpg',1);"><img name="top_nav_lower_r3_c2" src="top_nav_lower/top_nav_lower_r3_c2.jpg" width="229" height="57" border="0" alt=""></a></td>
              <td colspan="2"><a href="photos.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r3_c4','','top_nav_lower/top_nav_lower_r3_c4_f2. jpg',1);"><img name="top_nav_lower_r3_c4" src="top_nav_lower/top_nav_lower_r3_c4.jpg" width="226" height="56" border="0" alt=""></a></td>
              <td colspan="2"><a href="events.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r3_c6','','top_nav_lower/top_nav_lower_r3_c6_f2. jpg',1);"><img name="top_nav_lower_r3_c6" src="top_nav_lower/top_nav_lower_r3_c6.jpg" width="207" height="56" border="0" alt=""></a></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="56" border="0"></td>
            </tr>
            <tr>
              <td><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c2','','top_nav_lower/top_nav_lower_r2_c2_f2. jpg','top_nav_lower_r3_c2','','top_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower_r4 _c4','','top_nav_lower/top_nav_lower_r4_c4_f2.jpg',1);"><img name="top_nav_lower_r4_c4" src="top_nav_lower/top_nav_lower_r4_c4.jpg" width="1" height="1" border="0" alt=""></a></td>
              <td rowspan="2" colspan="5"><img name="top_nav_lower_r4_c5" src="top_nav_lower/top_nav_lower_r4_c5_fade.jpg" width="553" height="12" border="0" alt=""></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td colspan="4"><img name="top_nav_lower_r5_c1" src="top_nav_lower/top_nav_lower_r5_c1_fade.jpg" width="457" height="11" border="0" alt=""></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="11" border="0"></td>
            </tr>
          </table></td>
        </tr>
        <tr align="left" valign="top">
          <td bgcolor="#EFEFEF"><div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left">
            <table width="1010" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td width="227" align="left" valign="top" bgcolor="#295789"><p><a href="international.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('International','','left_nav/IntButtonOver.gif',1)"><img src="left_nav/IntButtonUp.gif" alt="International Page" name="International" width="227" height="80" id="International" title "MJM International align="baseline" border="0""></a><a href="newsletter.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Newsletter','','left_nav/NewsboyOver.gif',1)"><img src="left_nav/NewsboyUp.gif" alt="TEAM Voice Newsletter" width="227" height="80" id="Newsletter" align="baseline" border="0"><br>
                </a><a href="goodies.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('ShoppingCart','','left_nav/ShopCartOve.gif',1)"><img src="left_nav/ShopCartUp.gif" alt="Shopping Cart" width="227" height="80" id="ShoppingCart" align="baseline" border="0"><br>
                </a><a href="members.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Member Page','','left_nav/MemberPageOver.jpg',1)"><img src="left_nav/MemberPageUp.jpg" alt="Members Only Page" width="227" height="80" id="Member Page" border=0></a></p>
                  <p> </p>
                  <p> </p></td>
                <td width="11" bgcolor="#EFEFEF"><img src="graphics/spacer10x10.gif" width="10" height="10"></td>
                <td width="640" align="left" valign="top" bgcolor="#EFEFEF"><!-- InstanceBeginEditable name="body" -->
                  <div align="left" class="body_text">
                    <table width="100%" border="0">
                      <tr>
                        <td width="33%"><span class="page_subtitle1"><img src="graphics/links.jpg" alt="Motorcyclists for Jesus Ministries Prayer Requests" width="200" height="135"></span></td>
                        <td width="67%"><p class="page_title">Teams &amp; Links</p>
                          <p class="page_title"><span class="body_text">To contact any TEAM below that does not yet have contact information, or a website listed, </span></p>
                          <p class="page_title"><span class="body_text">please <a href="mailto:[email protected]?subject=MJM Teams & Links">e-mail us</a></span><a href="mailto:[email protected]?subject=MJM Teams & Links"></a></p></td>
                      </tr>
                  </table>
                    <table width="640" cellpadding="0" cellspacing="0">
                      <tr>
                        <td width="33%" valign="top"><p class="page_subtitle1"><em> <strong>INDIANA: </strong></em></p>
                          <p> <strong>NEW LIFE RIDERS</strong><br>
                            Indianapolis, IN <br>
                            Bob Dillon <br>
                            317-839-8572<br>
                            <a href="Bob" _mce_href="mailto:www.newliferiders.com">Bob">mailto:www.newliferiders.com">Bob Dillon</a><a href="http://www.newliferiders.com" target="_blank" class="links"></a></p>
                          <p class="page_subtitle1"><em><strong>KANSAS: </strong></em></p>
                          <p> <strong>SOUL SEEKERS</strong><br>
                            Minneola, KS<br>
                            Tom Yost<br>
                            <a href="Tom" _mce_href="mailto:[email protected]">Tom">mailto:[email protected]">Tom Yost</a><a href="mailto:[email protected]" class="links"></a><br>
                            <br>
                            <em class="page_subtitle1"> <strong>KENTUCKY: </strong></em></p>
                          <p> <strong>JOY RIDERS </strong><br>
                            Louisville, KY<br>
                          </p>
                          <p><strong>SONSHINE RIDERS</strong><br>
                            Glasgow, KY <br>
                            <a href="Esther" _mce_href="mailto:[email protected]">Esther">mailto:[email protected]">Esth er Medina</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p><strong>TEAM IRON ANGELS</strong><br>
                            Finchville, KY <br>
                            Morris Lyons <br>
                            1-502-321-3147 <br>
                            <a href="mailto:[email protected] ">Morris Lyons</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p class="page_subtitle1"><em><strong>NEW JERSEY: </strong></em></p>
                          <p> <strong>INSURRECTA NEX</strong><br>
                            Mt. Holly, NJ <br>
                            George Krail <br>
                            609-937-9429 <br>
                            <a href="George" _mce_href="mailto:[email protected]">George">mailto:[email protected]">George Krail</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p class="page_subtitle1"> </p>
                          <p> </p></td>
                        <td width="37%" valign="top"><p class="page_subtitle1"><em><strong>NEW YORK: </strong></em></p>
                          <p> <strong>RAPTURE BOUND</strong><br>
                            Port Jervis, NY<br>
                            George Tamburino <br>
      <a href="George" _mce_href="mailto:[email protected]">George">mailto:[email protected]">George Tamburino</a><a href="mailto:[email protected]%20" class="links"></a></p>
                          <p><strong>RAPTURE RYDERS</strong><br>
                            Schroon Lake, New York <br>
                            Ken Hedden Sr.<br>
                            1-518-532-7002 <br>
                            <a href="Ken" _mce_href="mailto:[email protected]">Ken">mailto:[email protected]">Ken Hedden Sr.</a></p>
                          <p class="page_subtitle1"><em><strong>OHIO: </strong></em></p>
                          <p> <strong>DAYTON BELIEVERS</strong><br>
                            Dayton, OH <br>
                            Santo Landerer II. <br>
                            937-901-5514<br>
                            <a href="Santo" _mce_href="mailto:[email protected]">Santo">mailto:[email protected]">Santo Landerer ll.</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p><br>
                            <em class="page_subtitle1"> <strong>OKLAHOMA: </strong></em></p>
                          <p> <strong>SAMARITAN RIDERS</strong><br>
                            Oklahoma City, OK <br>
                            James &ldquo;Sonny&rdquo; Ticer <br>
                            1-405-496-9882 </p>
                          <p class="page_subtitle1"><em><strong>OREGON: </strong></em></p>
                          <p> <strong>HOLY SOLDIERS</strong><br>
                            Grants Pass, OR. <br>
                            Steve McMahill <br>
                            <a href="Steve" _mce_href="mailto:[email protected]">Steve">mailto:[email protected]">Steve McMahill</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p class="page_subtitle1"><em><strong>PENNSYLVANIA: </strong></em></p>
                          <p> <strong>CALVARY RIDERS </strong><a href="http://www.mjmcalvaryriders.com/"><br>
                            </a>Feasterville , PA <a href="http://www.mjmcalvvaryriders.com"><br>
                              </a>Doug McDonald<br>
                            <a href="Doug" _mce_href="mailto:[email protected]">Doug">mailto:[email protected]">Do ug McDonald</a><br>
                            <a href="http://www.mjmcalvaryriders.com/" target="_blank" class="links"></a><a href="Calvary" _mce_href="https://sites.google.com/site/mjmcalvaryriders">Calvary">https://sites.google. com/site/mjmcalvaryriders">Calvary Riders</a><a href="https://sites.google.com/site/mjmcalvaryriders" target="_blank"></a></p>
                          <p><br>                       
                            <br>
                          </p></td>
                        <td width="30%" valign="top"><p class="page_subtitle1"><a href="http://www.pagospelriders.com" target="_blank"> <br>
                          </a><a href="mailto:www.gospelriders.commailto:www.gospelriders.com"></a></p>
                          <p><strong>GOSPEL RIDERS </strong><br>
    Boyertown, PA <br>
    <a href="Fred" _mce_href="mailto:[email protected]">Fred">mailto:[email protected]">Fred McClincy</a></p>
                          <p>1-215-234-8611</p>
                          <p><a href="www.gospelriders.com" target="new">www.gospelriders.com</a></p>
                          <p><strong>MASON DIXON GOSPEL RIDERS</strong><br>
                            Fayetteville, PA <br>
                            Ron King <a href="mailto:[email protected]?subject=Contact%20through%20go2mjm.com"> <br></a><a href="Ron" _mce_href="mailto:[email protected]">Ron">mailto:[email protected]">Ron King</a></p>
                          <p><strong>RIDERS FOR THE SON</strong><br>
                            Glenside, PA<br>
                            <a href="Curtis" _mce_href="mailto:[email protected]">Curtis">mailto:[email protected]">Curtis Jones</a><br>
                            <a href="www.mjmridersfortheson.com" target="new">www.mjmridersfortheson.com</a></p>
                          <p><strong>ROLLING SAINTS</strong><br>
                            Gettysburg, PA <br>
                            Dan Shinners <br>
                            717-634-6682 <br>
                            <a href="Rolling" _mce_href="mailto:[email protected]">Rolling">mailto:[email protected]" >Rolling Saints</a><a href="mailto:[email protected]" class="links"></a><br>
                            <a href="http://www.mjm-rollingsaints.com" target="_blank" class="links">www.mjm-rollingsaints.com</a></p>
                          <p><em><strong>VERMONT: </strong></em></p>
                          <p> <strong>VERMONT CHRISTIAN RIDERS</strong><br>
                            Pittsford, VT <br>
                            <a href="Phil" _mce_href="mailto:[email protected]">Phil">mailto:[email protected]">Phil Guica</a><a href="http://www.ourchurch.com/member/b/BikersForJesus" target="_blank"> <br>
                              <span class="links">www.ourchurch.com/</span></a></p>
                          <p> <em class="page_subtitle1"><strong>VIRGINIA: </strong></em></p>
                          <p> <strong>KING&rsquo;S RIDERS</strong><br>
                            Richmond, VA<br>
                            Gary Cobb 1-804-270-5548 </p></td>
                      </tr>
          </table>
                    <p class="page_subtitle1"> </p>
                  </div>
                <!-- InstanceEndEditable --></td>
                <td width="11" align="left" valign="top" bgcolor="#EFEFEF"> </td>
                <td width="120" align="left" valign="top" bgcolor="#5990D0"><p><a href="membership.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Membership','','left_nav/MembershipOver.gif',1)"><img src="left_nav/MembershipUp.gif" alt="Come Ride with Us" width="120" height="180" id="Membership" border="0"></a><a href="rideplan.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Ride Plan','','right_nav/Rideplan_Over.gif',1)"><img src="right_nav/Rideplan_Up.gif" alt="Where will your ride take you?" width="120" height="40" id="Ride Plan" border=0><br>
                  </a><a href="history.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('MJM History','','right_nav/History_Over.gif',1)"><img src="right_nav/History_Up.gif" alt="How it all started" width="120" height="40" id="MJM History" border=0></a><a href="resources.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Resources','','right_nav/Resources_Over.gif',1)"><img src="right_nav/Resources_Up.gif" alt="Our favorite places to find things" width="120" height="40" id="Resources" border=0></a></p>
                  <p> </p></td>
              </tr>
            </table>
                   <br>
              <table width="100%"  cellspacing="0" cellpadding="0">
                <tr>
                  <td width="28%" bgcolor="#EFEFEF"> </td>
                  <td width="2%" bgcolor="#EFEFEF"><span class="body_text"><A HREF="#top"><IMG BORDER="0" SRC="graphics/arrow1.jpg" WIDTH="14" HEIGHT="8" title="go to the top of this page"></A></span></td>
                  <td width="70%" bgcolor="#EFEFEF" class="body_text"> <a href="#" onClick="MM_callJS('this.history.back()')"><IMG SRC="graphics/arrow.jpg" alt="Go back one page" WIDTH="8" HEIGHT="14" BORDER="0" title="go back one page"></a></td>
                </tr>
              </table>
          </div></td>
        </tr>
        <tr>
          <td colspan="5"><img src="graphics/footer.jpg" title="Motorcyclists for Jesus Ministries" width="1011" height="85" border="0" usemap="#Map"></td>
        </tr>
      </table>
    </div>
    <p>
      <map name="Map">
        <area shape="rect" coords="100,44,247,54" href="http://www.go2mjm.com" title="Motorcyclists for Jesus Ministries">
        <area shape="rect" coords="779,49,930,59" href="http://www.go2mjm.com" title="Motorcyclists for Jesus Ministries">
      </map>
      <map name="top_nav_r1_c1Map">
        <area shape="rect" coords="355,6,1005,17" href="#">
      </map>
    </p>
    <p>
      <map name="top_nav_lower_r1_c1Map">
        <area shape="rect" coords="593,112,663,132" href="helping_hand.html">
      </map>
    </p>
    </body>
    <!-- InstanceEnd --></html>

Maybe you are looking for