CONNECT BY with a join, keeping the top joined record  for the entire tree?

Faced with a Groupe TABLE, and a Groupe_Role TABLE, i am trying to get a user's rights FROM Groupe_Role for each and every member in Groupe. However, the user's rights should be the same right as where we entered the tree.
Here are sample TABLEs, with my attempt at a query, which obviously does not work because the WHERE clause limits the records from the tree.
WITH
     Groupe
AS
      SELECT 1 Id, 'cupboards'      Name, NULL     Parent FROM Dual UNION ALL
      SELECT 2 Id, 'book-shelves'      Name, 1     Parent FROM Dual UNION ALL
      SELECT 3 Id, 'maps'           Name, NULL     Parent FROM Dual UNION ALL
      SELECT 4 Id, 'pictures'      Name, 3     Parent FROM Dual UNION ALL
      SELECT 5 Id, 'pegs'           Name, 4     Parent FROM Dual UNION ALL
      SELECT 6 Id, 'jar'           Name, NULL     Parent FROM Dual UNION ALL
      SELECT 7 Id, 'orange marmalade' Name, 6     Parent FROM Dual UNION ALL
      SELECT 8 Id, 'sticks'           Name, NULL     Parent FROM Dual UNION ALL
      SELECT 9 Id, 'dry leaves'      Name, 8     Parent FROM Dual
     Groupe_Role
AS
      SELECT 1 Groupe, 'Charles'     Member, 'Keeper'     Role FROM Dual UNION ALL
      SELECT 2 Groupe, 'Charles'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 3 Groupe, 'Lewis'     Member, 'Keeper'     Role FROM Dual UNION ALL
      SELECT 1 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 3 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 6 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 8 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual
SELECT
     Groupe.Id,
     Groupe.Name,
     Groupe_Role.Member,
     Groupe_Role.Role
FROM
     Groupe_Role,
     Groupe
WHERE
     Groupe.Id = Groupe_Role.Groupe
CONNECT BY
     Groupe.Parent = PRIOR Groupe.Id
START WITH
     Groupe.Parent IS NULL
ORDER BY
     Groupe_Role.Member,
     Groupe_Role.Groupe;The results i am looking for are as follows:
1 Alice      Player 'cupboards'
2 Alice      Player 'book-shelves'
3 Alice      Player 'maps'
4 Alice      Player 'pictures'
5 Alice      Player 'pegs'
6 Alice      Player 'jar'
7 Alice      Player 'orange marmalade'
8 Alice      Player 'sticks'
9 Alice          Player 'dry leaves'
1 Charles     Keeper 'cupboards'
2 Charles     Keeper 'book-shelves'
2 Charles     Player 'book-shelves'
3 Lewis      Keeper 'maps'
4 Lewis      Keeper 'pictures'
5 Lewis      Keeper 'pegs'How would i write such a query?

It's amazing what a little legwork will do:
10g: CONNECT_BY_ROOT Id Root_Id,
9i:     REPLACE(SYS_CONNECT_BY_PATH(DECODE(Level, 1, Id), '~'), '~')
WITH
     Groupe
AS
      SELECT 1 Id, 'cupboards'      Name, NULL     Parent FROM Dual UNION ALL
      SELECT 2 Id, 'book-shelves'      Name, 1     Parent FROM Dual UNION ALL
      SELECT 3 Id, 'maps'           Name, NULL     Parent FROM Dual UNION ALL
      SELECT 4 Id, 'pictures'      Name, 3     Parent FROM Dual UNION ALL
      SELECT 5 Id, 'pegs'           Name, 4     Parent FROM Dual UNION ALL
      SELECT 6 Id, 'jar'           Name, NULL     Parent FROM Dual UNION ALL
      SELECT 7 Id, 'orange marmalade' Name, 6     Parent FROM Dual UNION ALL
      SELECT 8 Id, 'sticks'           Name, NULL     Parent FROM Dual UNION ALL
      SELECT 9 Id, 'dry leaves'      Name, 8     Parent FROM Dual
     Groupe_Role
AS
      SELECT 1 Groupe, 'Charles'     Member, 'Keeper'     Role FROM Dual UNION ALL
      SELECT 2 Groupe, 'Charles'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 3 Groupe, 'Lewis'     Member, 'Keeper'     Role FROM Dual UNION ALL
      SELECT 1 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 3 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 6 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual UNION ALL
      SELECT 8 Groupe, 'Alice'     Member, 'Player'     Role FROM Dual
SELECT
     Groupe_Trees.Id,
     Groupe_Trees.Name,
     Groupe_Role.Member,
     Groupe_Role.Role
FROM
     Groupe_Role,
      SELECT
          --CONNECT_BY_ROOT Id Root_Id,
          REPLACE(SYS_CONNECT_BY_PATH(DECODE(Level, 1, Id), '~'), '~') Root_Id,
          Id,
          Name
      FROM
          Groupe
      CONNECT BY
          Groupe.Parent = PRIOR Groupe.Id
     ) Groupe_Trees
WHERE
     Groupe_Role.Groupe = Groupe_Trees.Root_Id
ORDER BY
     Groupe_Role.Member,
     Groupe_Trees.Id;

Similar Messages

  • I just started my Macbook air the first time, connected it with my wlan and know it asks me for a password and it does not accept the only password I know, what can I do?

    I just started my Macbook air the first time, connected it with my wlan and know it asks me for a password and it does not accept the only password I know, what can I do?

    It needs the user password for the wireless router, that would have been set by whomever installed the router, if that was you then try to find the password. If you can not find the password reset the router to factory default and set it up again.

  • On my iPad, if I deleted the iCloud account that I am signed in with, does it delete the entire account (even on other devices)? And would that also delete the apps on the iPad downloaded with that iClouds account?

    On my iPad, if I deleted the iCloud account that I am signed in with, does it delete the entire account (even on other devices)? And would that also delete the apps on the iPad downloaded with that iClouds account?

    They were initially setup with the smae Apple ID but when you delete the iCloud account from the phone you disassociate iCloud items on your phone.
    If you want to rid the device of the Apple ID completely you will need to sign out in seceral places:
    Settings > iCloud > Delete Account
    Settings > Messages > Turn off iMessage
    Setings > FaceTime > Turn off FaceTime
    Settings > iTunes & App Stores > Apple ID > Sign out
    Settings > Game Center > Apple ID > Sign out
    Note: You can keep the iTunes & App Stores sign in to share purchases without any effect on anything else
    You should consider getting your own Apple ID.

  • I have an image that I removed from its back ground and I would like to scale the bottom portion of the image because its to wide but not have that effect the top portion of the image which is the correct with. but also keep the aspect ratio correct? how

    I have an image that I removed from its back ground and I would like to scale the bottom portion of the image because its to wide but not have that effect the top portion of the image which is the correct width. but also keep the aspect ratio correct, keep it looking as natural as possible (its a piece of jewlery) ? how can I begin to do this.

    The area circled in red is to wide (the width) the necklace's width is as wide as the models entire chest. And also the length of the necklace it's to long it should come down to the clevage area on the model/woman.

  • Connection iphone with msi laptop: keeps disconnecting and connecting.

    I wanted to get a picture from my iphone, and it is the first time I connect the phone to my new msi laptop.
    Suddenly, my iphone keeps buzzing, and charging, and stops charging, , this goes very fast , up (connected) and down(disconnected).
    I thaught maybe the cable, although the cable worked great yesterday charging my phone through a wall outlet.
    I tried another cable, same problem.
    Then I took another laptop: connection established after driver was installed.
    How come msi laptop behave strange ??
    I really hope I can still tell my friends to buy a msi... Can this be fixed with software? I don't want to send it back , after spending so much time installing, troubleshooting... .

    Quote from: hara_mo on 30-May-15, 03:09:35
    I wanted to get a picture from my iphone, and it is the first time I connect the phone to my new msi laptop.
    Suddenly, my iphone keeps buzzing, and charging, and stops charging, , this goes very fast , up (connected) and down(disconnected).
    I thaught maybe the cable, although the cable worked great yesterday charging my phone through a wall outlet.
    I tried another cable, same problem.
    Then I took another laptop: connection established after driver was installed.
    How come msi laptop behave strange ??
    I really hope I can still tell my friends to buy a msi... Can this be fixed with software? I don't want to send it back , after spending so much time installing, troubleshooting... .
    Does the cable you try is the official one from the apple store?
    Which iphone model do you have and what's the iOS version, iTunes version?
    Quote from: hara_mo on 31-May-15, 17:59:41
    added: same problem connection gps on msi laptop.
    installation did not succeed of the new update card.
    second time, I  held the laptop and followed the installation (while watchin tv), at the end, I moved then, connection was lost en then made back again, and this for a couple of times.
    But at the end, card was installed succesfully, luckily, it take hours to download and install the card.
    I really hope for a quick solution.
    Can you explain how you install the card and what kind of card are you installing?
    Are you conneting to the internet through wifi? or you use bluetooth or something else to download the GPS maps or something else?

  • Multi WAN connection Session with Online Banking loses the connection

    Hello,
    I configured a new RV016 with ADSL ports and tested basicly the function. Everything seems to be working until one person discribed me an error while he tries to establish an online banking connection. After he enters the credentials and klick to OK, the step verifying should follow, an error message appears:
    In german:
    Ihre InternetBanking-Sitzung wurde aus Sicherheitsgründen beendet.
    Folgende Gründe können vorliegen:
    Sie haben zu lange keine Eingaben vorgenommen.
    Ihre Internet-Verbindung wurde vorzeitig beendet. Dies kann durch zu niedrig eingestellte Zeitlimite
    bei DSL-Routern oder Internet-Verbindungs-Tools auftreten.
    In English
    Your Internatbanking is due to security reason terminated.
    You have not done any enties for a long time
    Your Internet connection was terminated prematurely. This can happen if idle time configuration on the DSL router is set to low.
    A friend of me who is Firewall specialist told me that the router with multi WAN Ports and configured with load balancing automatically has these kind of problems as the packages will forwarded through multiple WAN ports and the online banking understands it as disruption of the connection.
    I set the keep connection to 5 sec and to the WAN Ports to intelegence balancer or IP groups (but not configured) , nothing solved the problem.
    Can anybody give me some advises or help me to solve this problem?
    many thanks and best regards
    Nevzat

    Sorry, but I have the exact same problem.  It is not a problem with Battlefield's servers as it is actually affecting all online games...and it is not affecting 15-20 neighbors who are FIOS customers.  When a neighbor hosts a game online, only my connection fails.  When I host a game, it fails for everyone.  When I am not in the party, nobody has a problem
    I have FIOS connected to the router via coaxial cable.  I've had FIOS for 6 years without a single problem.  Then 1 month ago my kids reported that when playing Xbox Live they are "lagging out" and having to turn the xbox on/off.  The Xbox is connected via CAT5.  Also, when a laptop, iphone or ipad are connected via wifi, the connection is lost and a reboot of the device is required.  I did factory resets and every other suggested step to no avail.  Through it all, my desktop that is connected to the router via CAT5 experienced no problems.
    I contacted VZ several times and they sent a new router.  Things looked better for 1 day, now it's actually worse.  The problems now affect the desktop's connection.  Sporadically, all internet connectivity is lost.  I then have to reboot the router.  However, after rebooting the router, any device trying to connect to the internet, via CAT5 or wifi, gets an "invalid IP address" type of error message.  I have screenshots at home which I'll add later.
    Extremely frustrating, esp when contacting customer service as they go through the same script - reboot router, send a signal.  Factory reset modem, send a signal.  After that, they have no suggestions and simply try to get you off the line

  • How to use iTunes to put new music on an iPhone 4S with old music, keeping the old???

    I recently bought a new computer. My iPhone has amid of iTunes + Purchased. I burned a CD and want to put new music on it, but I also want to keep the ones currently on it. HELP!!

    You need to move the iTunes Music Library from your old computer to your new one. Then you can add the new CD to iTunes and sync your device to it without losing anything you have already:
    iTunes: How to move your music to a new computer
    Cheers,
    GB

  • Create a timestamp with current_timestamp but keeping the seconds as 00

    Hi Everyone,
    I was wondering if there is an easier/better way to use the current_timestamp as my base timestamp and display another timestamp with current time and the seconds as 00. E.g., 4:30:00. The below is working but I am thinking it is overly complex.
    CAST('timestamp' || ' ' || char(39) || TRIM(CAST(YEAR(CURRENT_DATE) AS CHAR)) || '-' ||
    CASE WHEN MONTH(CURRENT_DATE) = '1' THEN '01'
    WHEN MONTH(CURRENT_DATE) = '2' THEN '02'
    WHEN MONTH(CURRENT_DATE) = '3' THEN '03'
    WHEN MONTH(CURRENT_DATE) = '4' THEN '04'
    WHEN MONTH(CURRENT_DATE) = '5' THEN '05'
    WHEN MONTH(CURRENT_DATE) = '6' THEN '06'
    WHEN MONTH(CURRENT_DATE) = '7' THEN '07'
    WHEN MONTH(CURRENT_DATE) = '8' THEN '08'
    WHEN MONTH(CURRENT_DATE) = '9' THEN '09'
    ELSE CAST(MONTH(CURRENT_DATE) AS CHAR) END || '-' ||
    CASE WHEN DAYOFMONTH(CURRENT_DATE) = '1' THEN '01'
    WHEN DAYOFMONTH(CURRENT_DATE) = '2' THEN '02'
    WHEN DAYOFMONTH(CURRENT_DATE) = '3' THEN '03'
    WHEN DAYOFMONTH(CURRENT_DATE) = '4' THEN '04'
    WHEN DAYOFMONTH(CURRENT_DATE) = '5' THEN '05'
    WHEN DAYOFMONTH(CURRENT_DATE) = '6' THEN '06'
    WHEN DAYOFMONTH(CURRENT_DATE) = '7' THEN '07'
    WHEN DAYOFMONTH(CURRENT_DATE) = '8' THEN '08'
    WHEN DAYOFMONTH(CURRENT_DATE) = '9' THEN '09'
    ELSE CAST(DAYOFMONTH(CURRENT_DATE) AS CHAR) END || ' ' ||
    TRIM(CASE WHEN HOUR(CURRENT_TIMESTAMP) = '1' THEN '01'
    WHEN HOUR(CURRENT_TIMESTAMP) = '2' THEN '02'
    WHEN HOUR(CURRENT_TIMESTAMP) = '3' THEN '03'
    WHEN HOUR(CURRENT_TIMESTAMP) = '4' THEN '04'
    WHEN HOUR(CURRENT_TIMESTAMP) = '5' THEN '05'
    WHEN HOUR(CURRENT_TIMESTAMP) = '6' THEN '06'
    WHEN HOUR(CURRENT_TIMESTAMP) = '7' THEN '07'
    WHEN HOUR(CURRENT_TIMESTAMP) = '8' THEN '08'
    WHEN HOUR(CURRENT_TIMESTAMP) = '9' THEN '09'
    ELSE CAST(HOUR(CURRENT_TIMESTAMP) AS CHAR) END) || ':' ||
    TRIM(CASE WHEN MINUTE(CURRENT_TIMESTAMP) = '1' THEN '01'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '2' THEN '02'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '3' THEN '03'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '4' THEN '04'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '5' THEN '05'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '6' THEN '06'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '7' THEN '07'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '8' THEN '08'
    WHEN MINUTE(CURRENT_TIMESTAMP) = '9' THEN '09'
    ELSE CAST(MINUTE(CURRENT_TIMESTAMP) AS CHAR) END) || ':00' ||
    char(39) AS TIMESTAMP)
    Thanks in advance for any comments
    Edited by: user10930658 on Mar 25, 2009 2:05 PM

    timestampadd(SQL_TSI_SECOND, -second(current_timestamp ), current_timestamp )

  • Is it possible to transfer a completed iPhoto book from one Mac to another, keeping the entire book structure intact?

    I recently went on vacation and decided to use some of the free time to create some books of family photos. I transfered the entire iPhoto library of pictures from my my iMac to a MacBook which had never before been used for photos. The library transferred perfectly with all photos, albums, calendars, books, etc. intact. (Thank you, AirDrop!)
    I successfully created and ordered 3 different books of photos on the MacBook. Now I want to transfer just those 3 completed books back to the iMac for archiving. Can I use the "Export" command to do this? If so, should I use JPEG, TIFF, etc?
    I realize I could simply transfer the entire library file back from the MacBook back to the iMac, but I'd prefer not to take up all that disc space by having two photo libraries on my hard drive (and I'm chicken to delete the original iMac library).
    Thanks in advance for your help.
    Bob Baker

    Yes you can move the book but not by exporting
    The book is just entries in the iPhoto database so the only way to transfer it is ot transfer the entire library it is in - you can make a "mini" library containing only one book to make the transfer easier - see Old Toad's tutorial #9 - http://oldtoadstutorials.net/No._9.html
    You also can save a PDF of the book and transfer that but you can not edit pr process it
    LN

  • Make a region editable while keeping the entire page as read only

    Hi All,
    I have made an entire page as readonly via the following :
    ClientUtil.setViewOnlyRecursive(pageContext, webBean);
    Now I want the entire page to be readonly except for a sub tab used in the page.
    <oa:subTabLayout id="subTabLayoutRn">
      <ui:contents>
        <oa:header id="tasksTabRN" extends="/oracle/apps/ozf/claim/webui/TasksTabRN"/>
      </ui:contents>
      <ui:subTabs>
        <oa:subTabBar id="subTabBarsRN">
          <ui:contents>
            <oa:link id="tasksTabLink" text="Tasks">
               <ui:primaryClientAction>
                  <ui:firePartialAction event="updateSubTab"/>
               </ui:primaryClientAction>
             </oa:link>
          </ui:contents>
       </oa:subTabBar>
      </ui:subTabs>
    </oa:subTabLayout>
    This sub tab i want to display as editable. Can anyone kindly provide any suggestions on how to achieve this?
    Thanks,
    Arpita

    Hi Sushant,
    Thanks for the reply.
    I am using setViewOnlyRecursive on condition basis only i.e.
    If (status of claim is close / cancelled / pending_approval)
    then
    ClientUtil.setViewOnlyRecursive(pageContext, webBean);
    But I want to make tasksTabRN of the subTabLayout as editable if status of claim is pending_approval.
    How do i code this condition ?
    In the below code, we can get the subTabLayout control but what to do next?
    if(webBean!=null)
    OASubTabLayoutBean subTabLayoutBean = (OASubTabLayoutBean)webBean.findIndexedChildRecursive("subTabLayoutRn");
    if(subTabLayoutBean!=null)
    UINodeList childList = subTabLayoutBean.getIndexedNodeList();
    if(childList!=null)
    RenderingContext rdgCtxt = pageContext.getRenderingContext();
    int size = childList.size(rdgCtxt);
    OAWebBean child = null;
    for(int i=0; i<size; i++)
    child = (OAWebBean)childList.getUINode(rdgCtxt, i);
    if(child!=null)
    String name = child.getUINodeName();
    if("tasksTabRN".equals(name))
    // We can set the value of  subTabLayoutBean as rendered or hideSubTab
    // But how do i make this as editable.
    //subTabLayoutBean. ????
    break;

  • How to get top 10 records for each option in table prompt?

    Hi,
    I have created one report in which my requirement is to get top 10 highest salaries for each departments. I have created one table prompt which contains the names of all departments. On the salary column I have applied one filter i.e. TOP 10. Currently I am having 3 departments. I want to show the top 10 salaries for each department, but I am getting top 3 from first, 4 from second and 3 from third.They are calculating top 10 salaries based on all departments, not on individual department. How can I get top 10 salaries for each department?

    Hi,
    Use TopN function in your column formula.
    Ex: TOPN("Sales ,5 BY department)
    Thanks,
    Satya

  • CONNECT BY with CROSS JOIN and WHERE not executing as described in doc

    Hello all,
    please see these two statements. They are the same, but the 1st uses t1 INNER JOIN t2 while the snd uses a CROSS JOIN with WHERE.
    The 2nd statement shows one row more than the first, but the CROSS JOIN with WHERE is the same as the INNER JOIN.
    The result would be OK if Oracle did:
    JOIN -> CONNECT BY PRIOR -> WHERE
    But according to the docs it does:
    JOIN (and WHEREs for JOINS) -> CONNECT BY PRIOR -> Rest of WHERE
    See http://docs.oracle.com/cd/E11882_01/server.112/e26088/queries003.htm#SQLRF52332 for details. There it says:
    Oracle processes hierarchical queries as follows:
    A join, if present, is evaluated first, whether the join is specified in the FROM clause or with WHERE clause predicates.
    The CONNECT BY condition is evaluated.
    Any remaining WHERE clause predicates are evaluated.
    +.....+
    Is this a bug? I'd say yes, because it differs from the docs and it also is not what people are used to ("a,b WHERE" is the same as "a INNER JOIN b").
    Thanks,
    Blama
    --Statement 1:
    WITH t1
    AS
    (SELECT 1 a, 2 b FROM DUAL UNION ALL
    SELECT 2 a, 3 b FROM DUAL UNION ALL
    SELECT 3 a, 4 b FROM DUAL UNION ALL
    SELECT 4 a, 5 b FROM DUAL UNION ALL
    SELECT 5 a, 6 b FROM DUAL),
    t2 AS
    (SELECT 1 c FROM DUAL UNION ALL
    SELECT 2 c FROM DUAL UNION ALL
    SELECT 3 c FROM DUAL UNION ALL
    SELECT 5 c FROM DUAL)
    SELECT DISTINCT t1.a, t2.c, t1.b, level, SYS_CONNECT_BY_PATH(t1.a, '/') Path
    FROM t1 INNER JOIN t2
    ON t1.a = t2.c
    CONNECT BY t1.a = PRIOR t1.b
    START WITH t1.a = 1
    ORDER BY
    1,2,3;
    --Result:
    --1     1     2     1     /1
    --2     2     3     2     /1/2
    --3     3     4     3     /1/2/3
    --Statement 2:
    WITH t1
    AS
    (SELECT 1 a, 2 b FROM DUAL UNION ALL
    SELECT 2 a, 3 b FROM DUAL UNION ALL
    SELECT 3 a, 4 b FROM DUAL UNION ALL
    SELECT 4 a, 5 b FROM DUAL UNION ALL
    SELECT 5 a, 6 b FROM DUAL),
    t2 AS
    (SELECT 1 c FROM DUAL UNION ALL
    SELECT 2 c FROM DUAL UNION ALL
    SELECT 3 c FROM DUAL UNION ALL
    SELECT 5 c FROM DUAL)
    SELECT DISTINCT t1.a, t2.c, t1.b, level, SYS_CONNECT_BY_PATH(t1.a, '/') Path
    FROM t1 CROSS JOIN t2
    WHERE t1.a = t2.c
    CONNECT BY t1.a = PRIOR t1.b
    START WITH t1.a = 1
    ORDER BY
    1,2,3;
    --Result:
    --1     1     2     1     /1
    --2     2     3     2     /1/2
    --3     3     4     3     /1/2/3
    --5     5     6     5     /1/2/3/4/5My details:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE     11.2.0.2.0     Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    blama wrote:
    Hello Paul,
    that means that "a,b" isn't the same as "a CROSS JOIN b".
    I don't think that that is really the case.
    Do you have docs on this one?No explicit docs just (my) logic - having said that, I suppose it is implied that if you are doing ANSI style joins, it's not the where clauses that
    are specifying the join.
    If you do t1,t2 where t1.a=t2.a then Oracle figures out the kind of join from the (relevant) where clauses and treats the other where clauses after the CONNECT BY.
    If you do t1 cross join t2 where t1.a=t2.a then you are saying the join is completely specified by the CROSS JOIN - i.e it's Cartesian. Oracle doesn't look at the where clauses for this. Therefore
    all where clauses are treated as 'other' and are evaluated after the CONNECT BY.
    So, in my mind it's 10g that has the bug.

  • I just bought a new external monitor (ASUS), and I have DVI adapter plug. When I connect it with my Macbook pro - the monitor remain black (even tho it is 'on')

    I just bought a new external monitor (ASUS), and it have DVI and VGA plugs. I bought the DVI adapter to connect with my macbook pro laptop. But the external monitor remain black… so I turn it off then turn it back on, it said "No VGA signal". Does it means I have to use VGA adapter instead? I am not sure how it work, I am very new to it… I hope you can help me out!
    Thanks!

    Use the Transfer Purchases command in the File menu of iTunes.
    (60931)

  • Share audio with screenshare AND keep the micropho...

    Hello,
    I need to use Skype for the following: I teach music production courses over Skype and I need to be able to share sound between our programs via screenshare. Yet I also need my microphone to work for communication. 
    I have found audio sharing possible via SoundFlower, however it disables my ability to use the microphone on Skype.
    Is there a way around it?
    Thanks.

    B33 wrote:
    i thought when you had Unlimited plans like i do and my Line is coming up for Renew in February as i was told to get a new phone and keep my Unlimited i would have to Pay full Price for it). If i want it at a subsidized price i would have to go with a different plan and drop my Unlimited) I'm just a little fuzzy on this that's why i'm asking b
    That's correct and has been discussed on this forum in tons of threads.  If you have unlimited data and want to keep it (at least for now), your choices are:
    pay full retail price for a new phone at Verizon
    buy a phone from somewhere like swappa or ebay (somewhere that doesn't require a new two-year Verizon contract)
    get a subsidized phone from Verizon, sign a new two-year contract, and switch to a tiered data plan (i.e., 2 GB for $30); this applies if you're currently on a Nationwide plan ... older plans may force a switch to the Share Everything plan
    if available, upgrade another line on the account and move that phone to the unlimited line (of course, if that line also has unlimited data, it will be lost)
    add a line to the account for a new subsidized phone, move the new phone to the unlimited line, and put a basic phone on the new line and drop the data plan (of course, that would involve paying a monthly fee for the additional line,and the ETF would be based on the smartphone purchased, not the basic phone on the line)

  • Connecting iBook with iMac and onto the internet

    Ican't get a connection figured out, so that I can access the web from my iBook, through the iMac, both with Airport extreme cards.
    iMac G4   Mac OS X (10.4.9)   iBook G4

    va3tm, Welcome to the discussion area!
    So your iMac is connected via Ethernet to the internet? Open the iMac's Sharing preference pane, click on Internet, and enable sharing Ethernet to AirPort.
    If you the firewall enabled on the iMac, in the iMac's Sharing preference pane, click on Services, and enable Personal Web Sharing.

Maybe you are looking for

  • Purchase organizartion field in vendor aging report

    Report is vendor liability aging :  lifnr from lfa1, ( bukrs from lfb1 and  posting date from bsik both fields are maindatory ). I have to add one field EKORG . I am using LFM1 table. i am picking lifnr ekorg from LFM1 table & then picking for all en

  • Apex 4.0 Paper Layout Reports

    Hi All, I'm exploring Oracle Apex for the first time. I have just downloaded Apex 4.0 and would like to see if I can create a paper layout report. For example I would like to produce a Profit & Loss statement as well as a Balance Sheet from my existi

  • Macbook Pro 2012 backplate screws

    Hey everybody. I recently purchased a mid year 2012 macbook pro. It's the 13 inch i5. I noticed after purchasing it (USED) that some of the screws on the back plate were missing. Does anybody know where to get these screws? Or what size the scews are

  • Why does AT

    I was tracking the some new yesterday evening, from about 6:00 pm until about 10:00 pm.  I used the internet about 10 times. I looked at my phone bill on line this morning and my home wifi usage was on the bill. I don't understand, 1.  Why AT&T would

  • Link from a JSP to another flow in portlet

    I'm trying to create a link in a flow portlet, from a JSP page to another flow. I can't use <netui:anchor action="[action name]">, because I want to jump to another controller. I've tried <netui:anchor href="/[another controller package]/[action in a