About full join

table t1
typeid productname
==== ==========
1234 pencil
1234 pen
1123 paper
1234 clips
2938 rubber
table t2
typeid productname
==== ==========
1234 pencil
1234 pen
1123 paper
1234 clips
1234 folder
table t3
typeid productname
==== ==========
1234 pencil
2256 glue
9093 clipboard
1234 clips
1234 folder
select t1.*, t2.*, t3.*
from (t1 full join t2 on (t1.typeid = t2.typeid and t1.productname = t2.productname))
full join t3 on (t1.typeid = t3.typeid and t1.productname = t3.productname
or t3.typeid = t2.typeid and t3.productname = t2.productname)
minus
select *
from t1, t2, t3
where t1.typeid = t2.typeid
and t2.typeid = t3.typeid
and t1.typeid = t3.typeid
and t1.productname = t2.productname
and t2.productname = t3.productname
and t1.productname = t3.productname;
output
=====
typeid1 productname1 typeid2 productname2 typeid3 productname3
1234 pen 1234 pen null null
2938 rubber null null null null
null null 1234 folder 1234 folder
null null null null 2256 glue
null null null null 9093 clipboard
how can i alter the query so that i can display two extra fields typeid and productname with all the values regardless if the values are null, like this
id prodname typeid1 productname1 typeid2 productname2 typeid3 productname3
1234 pen 1234 pen 1234 pen null null
2938 rubber 2938 rubber null null null null
1234 folder null null 1234 folder 1234 folder
2256 glue null null null null 2256 glue
9093 clipboard null null null null 9093 clipboard
thanks a million ;)

what about using using and without using minus
SQL> drop table t1;
Table dropped.
SQL> drop table t2;
Table dropped.
SQL> drop table t3;
Table dropped.
SQL> create table t1( typeid number,productname varchar2(9));
Table created.
SQL> insert into t1 values (1234,'pencil');
1 row created.
SQL> insert into t1 values (1234,'pen');
1 row created.
SQL> insert into t1 values (1123,'paper');
1 row created.
SQL> insert into t1 values (1234,'clips');
1 row created.
SQL> insert into t1 values (2938,'rubber');
1 row created.
SQL>
SQL> create table t2( typeid number,productname varchar2(9));
Table created.
SQL> insert into t2 values (1234,'pencil');
1 row created.
SQL> insert into t2 values (1234,'pen');
1 row created.
SQL> insert into t2 values (1123,'paper');
1 row created.
SQL> insert into t2 values (1234,'clips');
1 row created.
SQL> insert into t2 values (1234,'folder');
1 row created.
SQL>
SQL> create table t3( typeid number,productname varchar2(9));
Table created.
SQL> insert into t3 values (1234,'pencil');
1 row created.
SQL> insert into t3 values (2256,'glue');
1 row created.
SQL> insert into t3 values (9093,'clipboard');
1 row created.
SQL> insert into t3 values (1234,'clips');
1 row created.
SQL> insert into t3 values (1234,'folder');
1 row created.
SQL>
SQL> select typeid, productname,
  2      decode(t1.rowid,null,to_number(null),typeid) t1,
  3      decode(t1.rowid,null,to_char(null),productname) p1,
  4      decode(t2.rowid,null,to_number(null),typeid) t2,
  5      decode(t2.rowid,null,to_char(null),productname) p2,
  6      decode(t3.rowid,null,to_number(null),typeid) t3,
  7      decode(t3.rowid,null,to_char(null),productname) p3
  8  from t1 full join t2 using (typeid,productname) full join t3 using (typeid,productname)
  9  where t1.rowid is null or t2.rowid is null or t3.rowid is null
10  order by 1;
    TYPEID PRODUCTNA         T1 P1                T2 P2                T3 P3
      1123 paper           1123 paper           1123 paper
      1234 pen             1234 pen             1234 pen
      1234 folder                               1234 folder          1234 folder
      2256 glue                                                      2256 glue
      2938 rubber          2938 rubber
      9093 clipboard                                                 9093 clipboard
6 rows selected.

Similar Messages

  • Oracle 9i full join incorrect results (bug)

    Hello!
    Is there an announsments about this bug in 9i, for example, in HR schema:
    select e.last_name, e.department_id, d.department_name, d.department_id
    +from departments d full join employees e+
    on (e.department_id = d.department_id)
    where e.department_id is null
    returns 16 rows.
    If we swap joining tables, then Oracle 9i correctly returns 17 rows:
    select e.last_name, e.department_id, d.department_name, d.department_id
    +from employees e full join departments d+
    on (e.department_id = d.department_id)
    where e.department_id is null
    including the problematic one: employee Grant with no department.
    In 10g the problem seems to be fixed, but I didn't find some sort of errata, so anyone please could send me a link.
    (I apologize if the issue is known and old.)
    P.S.
    Without HR schema one could see similar problem (only with extra row now) in the query:
    select * from
    +(select 1 Id, 'John' Name, 1 depId from dual+
    union all
    select 2 Id, 'Smith' Name, 2 depId from dual
    union all
    select 3 Id, 'Sarah' Name, 1 depId from dual
    union all
    select 4 Id, 'Connor' Name, 2 depId from dual
    union all
    select 5 Id, 'Betty' Name, 1 depId from dual
    union all
    select 6 Id, 'Thomas' Name, 1 depId from dual
    union all
    select 7 Id, 'Dick' Name, NULL depId from dual) employees
    full outer join
    +(select 1 Id, 'Sales' Name from dual+
    union all
    select 2 Id, 'IT' Name from dual
    union all
    select 3 Id, 'Gov' Name from dual) departments
    on employees.depid = departments.id
    where employees.depid is null
    This is also fixed in 10g.

    Hi,
    Bug reports can be found on support.oracle.com.
    Search for "full outer join" (or whatever). Click on the icon to the left of the search text to select from a list of sources. Change it from "All Sources" to "Bug Database".

  • FULL JOIN Error - (ORA-03113: end-of-file on communication channel)

    Hello,
    well my following query is running fine, no errors but not showing join records from table B and E.
    Query is as following:
    SELECT D.EMPLOYEE_ID, F.EMP_NAME,
    F.COMPANY_ID, F.COMP_NAME, F.BRANCH_ID, F.BR_NAME,
    TO_CHAR(F.BIRTH_DATE,'DD/MM/YYYY') DOB,
    ((NVL(A.PF_OWN,0) + NVL(A.PF_COMP,0) + NVL(A.PROF_OWN,0) + NVL(A.PROF_COMP,0) + NVL(B.PROF_OWN,0) +
    NVL(B.PROF_COMP,0) + NVL(B.TOT_PF_OWN,0) + NVL(B.TOT_PF_COMP,0) +
    NVL(D.SAL_PF_OWN,0) + NVL(D.SAL_PF_COMP,0) -
    (NVL(E.REV_PF_OWN,0) + NVL(E.REV_PF_COMP,0) + NVL(C.WD_PF_OWN,0) + NVL(C.WD_PF_COMP,0) +
    NVL(C.WD_PROF_OWN,0) + NVL(C.WD_PROF_COMP,0)))) PF_BALANCE
    FROM
    (SELECT EMPLOYEE_ID, SUM(PF_OWN) SAL_PF_OWN, SUM(PF_COMP) SAL_PF_COMP
    FROM EMPLOYEE.EMP_SAL_DETAILS
    WHERE SAL_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')
    AND SAL_DATE <= '01-DEC-06'
    GROUP BY EMPLOYEE_ID) D
    LEFT JOIN
    (SELECT EMPLOYEE_ID, PF_OWN, PF_COMP, PROF_OWN, PROF_COMP
    FROM EMPLOYEE.EMP_PF_OPBALS
    WHERE AS_ON_DATE IN (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')) A
    ON (D.EMPLOYEE_ID = A.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, SUM(TOT_PF_OWN) TOT_PF_OWN, SUM(TOT_PF_COMP) TOT_PF_COMP, SUM(PROF_OWN) PROF_OWN, SUM(PROF_COMP) PROF_COMP
    FROM EMPLOYEE.EMP_PF_PROF_DETAILS WHERE END_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')
    GROUP BY EMPLOYEE_ID) B
    ON (D.EMPLOYEE_ID = B.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, SUM(PF_OWN) WD_PF_OWN, SUM(PF_COMP) WD_PF_COMP, SUM(PROF_OWN) WD_PROF_OWN, SUM(PROF_COMP) WD_PROF_COMP
    FROM EMPLOYEE.EMP_PF_WITHDRAWALS WHERE PF_WDRAW_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')
    GROUP BY EMPLOYEE_ID) C
    ON (D.EMPLOYEE_ID = C.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, SUM(PF_OWN) REV_PF_OWN, SUM(PF_COMP) REV_PF_COMP
    FROM EMPLOYEE.EMP_SAL_REVERSALS
    WHERE SAL_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE >= '01-DEC-06')
    AND SAL_DATE <= '01-DEC-06'
    GROUP BY EMPLOYEE_ID) E
    ON (D.EMPLOYEE_ID = E.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, COMPANY_ID, COMP_NAME, BRANCH_ID, BR_NAME, EMP_NAME, BIRTH_DATE, CONF_DATE FROM V_SEL_SYS_EMP) F
    ON (D.EMPLOYEE_ID = F.EMPLOYEE_ID)
    ORDER BY D.EMPLOYEE_ID
    And when i try to full join my tables and replace LEFT JOIN with FULL OUTER JOIN following errors accurs:
    (ORA-03113: end-of-file on communication channel) and oracle gets disconnect.
    Query will only show records its tables are FULL JOINED.
    Please help what is the solution. Its very urgent also.
    I am thankful to you.
    Regards,
    Imran

    > And when i try to full join my tables and replace LEFT JOIN with FULL OUTER
    JOIN following errors accurs:
    (ORA-03113: end-of-file on communication channel) and oracle gets disconnect.
    This is not an error, but a symptom of an error. An ORA-03113 results when the Oracle Server Process that services your client, terminates abnormally. When that server process terminates, the connection (TCP socket) to your client is torn down - without your client knowing about it.
    The ORA-03113 is generated by your client's Oracle driver when your client suddenly discovers that the connection to the Oracle Server Process is no longer there.
    So why does the Server Process terminate abnormally? Usually due to an internal error (an ORA-600 and/or an ORA-7445).
    These errors results in:
    - error messages to be generated in the Oracle instance's alert log
    - a trace file generated by the server process that includes stack and memory dumps
    You need to determine what these errors are, and the use the ORA-600/ORA-7445 Troubleshooter (Metalink Note 153788.1) on [url http://metalink.oracle.com]Metalink to troubleshoot the error, determine whether it is a bug, if there is a patch or a workaround available, etc.
    > Please help what is the solution. Its very urgent also.
    I do not mind helping out where I can. But I do have a problem with people claiming there problem is urgent, and deserves quicker/better attention that other peoples' problems around here,
    If your problem is urgent then you are in the wrong place. I do not get paid to solve urgent problems quickly. I and others, spend our free time providing assistance. You cannot demand any kind of urgent attention from any of us.
    If you like urgent and special attention, use Oracle Support.

  • How to use "full join" in ODI interface

    I need to join two tables using full join. So, when I drag and drop table columns (build join) and mark left and right join (get full join):
    +(All rows of OSS_NCELLREL (OSS_NCELLREL) including the rows unpaired with OSS_NECELASS (OSS_NECELASS) rows and all rows of OSS_NECELASS (OSS_NECELASS) incuding the rows unpaired with OSS_NCELLREL (OSS_NCELLREL)+
    I get the following error:
    Source panel of the diagram: Clause set to full join on a technology that does not support full joins
    I use Oracle DB tables in the same DB.
    Help! What I do wrong?

    Hi,
    You need to work around Topology Manager.
    Please follow the below steps,
    1. Edit the 'Oracle' technology from the Physical Architecture treeview.
    2. In the Technology Defintion Tab select 'Ordered (Sql ISO)' radio button.
    3. In the Technology 'SQL Tab' set the following:
    - Clause Location: From
    - Brackets supported in the ON clauses: check
    - Inner: check, type INNER JOIN
    - Cross: check, type CROSS JOIN
    - Left Outer: check, type LEFT OUTER JOIN
    - Right Outer: check, type RIGHT OUTER JOIN
    - Full Outer: check, type FULL OUTER JOIN
    PS: Please take a backup Oracle techno before editing. ;)
    Thanks,
    G
    Edited by: Gurusank on Nov 27, 2008 9:05 PM

  • Error in Full Join

    Hi All
    I am using a full join in my interface
    But it is showing
    Interface contains error You cannot execute the interface
    Source panel of the diagram: Clause set to full join on a technology that does not support full joins
    Source panel of the diagram: One or more clauses of your diagram cause an inconsistency
    My source is Oracle DB and target is also Oracle DB.
    I am using ODI 10.1.3
    Any help
    Gourisankar

    Hi
    I got the information to make changes in Topology Manager to get Full Join
    1. Edit the 'Oracle' technology from the Physical Architecture treeview.
    2. In the Technology Defintion Tab select 'Ordered (Sql ISO)' radio button.
    3. In the Technology 'SQL Tab' set the following:
    - Clause Location: From
    - Brackets supported in the ON clauses: check
    - Inner: check, type INNER JOIN
    - Cross: check, type CROSS JOIN
    - Left Outer: check, type LEFT OUTER JOIN
    - Right Outer: check, type RIGHT OUTER JOIN
    - Full Outer: check, type FULL OUTER JOIN
    but when i am applyinh the windiow the
    - Inner: check, type INNER JOIN
    - Cross: check, type CROSS JOIN
    - Full Outer: check, type FULL OUTER JOIN
    are getting disabled.
    any work around???

  • About inner join in abap

    hi
        i am new to sap , i dont no about inner join in abap coding
    plz send me some notes or coding.
                            thank u.
                                                              your regrads
                                                                    divya.

    hi
    use this links
    INNER JOIN  and OUTER JOINhttp://help.sap.com/erp2005_ehp_03/helpdata/EN/cf/21ec77446011d189700000e8322d00/frameset.htm
    JOINED TABLES
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/0f/49bd6a5d5049edba7b3afe6c7956e3/frameset.htm
    u will find all thins related to joins with example and how to use it
    Cheers
    Snehi
    Edited by: snehi chouhan on Jul 25, 2008 9:45 AM

  • FULL JOIN Issue

    I'm having trouble grasping the concept of a full join. I googled it and didn't find a good explanation of what it is exactly.
    My boss told me to use it so i'm working on getting what it truely is and how I can use it.
    Thank you

    jerry8989 wrote:
    I need the results to be like this:
    tableid columnid value PercentValue
    1 1 2 99.99
    1 1 3
    1 1 4
    But the percent value for the bottom 2 rows should be null
    test@ORA10G>
    test@ORA10G> --
    test@ORA10G> with table1 as (
      2    select 1 tableid, 1 columnid, 2 value from dual union all
      3    select 1, 1, 3 from dual union all
      4    select 1, 1, 4 from dual),
      5  table2 as (
      6    select 1 tableid, 1 columnid, 99.99 percentvalue from dual)
      7  --
      8  select p.tableid,
      9         p.columnid,
    10         p.value,
    11         case p.rn
    12           when 1 then q.percentvalue
    13           else null
    14         end as percentvalue
    15    from (
    16  select tableid,
    17         columnid,
    18         value,
    19         row_number() over (partition by tableid,columnid order by 1) as rn
    20    from table1) p,
    21    table2 q
    22  where q.tableid = p.tableid(+)
    23    and q.columnid = p.columnid(+);
       TABLEID   COLUMNID      VALUE PERCENTVALUE
             1          1          2        99.99
             1          1          4
             1          1          3
    test@ORA10G>
    test@ORA10G>
    is this possible with a full outer join?Doesn't seem like a full outer join is even needed, given your data.
    isotope

  • About Cross Join

    When I'm seeing an article about cross join I got a doubt. In that physical diagram they connected the the column-1 from table A and column 2 from table B.Table-A is xls and table-2 is Oracle.
    Now IN BMM layer they connected the col-1 and col-2 as foreign key join. I think In BMM layer we prefer to do complex join. Any idea to get an idea
    Thanks & Regards,
    Pallis

    Hi Pallis,
    Check my blog regarding joins; http://obibb.wordpress.com/2010/08/06/joins-in-oracle-bi-ee/
    From Answers a Logical query is fired. The BI Server fires two Physical queries to the seperate databases. The results of the two seperate queries are stiched toghether by the BI Server and presented in Answers.
    Cheers,
    Daan Bakboord
    http://obibb.wordpress.com

  • I'm confused... My iPod is about full with just over 1500 songs??

    Can someone please help me? I am new to all of this MP3 player business, but I am confused about my 5th gen iPod. I bought the 16gb instead of 8 so I could have lots of songs, but still tape my lectures at school. I have only ~1500 songs, but it is just about full. When I bought it, it said it holds about 4000 songs. Did I do something wrong? All I did was pop a CD into my computer, iTunes downloaded the info, and then I synced my iPod. Is there a reason I don't even have half of what I should have?
    Please help.
    Thank you.

    Which format do you encode your tracks (e.g. MP3, AIFF, Apple Lossless, etc.) and for the compressed ones, at what bit rate (e.g. 128, 160, etc.)? And are a lot of your songs long ones?
    Encoding and bit rate both effect file size. Apple's estimates on how many songs your iPod can hold are based on 128 kbps AAC files that average something like 3 or 4 minutes (I forget which). Long songs, higher bit rates, and other formats (AIFF, WAV, and Apple Lossless in particular) will result in much larger file sizes and more space taken up by your library.
    Patrick

  • Question about full cycle charges and battery life

    So I've had the new iPad since day 1 and absolutely love it, though recently I've noticed that my battery life doesn't seem to hold up as well as it has in the past. I've done three full cycle charges since getting it however during my latest one I accidently brought along my iPod wall charger and not the one that comes with the iPad. My iPad was fully discharged and I plugged it in assuming that in the 7 hour window I had that it would be fully charged within 5 hours, but this was not the case due to me having the wrong charger. After about 7 hrs of charging it was only at around 60-70% so I had to unplug it, bring it home, then plug it in once more using the correct charger. Probably a fairly obvious question but does this not count as a full cycle charge because I unplugged it? Should I perform another full cycle charge even though this most recent one was not even a week ago. I know you're supposed to completely discharge your battery as few times as possible so it worries me having to do it again so soon.
    About battery life, I've noticed lately that my iPad battery seems to be depleting quicker than normal, and was hoping that perhaps this was caused by being overdue for a full-cycle charge which I may have flubbed as seen above. I'm aware of a majority of the little tips and tricks to prolong battery life however I'm not so knowledgeable on the "do's and don'ts" of charging the actual iPad so any information on that would be helpful. I should also note that unfortunately I accidently left by iPad in a hot car for a little over an hour and was tremendously devastated knowing what this can do to the battery, so could this be the main cause for a seemingly weaker battery?
    Thanks for any feedback!  

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • Was going to buy Numbers until I read reviews about full screen

    There's a lot of complaints about the latest version of Numbers on iTunes, mostly about Fullscreen not working...?
    Is this an issue, or not?
    Thanks!

    Depends on what your looking to do. The full screen mode allowed you to hide all th controls and just display the info on the screen. The other thing that I really liked was the ability to highlight a random data Nd see some common calc results like sum and average displayed in a floating window.
    If you do not hav the app yet, and we're not used ot the feature, I cannot see how it would be a serious issue, as you wouldn't have it in your processes yet.
    If you were hoping to have the functionality and cannot use the entire app due to that ommition, then I would say don't buy it.
    Jason

  • Error About Full Text Search

    TITLE: Microsoft SQL Server Management Studio
    Cannot execute changes.
    ADDITIONAL INFORMATION:
    Property IsAccentSensitive is not available for FullTextCatalog '[Contact_Catalog]'. This property may not exist for this object, or may not be retrievable due to insufficient access rights.  (Microsoft.SqlServer.Smo)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1447.4+((KJ_RTM).100213-0103+)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.PropertyCannotBeRetrievedExceptionText&EvtID=IsAccentSensitive&LinkId=20476
    BUTTONS:
    OK

    Hello,
    Which version and edition of the SQL Server did you installed? You can get verison information by the query
    SELECT @@version.
    Please  verify that you had install Full test Search. You can go to the SQL Server Configuration Manager and check text Filter Daemon Launcher service (MSSQLFDLauncher) is installed and running.
    The following thread is about similar error which restult to the MSSQLFDLauncher:
    http://www.experts-exchange.com/Database/MS-SQL-Server/SQL_Server_2008/Q_24576135.html
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • About Full Tilt Poker

    Hello, I have a question. I have on my macbook full tilt poker installed and it worked fine until now....now it started to block every time that I want to log in and I can't do anything to work on it. I also have to force quite the program. I did uninstall it and install it again and it has the same problem.
    Can someone help me with that? What can it be the problem?
    Thank you.

    This is a forum about Apple products; you might have better luck asking for help in a Full Tilt Poker forum.
    That said, see if deleting the preferences for FTP helps. It would be something like com.fulltiltpoker.plist in your /Library folder. The next time you open FTP, you would need to re-enter your information, but it might work.

  • About Full GC

    Hi,
    My application does only Full GC, not simple GC. And these FUll GC are taking about 0.5 sec(i think that these times are too long).How can i improve this situation forcing to make my aplication do Simples GC?? seeking lower the GC times.
    Thanks in advance
    bye

    Thank you all!
    The problem was that the app (in Production) was doing explicit System.gc() , and wh didn't have access to the source code. so i enable the JVM option DisableExplicitGC, and now all the collections are normal, not Full GC, and the CG times fall from 0.65 sec to 0.008 sec.
    Thanks for your replies, hope this solution helps more people.
    Bye

  • A Simpler, More Direct Question About Merge Joins

    This thread is related to Merge Joins Should Be Faster and Merge Join but asks a simpler, more direct question:
    Why does merge sort join choose to sort data that is already sorted? Here are some Explain query plans to illustrate my point.
    SQL> EXPLAIN PLAN FOR
      2  SELECT * FROM spoTriples ORDER BY s;
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT |              |   998K|    35M|  5311   (1)| 00:01:04|
    |   1 |  INDEX FULL SCAN | PKSPOTRIPLES |   998K|    35M|  5311   (1)| 00:01:04|
    ---------------------------------------------------------------------------------Notice that the plan does not involve a SORT operation. This is because spoTriples is an Index-Organized Table on the primary key index of (s,p,o), which contains all of the columns in the table. This means the table is already sorted on s, which is the column in the ORDER BY clause. The optimizer is taking advantage of the fact that the table is already sorted, which it should.
    Now look at this plan:
    SQL> EXPLAIN PLAN FOR
      2  SELECT /*+ USE_MERGE(t1 t2) */ t1.s, t2.s
      3  FROM spoTriples t1, spoTriples t2
      4  WHERE t1.s = t2.s;
    Explained.
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT       |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   1 |  MERGE JOIN            |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   2 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   3 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    |*  4 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   5 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    Predicate Information (identified by operation id):
       4 - access("T1"."S"="T2"."S")
           filter("T1"."S"="T2"."S")I'm doing a self join on the column by which the table is sorted. I'm using a hint to force a merge join, but despite the data already being sorted, the optimizer insists on sorting each instance of spoTriples before doing the merge join. The sort should be unnecessary for the same reason that it is unnecessary in the case with the ORDER BY above.
    Is there anyway to make Oracle be aware of and take advantage of the fact that it doesn't have to sort this data before merge joining it?

    Licensing questions are best addressed by visiting the Oracle store, or contacting a salesrep in your area
    But I doubt you can redistribute the product if you aren't licensed yourself.
    Question 3 and 4 have obvious answers
    3: Even if you could this is illegal
    4: if tnsping is not included in the client, tnsping is not included in the client, and there will be no replacement.
    Tnsping only establishes whether a listener is running and shouldn't be called from an application
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for

  • How can i use multiple accounts

    I have had my mac.com account for years and have made the majorithy of my itune purchases, apps, etc through that account (still do actually). However, when updating to icloud, I have added a me.com account which has also purchases (especially lately

  • How to find the flow of procedures?

    Hi we are using 11gR2. I have a procedure Proc_Cust_Rpt(id NUMBER); This procedure has two procedure calls inside it in an IF-THEN-ELSE condition. But at a time for the given input parameter only one of them is called. Again, inside the child procedu

  • Send report to email address!

    Hi Expers, Besides Information Broadcasting, is there anothe way to send out a certain query report to email address? Like the one in Process chain error report!  Thanks! Linda

  • Same variable "used in more then one InfoObject"

    I want to use the same user entered value as part of the definition of two different restricted key figures, restricting on two different characteristics.  Basically the user will enter a date, and one key figure includes only those with a "Calendar

  • Report like MCEC work on actual data(MRP)

    Dear All, Is there any report like mcec that work on operative planning(MRP), bt not work on simulative planning. I want the same data(purchase plan) after executing MRP. Thanks