Way EASIER to write this in a sql or plsql

I have a select as below where his output can be one line or several lines or lines nil. Select can bring nulls, R, C, O

(A) in the case of the lines suck, I want ln_status to be «#»

(B) in case if there is at least one row with O, ln_status should be O

(C) if the criteria A and B is not filled, in case if there is at least one firm, ln_status has to be C

(D) if only a single record with R, ln_Status must be 'o'

is it possible to write more simply without question several times or using plsql. Thank you

Select the status INTO ln_status

from TableA

where col1 = < col1 >

Frank addresses the point that you wrote that there could be no line and also status is null as a possible outcome.

Max (Status) has the null value distinguishes but count (*) = 0, because it returns a number greater than 0 in the case of rows returned with the State is set to null.

Tags: Database

Similar Questions

  • Better way to write this sql?

    Hi guru, I was able to get what I want, but I find there must be a better way/more efficient way to write this sql?

    Database: Oracle 11g

    This is the create for the test database statement:

    create table sample_test (prog_id number (9) DEFAULT 0 NOT NULL, chan_rights CHAR (2) DEFAULT ' ' NOT NULL)

    This is the insert statement:

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A1')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A2')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A3')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A4')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A5')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A6')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (555633, 'A7')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'A1')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'A2')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'A3')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'B1')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'B2')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'B3')

    INSERT INTO sample_test (prog_id, chan_rights) VALUES (495641, 'B4')

    Here's what I did to get the data:

    Select distinct a.prog_id, rt_cnt, CASE

    WHEN a.rt_cnt = 7

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = 'A1')

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = "A2")

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = "A3")

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = 'A4')

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = 'A5')

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = 'A6')

    and there are (select 'Y' b sample_test where a.prog_id = b.prog_id and b.chan_rights = 'A7')

    THEN "A_ONLY".

    else 'SINGLE '.

    end CHAN_GROUP

    from (select prog_id, count (chan_rights) rt_cnt

    of sample_test

    Prog_id group) a, b sample_test

    where a.prog_id = b.prog_id

    That appears as follows:

    PROG_ID RT_CNT CHAN_GROUP
    4956417UNIQUE
    5556337A_ONLY

    As seen:

    1 / I count how many rights is available, and in this case, each program gets a "7"

    Set 2 / from these data, for each programme, I try to make sure it belongs to the company chan_rights right, for example, "A_ONLY". Therefore, as shown, Prog_ID 495641 does not contain "A_ONLY" channels listed in the case statement and there is unique. "A_ONLY" should only contain A1 to A7 inclusive and nothing else.

    Can I create a function that returns the value "Chan_Group", but is there a better way to rewrite the statement 'BOX' like a LOOP or something? I have millions of records to go through and someone told me that using "is" slows down the database so just thought that I could ask ahead...

    Please indicate if there is a better and more efficient method to get what I need?

    Thank you

    John

    I would do something like

    select prog_id,
          rt_cnt,
          (case when rt_cnt = 7 and num_a = 7
                then 'A_ONLY'
                else 'UNIQUE'
            end) chan_group
      from (select prog_id,
                  count(chan_rights) rt_cnt,
                  sum( case when chan_rights in ('A1','A2','A3','A4','A5','A6','A7')
                            then 1
                            else 0
                        end ) num_a
              from sample_test
            group by prog_id)
    

    View of inline, I count the number of values chan_rights, as well as the number that are in your list of A1 - A7.  In the outer query, I implement the logic that checks that the two charges are 7.

    Here is an example of sqlfiddle this http://www.sqlfiddle.com/#! 4/95438/2

    Justin

  • best way to write this query

    Hello

    I have a problem and I realized a simplified version of it:

     
    
    create table deals (id_prsn number, id_deal number, fragment number); 
    create table deal_values (id_prsn number, id_deal number, value_ number, date_ date); 
    
    insert into deals values(1,1,50); 
    insert into deals values(2,2,40); 
    insert into deals values(1,3,50); 
    insert into deals values(2,4,80); 
    insert into deals values(1,5,20); 
    insert into deals values(2,6,80); 
    
    insert into deal_values values(1,1,10 ,sysdate - 3); 
    insert into deal_values values(2,2,208, sysdate - 3); 
    insert into deal_values values(2,4,984, sysdate - 3); 
    insert into deal_values values(1,null,134,sysdate - 3); 
    insert into deal_values values(1,1,13, sysdate - 2); 
    insert into deal_values values(2,2,118, sysdate - 2); 
    insert into deal_values values(2,4,776, sysdate - 1); 
    insert into deal_values values(1,null,205,sysdate - 1); 
    insert into deal_values values(2,null,-5,sysdate - 1); 
    The id of the requirement to join these two tables based on:

    1.) ID_PRSN and ID_DEAL
    2.) max DATE_ grouped per person and deal
    (3.) in the case that ID_DEAL is defined in the AGREEMENTS, but not defined in the DEAL_VALUES table, I have to join this records to DEAL_VALUES based on the person where id_Deal is null.

    Number 3 gives me headache. I realized the following query:
     
    
    select *from ( 
    select a.id_prsn, 
           a.id_deal, 
           a.fragment, 
           b.value_, 
           b.date_, 
           max(b.date_) over (partition by b.id_prsn, b.id_deal) max_date 
      from deals a 
    inner join deal_values b 
        on a.id_deal = b.id_deal or b.id_deal is null 
       and not exists  (select 1 from deal_values 
                                  where id_prsn = a.id_prsn 
                                    and id_deal = a.id_deal) 
       and a.id_prsn = b.id_prsn 
    ) 
    where date_ = max_Date; 
    It returns the correct result of he,


    ID_PRSN ID_DEAL FRAGMENT VALUE_ DATE_ MAX_DATE
    1 1 50 13 16.10.2012 09:59:48 16.10.2012 09:59:48
    1 3 50 205 17.10.2012 09:59:48 17.10.2012 09:59:48 OK
    1 5 20 205 17.10.2012 09:59:48 17.10.2012 09:59:48 OK
    2 2 40 118 16.10.2012 09:59:48 16.10.2012 09:59:48
    2 4 80 776 17.10.2012 09:59:48 17.10.2012 09:59:48
    2 6 80-5 17.10.2012 09:59:48 17.10.2012 09:59:48 OK



    but the join clause:
     
    
    
        on a.id_deal = b.id_deal or b.id_deal is null 
       and not exists  (select 1 from deal_values 
                                  where id_prsn = a.id_prsn 
                                    and id_deal = a.id_deal) 
       and a.id_prsn = b.id_prsn 
    in fact the query much slower.

    I was wondering is there a different way to write this join and manage the logic.

    Thanks in advance

    Here's a different approach:

    select * from (
      select a.id_prsn, a.id_deal, a.fragment, B.value_, b.date_,
      ROW_NUMBER() over(
        partition by a.ID_PRSN, a.ID_DEAL
        order by B.ID_DEAL nulls last, B.DATE_ desc
      ) RN
      from DEALS a
      join DEAL_VALUES B
      on a.ID_PRSN = B.ID_PRSN and a.ID_DEAL = NVL(B.ID_DEAL, a.ID_DEAL)
    )
    where rn = 1
    order by 1, 2;
    

    "nulls last" is the default sort order; I just put that for clarity.

    Published by: stew Ashton on October 18, 2012 12:58

  • Can you help me? Is there a simpler way to write this short code?

    Hi, I'm quite new to coding and EDGE and think there must be a simpler way to write this? :

    sym.getSymbol("USA_animation").play ();

    sym.getSymbol("World_map").play ();

    sym.getComposition () .getStage ().getSymbol("UK_animation").$("UK").fadeOut ();

    sym.getComposition () .getStage ().getSymbol("UK_animation").$("Piechart").fadeOut ();

    sym.getComposition () .getStage ().getSymbol("UK_animation").$("people").fadeOut ();

    sym.getComposition () .getStage ().getSymbol("UK_animation").$("PeopleText").fadeOut ();

    sym.getComposition () .getStage ().getSymbol("UK_animation").$("UKText").fadeOut ();

    sym.getComposition () .getStage ().getSymbol("AUS_animation").$("AUSTRALIA").fadeOut ();

    sym.getComposition () .getStage ().getSymbol("USA_animation").$("USA").show ();

    sym.getComposition () .getStage ().getSymbol("USA_animation").$("USAText").show ();

    Can you help me?

    Obivious to increase efficiency is

    var USA_animation = sym.getSymbol ("USA_animation")

    USA_animation. Play();

    sym.getSymbol("World_map").play ();

    USA_animation.$("UK").fadeout ();

    USA_animation.$("PieChart").fadeout ();

    USA_animation.$("people"). fadeOut();

    USA_animation.$("PeopleText").fadeout ();

    USA_animation.$("UKText").fadeout ();

    USA_animation.$("AUSTRALI_A").fadeout ();

    USA_animation.$("USA"). Show();

    USA_animation.$("USAText"). Show();

    If you perform a single operation on all the symbols of the "USA_animation" child, you can also reduce somethinng as

    sym.getSymbol("World_map").play ();

    var USA_animation = sym.getSymbol ("USA_animation")

    USA_animation. Play();

    var childSymbols = USA_animation.getChildSymbols (); f

    for (var i = 0; i)

    childSymbols [i] .fadeOut ();

    I don't know if these are the best ways, but these are in a way that I could think of.

    Let us know if offer you a lot shorted way to write this

  • Need help to write to Oracle and SQL Server in the Oracle triggering

    We have a third which feeds data for us. Their client application feeds directly to some source tables in our Oracle database 10g. We have triggers on those tables that sort and treat lines as they come.

    We have a new operation and try to write some of these incoming data now to a SQL Server database through heterogeneous services - essentially the same exact data in two databases. I have a related database that works very well for the selection, but I've never tried to write Oracle PL/SQL to write in a DB SQL Server 2008. My first attempt was met with the following error: "ORA-02047: impossible to join the current distributed transaction.

    I found another thread where they say that the only way to do it is by using a stand-alone transaction, but they do not give an example. Here is the section of relaxation that I use:
      select to_char(new_date,'MM-DD-YYYY') into sql_txt from dual;
      insert into mancamp_location@sqlweb
           ("UnitID", "ManCampID", "Lat", "Long", "UpdateDT", "VehSpeed", "VehDirection", "Landmark")
        values (v_truck, f_unit, f_lat, f_long, sql_txt, f_spd, f_dir, f_ldmk);
    Can someone point me to a way to accomplish this simple insertion?

    An example of a standalone trigger is:

    Suppose you have a table in Oracle:

    CREATE TABLE emp_sal
    (
    EMPNO NUMBER 4,
    SAL NUMBER (7.2));

    and a similar table in a SQL server:
    SQL Server:

    CREATE TABLE emp_sal
    (
    EMPNO NUMERIC (4).
    SAL NUMERIC (7.2));

    Then, you can create an insert trigger that replicates the data:
    CREATE OR REPLACE TRIGGER dg4odbc_repl AFTER INSERT ON emp_sal
    FOR EACH LINE
    DECLARE
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    INSERT INTO 'emp_sal"@MSODBCSQLSERVER_DG4ODBC_EMGTW_1123_DB '.
    VALUES (: new.empno,: new.sal);
    COMMIT;
    END;
    /

    -Note the validation, otherwise risk of ORA-6519

    When you now insert a record into the Oracle database:
    insert into emp_sal values (1234, '1200,89');
    the trigger is activated and inserts the record in SQL Server:
    Select * from 'emp_sal"@MSODBCSQLSERVER_DG4ODBC_EMGTW_1123_DB;
    EMPNO, SAL
    ----- -------
    1234 1200.89

    It works fine when you post data insert, but as soon as restore you the insert only data Oracle will be cancelled - data will remain as long as the independent transaction dedicated to its SQL Server insert:

    insert into emp_sal values (1384, '1200,89');
    Rollback;
    Select * from emp_sal;
    EMPNO, SAL
    ----- -------
    1234 1200.89

    Select * from 'emp_sal"@MSODBCSQLSERVER_DG4ODBC_EMGTW_1123_DB;
    EMPNO, SAL
    ----- -------
    1234 1200.89
    1384 1200.89

    So I strongly recommend to use the DG4MSQL gateway which is able to participate in distributed transactions and allows validation/restore transactions.

    DG4ODBC lie on OTN (http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html-online check out the "See all" link for your favorite platform), cloud of delivery of software Oracle (https://edelivery.oracle.com/) or "My Oracle Support". My Oracle support welcomes the latest version 11.2.0.3. In My Oracle Support goto patches and updates, then search for 11.2.0.3 data set Patch 10404530patch: 11.2.0.3.0 PATCH SET for ORACLE database SERVER, choose your preferred platform and see the Readme which CD contains the gateway software.

    Published by: kgronau on April 24, 2012 08:44

  • I have a ton of cookie exceptions, and sometimes I need to change one of "blocked" to "allow". Is there a way to 'search' to this file?

    Paging through all the exceptions of cookie, to find the one that is causing me not not be able to access a site is becoming impossible. For example, I want to use the ESPN fantasy football site, but at some point, I have decided to 'block' one of the many cookies they wanted to define. Now, I can't get into the site, and I have no chance of finding the offending cookie. Is there a way to search for this file exceptions (or permissions) so I can find the cookie faster?

    It might be easier to use the subject: permissions page?

    In a new tab, type or paste Subject: authorizations in the address bar and press ENTER. Controls showing your default settings will be displayed first and it will take probably several seconds to load the sites. You can use the above the left column search box to find the site you want to adjust.

    A little luck?

  • Until the latest update when the AutoComplete bar has been selected, he "went" no other by clicking. I must now click the refresh arrow. It won't work even with the return. How can I operate the old way easier?

    Until the latest update when the url I wanted in the address bar of AutoComplete has been selected, it "accompanies" no more further by clicking on. I must now click the refresh arrow. It won't work even with the return. How can I operate the old way easier?

    You can disable this extension in tools > Modules > Extensions and close and restart Firefox normally.

  • correct to write this query mysql syntax?

    Hello

    Help to write a mysql should question that I don't have the knowledge to do so.

    I have 2 tables, say table1 and table2.  I want to take (status) column data in table 1 and replace what is in the (state_id) column in table 2.

    Notes:

    The column names do not match.

    I can match the user ID unique from table1 to table2, these are the same.

    I want only to replace data in a few columns, not the entire table, other data must remain unchanged.

    I want to m data in the tables themselves from one to the other, not only compiled as a result of a mysql query.

    Wasn't sure if I should use a merger?  tried several ways but without success.

    any person in charge to write something that I can use?  I'm sure its easy to write, I just can't write advanced queries on top of my head like that :-)

    Okay, it looks like that MySQL does not support the FROM clause in the update instructions. Use a join:

    http://www.electrictoolbox.com/article/MySQL/cross-table-update/

  • No idea how to write this query

    Hi, My Data is as below

    DocNum doc_date type of amount
    1154 15 November 11 232501.5 invoice
    200206 4 November 11 - 243672.64 credit memo
    Note flow 111 5 November 555.22 11

    Output must be

    DocNum doc_date amount Type AmountDR AmountCR
    1154 232501.5 15 November 11 Bill 232501.5
    Note credit 200206 4 November 11 - 243672.64 - 243672.64
    Note flow 111 5 November 555.22 11 555.22

    If the amount is > 0, then it must be displayed in the value of the amount to be AmountDR
    If amount < 0 then it must be displayed in the value of the sum amount CR



    Can help how to write this query
    with sample_table as (
                          select 1154 Docnum,date '2011-11-15' doc_date,232501.5 Amount,'Invoice' type from dual union all
                          select 200206,date '2011-11-04',-243672.64,'Credit Memo' from dual union all
                          select 111,date '2011-11-05',555.22,'Debit Memo' from dual
                         )
    select  Docnum,
            doc_date,
            Amount,
            type,
            case
              when Amount >= 0 then Amount
            end AmountDR,
            case
              when Amount < 0 then Amount
            end AmountCR
      from  sample_table
    /
    
        DOCNUM DOC_DATE      AMOUNT TYPE          AMOUNTDR   AMOUNTCR
    ---------- --------- ---------- ----------- ---------- ----------
          1154 15-NOV-11   232501.5 Invoice       232501.5
        200206 04-NOV-11 -243672.64 Credit Memo            -243672.64
           111 05-NOV-11     555.22 Debit Memo      555.22
    
    SQL> 
    

    SY.

  • I update my iMac and then the computer restart again and write this means to report panic about what I can do?

    Hi, I'm updating my iMac and after that it restart again and write this panic report. Pleas if somebody know what can I do please help me

    Anonymous UUID: F566129E-3EB9-4E28-4DF3-63D440FEBBB2

    Kills Jul 26 14:32:01 2016

    Panic report *.

    panic (the appellant 2 cpu 0xffffff800dbb3bf2): "pointers element of invalid queue for 0xffffff8024cb0a40: 0 0"@/Library/Caches/com.apple.xbs/Sources/xnu/xnu-3248.60.10/osfmk/kern/queue.h prev: 241.

    Backtrace (2 CPU), Frame: Return address

    0xffffff918935b440: 0xffffff800dadab52

    0xffffff918935b4c0: 0xffffff800dbb3bf2

    0xffffff918935b640: 0xffffff800db508dc

    0xffffff918935b710: 0xffffff800dae430a

    0xffffff918935b750: 0xffffff800dfa228e

    0xffffff918935b790: 0xffffff800e004324

    0xffffff918935b7d0: 0xffffff800dfee5da

    0xffffff918935b7f0: 0xffffff800dd383e8

    0xffffff918935b830: 0xffffff800dd37fa8

    0xffffff918935b890: 0xffffff800dd26ea7

    0xffffff918935b8f0: 0xffffff800dd1a79f

    0xffffff918935b9a0: 0xffffff800dd06358

    0xffffff918935bbe0: 0xffffff800dd06e70

    0xffffff918935bf60: 0xffffff800e028380

    0xffffff918935bfb0: 0xffffff800dbeca58

    The process corresponding to the current thread BSD name: AdobeUpdateDaemo

    Mac OS version:

    15G 31

    Kernel version:

    15.6.0 Darwin kernel version: Thu Jun 23 18:25:34 PDT 2016; root:XNU-3248.60.10~1/RELEASE_X86_64

    Kernel UUID: B5AA8E3E-65B6-3D0E-867B-8DCCF81E536C

    Slide kernel: 0x000000000d800000

    Text of core base: 0xffffff800da00000

    Text __HIB base: 0xffffff800d900000

    Name of system model: iMac12, 2 (Mac-942B59F58194171B)

    Availability of the system in nanoseconds: 94483899823

    last load kext to 53361190473: com.apple.driver.AppleBluetoothHIDKeyboard 181 (addr 0xffffff7f8fadd000, size 16384)

    kexts responsible:

    com.apple.driver.AudioAUUC 1.70

    com.apple.driver.AppleHWSensor 1.9.5d0

    com.apple.driver.AppleTyMCEDriver 1.0.2d2

    com.apple.driver.AGPM 110.22.0

    com Apple.filesystems.autofs 3.0

    com.apple.driver.AppleBluetoothMultitouch 90.3

    com.apple.driver.AppleOSXWatchdog 1

    com.apple.driver.AppleMikeyHIDDriver 124

    com.apple.driver.AppleMikeyDriver 274.12

    3.12.8 com.apple.driver.ApplePolicyControl

    com.apple.driver.AppleHDAHardwareConfigDriver 274.12

    com.apple.driver.AppleHDA 274.12

    com.apple.driver.AppleUpstreamUserClient 3.6.1

    com.apple.kext.AMDFramebuffer 1.4.2

    com Apple.Driver.pmtelemetry 1

    com.apple.iokit.IOUserEthernet 1.0.1

    com.apple.AMDRadeonX3000 1.4.2

    com.apple.driver.AppleIntelHD3000Graphics 10.0.0

    3.12.8 com.apple.driver.AppleMuxControl

    com.apple.iokit.IOBluetoothSerialManager 4.4.6f1

    com.apple.driver.AppleThunderboltIP 3.0.8

    com.apple.driver.AppleBacklight 170.8.9

    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.4.6f1

    com.apple.driver.AppleSMCPDRC 1.0.0

    com.apple.driver.AppleLPC 3.1

    com.apple.kext.AMD6000Controller 1.4.2

    com.apple.driver.AppleIntelSNBGraphicsFB 10.0.0

    com.apple.driver.AppleSMCLMU 208

    com.apple.Dont_Steal_Mac_OS_X 7.0.0

    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0

    com.apple.driver.AppleFIVRDriver 4.1.0

    com.apple.driver.AppleMCCSControl 1.2.13

    com.apple.driver.AppleHV 1

    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0

    com.apple.iokit.IOBluetoothUSBDFU 4.4.6f1

    com.apple.iokit.SCSITaskUserClient 3.7.7

    com.apple.driver.AppleIRController 327,6

    com.apple.driver.AppleUSBStorageCoexistentDriver 3.7.1

    com.apple.driver.AppleUSBCardReader 3.7.1

    com.apple.driver.AppleFileSystemDriver 3.0.1

    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1

    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0

    com.apple.BootCache 38

    2.8.5 com.apple.iokit.IOAHCIBlockStorage

    com.apple.iokit.AppleBCM5701Ethernet 10.2.0

    com.apple.driver.AppleAHCIPort 3.1.8

    com.apple.driver.AppleFWOHCI 5.5.4

    com.apple.driver.AirPort.Atheros40 700.74.5

    com.apple.driver.usb.AppleUSBUHCIPCI 1.0.1

    com.apple.driver.usb.AppleUSBEHCIPCI 1.0.1

    com.apple.driver.AppleRTC 2.0

    com.apple.driver.AppleACPIButtons 4.0

    com.apple.driver.AppleHPET 1.8

    com.apple.driver.AppleSMBIOS 2.1

    com.apple.driver.AppleACPIEC 4.0

    com.apple.driver.AppleAPIC 1.7

    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0

    com Apple.NKE.applicationfirewall 163

    com Apple.Security.Quarantine 3

    com.apple.security.TMSafetyNet 8

    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0

    com.apple.driver.AppleBluetoothHIDKeyboard 181

    com.apple.driver.AppleHIDKeyboard 181

    com Apple.kext.Triggers 1.0

    com.apple.driver.IOBluetoothHIDDriver 4.4.6f1

    com.apple.driver.AppleMultitouchDriver 304.12

    com.apple.driver.AppleHIDTransport 5

    com.apple.driver.DspFuncLib 274.12

    com.apple.kext.OSvKernDSPLib 525

    com.apple.iokit.IOSurface 108.2.3

    com.apple.iokit.IOAcceleratorFamily2 205.11

    3.12.8 com.apple.driver.AppleGraphicsControl

    com.apple.iokit.IOSerialFamily 11

    com.apple.iokit.IOFireWireIP 2.2.6

    com.apple.driver.AppleBacklightExpert 1.1.0

    com.apple.iokit.IONDRVSupport 2.4.1

    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.4.6f1

    com.apple.iokit.IOBluetoothFamily 4.4.6f1

    com.apple.driver.AppleHDAController 274.12

    com.apple.iokit.IOHDAFamily 274.12

    com.apple.iokit.IOAudioFamily 204.4

    com.apple.vecLib.kext 1.2.0

    com.apple.driver.AppleThunderboltEDMSink 4.1.1

    com.apple.kext.AMDSupport 1.4.2

    3.12.8 com.apple.AppleGraphicsDeviceControl

    com.apple.driver.AppleSMBusPCI 1.0.14d1

    com.apple.driver.IOPlatformPluginLegacy 1.0.0

    com.apple.driver.IOPlatformPluginFamily 6.0.0d7

    com.apple.driver.AppleSMBusController 1.0.14d1

    com.apple.iokit.IOGraphicsFamily 2.4.1

    com.apple.driver.AppleSMC 3.1.9

    com.apple.driver.CoreCaptureResponder 1

    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0

    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.7

    com.apple.iokit.IOBDStorageFamily 1.8

    com.apple.iokit.IODVDStorageFamily 1.8

    com.apple.iokit.IOCDStorageFamily 1.8

    com.apple.iokit.IOAHCISerialATAPI 2.6.2

    com.apple.iokit.IOUSBHIDDriver 900.4.1

    com.apple.iokit.IOUSBMassStorageClass 4.0.2

    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.7

    com.apple.iokit.IOUSBMassStorageDriver 1.0.0

    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.7

    com Apple.Driver.USB.cdc 5.0.0

    com.Apple.Driver.USB.Networking 5.0.0

    com.apple.driver.usb.AppleUSBHostCompositeDevice 1.0.1

    com.apple.driver.usb.AppleUSBHub 1.0.1

    com.apple.driver.AppleThunderboltDPInAdapter 4.1.3

    com.apple.driver.AppleThunderboltDPOutAdapter 4.1.3

    com.apple.driver.AppleThunderboltDPAdapterFamily 4.1.3

    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2

    com.apple.driver.AppleXsanScheme 3

    com.apple.driver.AppleThunderboltNHI 4.0.4

    com.apple.iokit.IOThunderboltFamily 6.0.2

    com.apple.iokit.IOEthernetAVBController 1.0.3b3

    com.apple.driver.mDNSOffloadUserClient 1.0.1b8

    com.apple.driver.AppleUSBMergeNub 900.4.1

    com.apple.iokit.IOAHCIFamily 2.8.1

    4.6.1 com.apple.iokit.IOFireWireFamily

    com.apple.iokit.IO80211Family 1110.26

    com.apple.iokit.IONetworkingFamily 3.2

    com Apple.Driver.corecapture 1.0.4

    com.apple.driver.usb.AppleUSBUHCI 1.0.1

    com.apple.iokit.IOUSBFamily 900.4.1

    com.apple.driver.usb.AppleUSBEHCI 1.0.1

    com.apple.iokit.IOUSBHostFamily 1.0.1

    com.apple.driver.AppleUSBHostMergeProperties 1.0.1

    com.apple.driver.AppleEFINVRAM 2.0

    com.apple.driver.AppleEFIRuntime 2.0

    com.apple.iokit.IOHIDFamily 2.0.0

    com.apple.iokit.IOSMBusFamily 1.1

    com Apple.Security.sandbox 300.0

    com.apple.kext.AppleMatch 1.0.0d1

    com.apple.driver.AppleKeyStore 2

    com.apple.driver.AppleMobileFileIntegrity 1.0.5

    com.apple.driver.AppleCredentialManager 1.0

    com.apple.driver.DiskImages 417,4

    com.apple.iokit.IOStorageFamily 2.1

    com.apple.iokit.IOReportFamily 31

    com.apple.driver.AppleFDEKeyStore 28.30

    com.apple.driver.AppleACPIPlatform 4.0

    com.apple.iokit.IOPCIFamily 2.9

    com.apple.iokit.IOACPIFamily 1.4

    com.apple.kec.Libm 1

    com Apple.KEC.pthread 1

    com Apple.KEC.corecrypto 1.0

    Model: iMac12, 2, IM121.0047.B23 of BootROM, 4 processors, Intel Core i5 2.7 GHz, 12 GB, MSC 1.72f1

    Graphics card: AMD Radeon HD 6770 M, AMD Radeon HD 6770 M, PCIe, 512 MB

    Memory module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020

    Memory module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020

    Memory module: 0/DIMM1 BANK, 4 GB DDR3, 1333 MHz, 0 x 0198, 0x393930353432382D3035312E4130304C4620

    Memory module: 1/DIMM1 BANK, 4 GB DDR3, 1333 MHz, 0 x 0198, 0x393930353432382D3035312E4130304C4620

    Airport: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.74.0 - P2P

    Bluetooth: Version 4.4.6f1 17910, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: WDC WD1001FALS-403AA0, 1 TB

    Serial ATA Device: OPTIARC DVD RW AD - 5680H

    USB device: USB 2.0 Bus

    USB device: FaceTime HD camera (built-in)

    USB device: Hub

    USB device: Hub BRCM2046

    USB Device: USB Bluetooth host controller

    USB device: USB 2.0 Bus

    USB device: Hub

    USB Device: IR receiver

    USB Device: Card reader

    Bus crush: iMac, Apple Inc., 22.1

    First remove all the third-party RAM installed on the computer and re - built-in. Then, restart and test, whether the KIMBERLEY process continues to have a barrette of faulty RAM MEMORY.

    Finally, what third party RAM brand has been installed? In these forums, because the iMacs are sensitive and benefit from the high quality of RAM, the Crucial two (buy it direct) and the two OWC (www.macsales.com) RAM are recommended because of their high quality and reasonable price. You can also have another hardware problem, in your case I would try to boot from the Partition Recovery (command + R to start) and open disk utility to see if the boot disk is found. You can also use Apple Hardware Test or Apple Diagnostics according to the age of the computer to run a test to see if two applications can detect any material error.

  • disable hardware acceleration set my image loading problem. is there another way to get around this?

    System details:
    OS: Windows 8.1 Professional (64-bit)
    Graphics card: PNY NVidia GT 610 (2 GB)
    RAM: 5 GB
    Firefox version: 36.0 (32-bit)

    Since yesterday, when the images would load on Web sites, some of them would be entirely black, or black for the most part, with only a piece of the images loaded, only to fully charge a few minutes later.

    Disabling hardware acceleration has solved this problem, but reduces the overall performance of firefox. Is there another way to work around this problem, not to mention that disabling hardware acceleration?

    Note: The only 2 things I have tried have been reset firefox and a new installation of firefox. I don't want to lose my data of the addon and the custom settings of firefox, because it takes too much time for me to put them back where they are now.

    I'm also pretty computer savvy, if you can get quite technical with me. If I don't understand something, I ask.


  • Have 3.6.28 like my boyfriend, hate v4 layout and refusing to update. Today, that he found his update automatically. Any way I can avoid this cruel fate?

    When its automatically updated to 4 against his will, he lost everything... cookies, bookmarks, history, etc. He is also seen extreme lagg now and everything is so slow for him, especially selected bookmarks... If it moves the mouse over the list and rapidly down the highest point is unable to follow and it bounces always up and down trying to catch up for a while after that it stops.

    I really want to share this horrible fate, I love my FireFox 3.6 and use it over other browsers. I don't want to just lose and be forced to this provision of the terrible version 4, if I was I might as well switch to Chrome when I start again from scratch, because it is at least a bit more tolerable (though of course less than FireFox 3.6) design.

    Is it all, ANY way I can avoid this and not have my torn 3.6 away from me as my boyfriend did?

    in the Options window > advanced Panel > Update tab > Firefox updates > CHECK never check for updates (not recommended: security risk), click OK to save, exit firefox and restart.

    https://support.Mozilla.org/en-us/KB/options%20Window%20-%20Advanced%20panel#w_update-tab

    BUT don't forget not 3.6.28 is out of date, see: http://www.mozilla.org/en-US/firefox/all-older.html

    Thank you

    Please check 'Resolved' the answer really solve the problem, to help others with a similar problem.

  • Firefox is not always compatible with the connection to my comcast email account. I need to clear the cache, and then I can back into my email account. Is there a way to permanently solve this problem? Thank you.

    Firefox is not always compatible with the connection to my comcast email account. I need to clear the cache, and then I am able to get back into my email account. Is there a way to permanently solve this problem? Thank you.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".
  • Why FF6.0.2 always check compatibility when opened and opened 2 tabs - firefox page and home page? Is there a way to disable? This is quite annoying

    Why FF6.0.2 always check compatibility when opened and opened 2 tabs - firefox page and home page? Is there a way to disable? This is quite annoying

    See the following for a few suggestions:

  • I gifted my father music and a song of the AUS iTunes, but they upload because it is outside the Australia (in New Zealand). Is there a way to get around this? There is only an iPad.

    I gifted my father music and a song of the AUS iTunes, but they upload because it is outside the Australia (in New Zealand). Is there a way to get around this? There is only an iPad.

    "gifts can only be redeemed in the country store that they came from".

    You can try to contact iTunes Support through CHAT or by phone. -They can try to solve this problem.

    https://www.Apple.com/support/iTunes/

Maybe you are looking for

  • FF4.0.1: Integrated podcast player in Google Reader pop in a blank window. Was ok in Firefox 3. Help!

    Using FF 4.0.1 I subscribe to podcasts using RSS and they appear in Google Reader. The Flash Player works well but I normally click on the link "drop down" so that the podcast plays a loose player. In the meantime, I am free to scoot around Google Re

  • Toshiba 55M7463DG TV suddenly cloud TV no longer works

    Hello Since yesterday my TV cloud is no longer in effect.I M 55, 7463 and everything worked perfectly until yesterday.When I push the "House" on the remote control button, I get a blank screen.Only the name of the profile and the clock with the date

  • HP Probook s 4740 video drivers

    Hello I use HP Probook s 4740 with switchable graphics AMD 7650 and Intel 4000. I'm using the latest drivers from HP, but when I run the 2014 Autocad, the application crashes until she begins with a message "FATAL ERROR: Exception not supported Acces

  • 0328 - A11 - disable Bluetooth

    I use the Thinkpad Edge 0328-A11 unit. I recently had reimagee and have encountered a problem when the redownloading drivers. Before the update, it was possible for me to press F9 for the on-screen display to toggle the WIFI and Bluetooth. I had down

  • How to print to tray 2 on an HP Officejet Pro 8500 has a bonus?

    I can understand photos not be printed on plain paper in tray 2 (sort of), but I can't print emails or web pages to tray 2 of either ePrint Airprint GOLD. I have tray 2 as default and 1 locked drawer. If I try to print it will try to print from Tray