Ask reg deleting logical lines dup

Hi gurus,

Could you please help with a query with the req as below

I have a table "tbl".

Col1 Col2
------ -------
A wind generator
A quiet
B Cn
B only
B Em
C only
D Wt
D what
D Em

the result of the query must be

Col1 col2
----- -------
A WtQu
B Cn
B only
B Em
C only
D WtQU
D Em


That is to say whenever I'm Wt and what (in col2) values for the same value of Col1 (here A and D), then the values must be concatinated and only one record with this concatinated value should appear.

Could you please help. Thanks in advance!

BR
Sridha

Try:

with TEMP as (select 'A' COL1, 'Wt' COL2 from DUAL
union select 'A' COL1, 'Qu' COL2 from DUAL
union select 'B' COL1, 'Cn' COL2 from DUAL
union select 'B' COL1, 'EM' COL2 from DUAL
union select 'D' COL1, 'Wt' COL2 from DUAL
union select 'D' COL1, 'Qu' COL2 from DUAL
union select 'D' COL1, 'Em' COL2 from DUAL
order by COL1,COL2)
select TEMP.COL1,
       case when TEMP.COL2='Qu' then
            ((select T1.COL2 from TEMP T1 where T1.COL1=TEMP.COL1 and T1.COL2 = 'Wt')||TEMP.COL2)
            else temp.COL2
            end
from TEMP
where col2!='Wt';

Tags: Database

Similar Questions

  • 'Ask before deleting' Notes

    I installed 9.3.2 on my iPhone and was pleased to see that Notes is seeking more sophisticated - and there are some new features such as the addition of a drawing, etc.. But I accidentally hit the button Delete and then freaked out when he simply disappeared, just like that. I realize that there is a new "Recently deleted" folder, but prior to that, he is always asked to confirm if you want to delete a note. This instant deletion of a note as soon as your finger brushes the Trash button makes me really nervous. I don't understand why they would take away a feature like confirmation before deletion, which was previously available only to avoid situations where you don't even know that you have removed a note, because there is literally no notice before it disappears just; If you are not looking at your screen you never know it happened... and then after 30 days it is gone forever. As much as there is an option to turn the option "Ask before deleting" Mail, Contacts, calendars. Can we do not have the same option for Notes? Or at least just the do each time by default, just in case. Apple, please report it.

    Even if I am here, I am also disappointed that the new police force has reformatted all my notes so that the lists which have been made intentionally points of a line are now 2 lines, because the new policy takes more space; either because it is larger, or tracking or kerning is superior or something like that. Would be nice if we could adjust the font size and other options for fonts in the Notes.

    Thank you

    I agree with you!

  • I have verticle colored lines - from the bottom to the 1/2 in screen - I can see through them to read - I need to know the WAY to delete these lines

    I mâtinées verticle lines - from the bottom to the 1/2 in screen - I can see through them to read - I need to know the WAY to delete these lines - I once, a few years ago, removed, but they reappear - not my conscious fault - this is my old computer - A Compac - Windows 95 as an operating system

    Hello

    You should check with Support of Compaq, their documentation online and drivers,
    and ask in their forums about known issues.

    Microsoft product support has ended for Windows 95 a decade ago.

    Compaq - support, drivers and documentation online
    http://www.Compaq.com/country/cpq_support.html

    Compaq (HP) - Forums
    http://h30434.www3.HP.com/PSG/|

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • deleting several lines in a report?

    db11gxe, apex 4.0, firefox 24,

    How to delete several lines in a report at the same time?

    Thank you

    Hi newbi_egy,

    Here's a demo with a few steps that can be used in your scenario-

    (1) this is the query for a report on the emp table that has column empno with values single-

    SELECT APEX_ITEM.CHECKBOX(1,empno) " ", ename, job FROM   emp ORDER  by 1
    

    (2) a button Delete is created that submits the page.

    (3) a sur-soumettre the process is created with point process on submit - after calculations and Validations to determine that the sub process is running when you click the button remove.

    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
    delete from emp where empno=APEX_APPLICATION.G_F01(i);
    END LOOP;
    END;
    

    I hope this could help you.

    Kind regards

    Das123

  • Delete forbidden line

    Hello

    I created a set of tables (see SQL code below) and a few foreign key between them.
    I filled the S, R, you and V tables only, leaving empty. When I want to delete a line of U, I get the following
    error: ' * ORA-01460: letter dead or unreasonable conversion requested. "

    If I disable A_U_FK1 forced, I can delete a line of u. Notice that A is always empty.

    Sorry for my stupid question, but I do not understand why I have to disable the constraint of A_U_FK1 for the removal of a line of U:{{class=fontblue}}
    Is this a bug or did I miss something?

    Stephan

    Oracle XE 10.2.1.0
    Windows XP SP3
    --------------------
    SQL code for creating tables
    CREATE TABLE S
      (
        S_ID  NUMBER NOT NULL ENABLE,
        S_NOM VARCHAR2(1024 BYTE) NOT NULL ENABLE,
        CONSTRAINT S_PK PRIMARY KEY (S_ID),
        CONSTRAINT S_UK1 UNIQUE (S_NOM)
      );
    
    CREATE TABLE R
      (
        R_URL VARCHAR2(2048 BYTE) NOT NULL ENABLE,
        S_NOM VARCHAR2(1024 BYTE),
        CONSTRAINT R_PK PRIMARY KEY (R_URL),
        CONSTRAINT R_S_FK1 FOREIGN KEY (S_NOM) REFERENCES S (S_NOM) ON
      DELETE CASCADE ENABLE
      );
    
    CREATE TABLE U
      (
        U_URL VARCHAR2(2048 BYTE) NOT NULL ENABLE,
        U_DATE_AJOUT DATE DEFAULT sysdate NOT NULL ENABLE,
        U_CONTENU BLOB,
        S_NOM VARCHAR2(1024 BYTE) NOT NULL ENABLE,
        CONSTRAINT U_PK PRIMARY KEY (U_URL, U_DATE_AJOUT),
        CONSTRAINT U_S_FK1 FOREIGN KEY (S_NOM) REFERENCES S (S_NOM) ON
      DELETE CASCADE ENABLE
      );
    
    CREATE TABLE V
      (
        V_ID  NUMBER NOT NULL ENABLE,
        V_NOM VARCHAR2(1024 BYTE) NOT NULL ENABLE,
        CONSTRAINT V_PK PRIMARY KEY (V_ID),
        CONSTRAINT V_V_FK1 FOREIGN KEY (V_ID_ALIAS) REFERENCES V (V_ID) ON
      DELETE CASCADE ENABLE
      );
    
    CREATE TABLE A
      (
        A_ID NUMBER NOT NULL ENABLE,
        U_DATE_AJOUT DATE,
        U_URL VARCHAR2(20 BYTE),
        V_ID  NUMBER,
        CONSTRAINT A_PK PRIMARY KEY (A_ID),
        CONSTRAINT A_V_FK1 FOREIGN KEY (V_ID) REFERENCES V (V_ID) ON
      DELETE CASCADE ENABLE,
        CONSTRAINT A_U_FK1 FOREIGN KEY (U_URL, U_DATE_AJOUT) REFERENCES U (U_URL, U_DATE_AJOUT) ON
      DELETE CASCADE ENABLE
      );

    Not exactly, but try sync - lies the dimensions of your U_URL column between the tables A and U. U, it is 2048, in one he is 20.

  • Delete blank lines don't other containers

    Here is a weird problem that I have. Essentially, I'm working on a Flash editor. I start with a container, and the user can write text. Then, when the height of the text in the container reaches the last line, I create a new container. When the first bin is full, he jumps correctly to the next container. The same goes for when a user deletes the second container, it goes back to the first container. These containers represent pages.

    Now, the problem is the deletion of lines in the 2nd and jump back to the first container. All the works, well, IF there are characters on the last line of the container 1. If, however, I have 5 empty lines (just the jumps of line on them) in the first container, and then I get to the first character in the 2nd container, pressing return back does nothing. The flow composer correctly reduces the number of lines, but the cursor only goes in the 1st container when it encounters a line that has the characters on it. Hit the return back 3 times for example, keeps the cursor on the first line in the 2nd container. If I click on the last line in the 1st controller, the cursor will move to the 3rd in the last line (where the cursor should be finished after pressing BACKSPACE 3 times). Try clicking on the 2nd container, I can't put the cursor there aren't any longer has no lines in there.

    So my question is, why don't the cursor jumps to the 1st container when clearly the composer knows that there is no lines in the 2nd container?

    You use the TLF even like what I've said?   I use the Flex SDK with TLF 2.0.0.232 in 4.5.0.20135 kit.

  • Successfully delete a line a secondary ASP?

    I try to delete one line of a secondary ASP NetMonitor, but continue to get a "java.util.ConcurrentModificationException: underlying secondary ASP has been modified" exception.

    Here is the latest iteration of the script I was trying:

    hostName = 'Test123 '.

    cfgSvc = server. ConfigService

    aSvc = server. AgentService

    netObj = #! NetMonitor_ServiceLevels # .getTopologyObjects () .findAll {computer. DeviceName == hostName} .fate {a, b-> b.lastUpdated<=> a.lastUpdated} [0]

    Agent = aSvc.findByName (netObj.monitoringAgent.agentInstance) [0]

    ASP = cfgSvc.getAgentInstanceConfigs (agent.getAgentNamespace (), agent.typeId, agent.id) .findAll {it.getSharingName () == 'netDevList'} [0]

    lines = asp.getRows)

    for {(rank lines)

    If (Row.GetString ("DeviceName") == hostName) {}

    asp.removeRow (row)

    cfgSvc.saveConfig (asp)

    }

    }

    FYI - I get that exception if cfgSvc.saveConfig (asp) is REM out or not, however, the line is ACTUALLY deleted when it's not only out REM.

    I can not catch the exception, but do not feel comfortable with that...

    Any thoughts?

    Thanks for the clarification, Brian.

    He could complain because the lines loop continues to process the lines after the lines have been updated.

    It worked for me when I replaced the end of the script with:

    found = null

    lines = asp.getRows)

    for {(rank lines)

    If (Row.GetString ("DeviceName") == hostName) {}

    found = row

    breaking

    }

    }

    If (found == null) return null

    asp.removeRow (found)

    cfgSvc.saveConfig (asp)

    Back to ASP.

    Kind regards

    Brian Wheeldon

  • How will I know where the time goes when you delete a line?

    Dear experts,

    Removal of certain rows in a table (approx. 4.9 GB / 2.9 Millon lines) takes an average of.5 seconds each line (on average).

    This table contains 3 clues, just I just rebuild. Statistics from a couple of the day before.

    I have imported/exported the table to a new schema and destruction prend.002 seconds each line (on average).

    How will I know where the time goes when you delete a line?

    BTW, this is ORACLE 10 g

    Thank you
    Serra

    There the child tables of this table with FK defined as DELETE CASCADE?

  • How to delete a line item / of a custom Data Type?

    Hi all

    I can't tried to delete a line of a custom data type.

    As you will see in the code below I add a line to an array of Type (this is done several times). I then loop through each row in the type of array and pass it the id in a separate function. Once it is I so need to remove this item from the array Type - that's where I think my syntax is wrong because I get an error "ORA-00903: invalid table name.

    Clear code
     DELETE FROM TABLE(CAST(l_DeleteList AS TEMP_DOCVERSIONID_TABLE)) WHERE docVersionID = l_DocVersID;
    Complete code
    l_DeleteList.extend;
    l_DeleteList(l_DeleteList.last) := DOCVERSIONID(l_DocVersID);
    
    .......................
    
    select count(*) INTO v_count FROM TABLE(CAST(l_DeleteList AS TEMP_DOCVERSIONID_TABLE));
      -- loop temp table and delete document versions
      WHILE v_count > 0
      LOOP
      BEGIN
        SELECT docVersionID INTO l_DocVersID FROM TABLE(CAST(l_DeleteList AS TEMP_DOCVERSIONID_TABLE)) WHERE ROWNUM = 1;
        DeleteSingleDocumentVersion(l_DocVersID);
        DELETE FROM TABLE(CAST(l_DeleteList AS TEMP_DOCVERSIONID_TABLE)) WHERE docVersionID = l_DocVersID;
        select count(*) INTO v_count FROM l_DeleteList;
      END;
      END LOOP;
    Thanks in advance,

    Toby

    Trim element removes it from the end of the collection... but you are a loop of the collection from the first to the last clue.

    If you use delete then the item is deleted but index still exists... then array.last and County are not equal...

    You can use something as shown in this example (rather than use a time loop on many items)... after deleting an item to browse a table...

    SQL> Declare
      2     TYPE    TYP_TAB IS TABLE OF PLS_INTEGER ;
      3     my_tab  TYP_TAB := TYP_TAB( 1, 2, 3, 4, 5 );
      4     v       Pls_Integer ;
      5  Begin
      6     my_tab.DELETE(2) ;
      7     v := my_tab.first ;
      8     Loop
      9        Dbms_Output.Put_Line( 'my_tab(' || Ltrim(To_char(v)) || ') = ' || my_tab(v) ) ;
     10        v := my_tab.NEXT(v) ; -- get the next valid subscript
     11        Exit When v IS NULL ;
     12     End loop ;
     13  End ;
     14  /
    my_tab(1) = 1
    my_tab(3) = 3
    my_tab(4) = 4
    my_tab(5) = 5
    

    Published by: ravikumar.sv on August 10, 2009 15:19

  • Deleting duplicate line

    Hello

    I have a delicate situation.

    my query is like this:
    select count(*), source, ttype, tdate, qty, rate, cost, charge, impstatus, errorcode, proj_code, res_code, role_code, job_id, extl_id, taskid, rate_curr, cost_curr,ext_source_id, chg_code, inp_type
    from transimp
    where ttype = 'X'
    and res_code = 'NLAB'
    and tdate >= '01-MAR-2009'
    group by source, ttype, tdate, qty, rate, cost, charge, impstatus, errorcode, proj_code, res_code, role_code, job_id, extl_id, taskid, rate_curr, cost_curr,ext_source_id, chg_code, inp_type
    having count(*) > 1
    This query returns me 700 records with count (*) = 3
    which means that they are duplicates of records in the table (Please note we have a primary key, but these documents are double according to the needs of the company).

    I want to remove these duplicates, i.e. after the deletion if I run the same query again, count (*) must be 1.

    any thoughts?

    Thanks in advance.

    Dear Caitanya!

    It is a DELETE statement that deletes duplicate rows:

    
    DELETE FROM our_table
    WHERE rowid not in
    (SELECT MIN(rowid)
    FROM our_table
    GROUP BY column1, column2, column3... ;
    

    Here Column1, Column2, Column3 is the key for each record.
    Be sure to replace our_table with the name of the table for which you want to remove duplicate rows. GROUP BY is used on the columns making up the primary key of the table. This script deletes every line in the group after the first row.

    I hope this could be of help to you!

    Yours sincerely

    Florian W.

  • Windows 7 RTM Installer deleted logical Partitions

    My computer has two physical hard disks, each with multiple partitions. I did a custom installation of Windows 7 Professional RTM on the first hard disk, deleting an old primary partition containing Windows XP (which wouldn't start). However, after I installed Windows 7, ALL of my logical partitions on this disk had also disappeared. The Windows 7 Installer creates two primary partitions: the big partition I realized it, and a partition of 100 MB system reserved. (It is always not allocated the remaining space on the disk, as the new partition for Windows 7 was smaller than the Windows XP partition, which I've deleted.)

    Former route:

    GiB 250 NTFS (primary)
    100 MiB ext2 (primary)
    3 logical partitions (two ext3, a FAT32)
    100 giB encrypted (primary)

    New layout:
    100 MiB NTFS (primary)
    149.9 giB NTFS (primary)
    Unassigned 100 GiB
    100 MiB ext2 (primary)
    115,66 giB space (!) free where the logical partitions used to be
    100 giB encrypted (primary)

    It seems that the installation program has decided to get rid of my extended partition. How can I recover my old logical partitions?

    I managed to restore the missing partitions to aid CGSecurity's TestDisk, but it took some doing. Always, however, the fact that the Windows 7 Installer has deleted my partitions without asking confirmation is more worrying. That's what I guess happened:

    Disc has 3 primary partitions and one extended partition, before starting the installation.
    I told the installer to remove a primary partition and create a new one in its place to install Windows 7 on. He wanted to do a second primary partition, so she won another partition to delete. He didn't tell me that. He said he may need create additional partitions, but nothing has been said to delete those that already exist.
    The Setup program has installed Windows 7, and my extended partition was gone (so logical partitions inside it were no longer accessible).

    I recommend strongly anyone install Windows 7 on a disk that contains several other partitions to create a partition for Windows 7 in advance (using the management of disks or DiskPart.exe), instead of using Setup to do. In this way, it will not create the partition of MiB 100 extra.

  • MERGE statement - delete all lines?

    Hi all

    I am using Oracle 11 g and in my application, I need to update several existing records in a table in the Production environment. For this, I wrote a SQL logic using the "MERGE INTO" statement.

    Here's the SQL logic that I used.

    merge into the tar of the target

    a_l'_aide_de)

    Select

    EC.prim_id,

    CSM.Cptr,

    CSM.prm,

    CSM.scnd,

    CSM. PTXT,

    CSM.entn,

    CSM. ENPR,

    CSM.sevr

    t2 t1 ec cat inner join

    on ec.x = cat.y

    inner join s t3

    on ec.p = q.a.

    inner join t3 b

    on ec.m = b.n

    inner join t4 csm

    on)

    (lower (replace (cat.xn, b.sname |))) ((('-', ")) = lower (csm.xn))

    and (below (replace (s.yn, b.sname |))) ((('-', ")) = lower (csm.yn))

    and (lower (b.rn) = lower (csm.rn))

    )

    where ec.cptr is null

    and ec.prm is null

    and ec.scnd is null

    and ec.ptxt is null

    and ec.stxt is null

    and ec.entn is null

    and ec.enpr is null

    and ec.sevr is null

    ) CBC

    on)

    SRC.prim_id = tar.prim_id

    )

    When matched then update

    Set tar.cptr = src.cptr,

    tar.PRM = src.prm,

    tar.scnd = src.scnd,

    tar. PTXT = src.plcy_txt,

    tar. MID = "offline."

    tar.entn = src.entn,

    tar. ENPR = src.enpr,

    tar.sevr = src.sevr

    I doubt here, that is, if the condition WE in education MERGE gets failed then is it insert/delete all records in/to from the target table. But I think that it won't happen because I'm not specify the statement as 'WHEN DO NOT MATCHED THEN' right? Or default oracle will insert/remove all lines if the condition does not. ???

    Your help is very appreciated.

    Thanks in advance

    If your question is addressed, then close this thread.

  • How to specify SQL custom querying the db with option to delete logical adapter

    Hi all

    I write a composite SOA application using JDeveloper SOA Suite 11.1.1.4 connection to a SQL Server database with the help of a Secretary of the poll the DB adapter with the logical delete option to send data to a BPEL process.

    I have requirements that go beyond what is supported in the UI JDeveloper for polling of the adaptor DB options, namely:
    * update several columns to mark each line read, and
    * specify different SQL to remove operation logic based on if bpel surveyed data processing was successful or not.
    A complicating factor is that the query contains two tables. Here is my complete use case:

    (1) mark will select data from two tables: for example 'headers' and 'details' simplified for this example:
    Table: headers
    HID - primary key
    name - plate
    status - "raw", "transformed" or "error".
    processedDate - null when the data is loaded, the DateTime current when the treatment of the line
    Table: Details
    HID - foreign key pointing header.hid
    attr - name attribute of data
    value - value of the attribute data

    2) there are a many relationship: 1 from detail lines to the header through the hidden columns. The adapter db SELECT the voting clerk must return results of an outer join consisting of line a header and the associated detail rows where header.status = 'no' and header.hid = details.hid. (This is supported by the UI Jdeveloper)

    (3) the survey data will be sent to be processed by a bpel process:
    (3.1) if the bpel treatment is successful, the logical delete operation (UPDATE) must set header.status = 'transformed' and header.processedDate = 'getdate() '.
    (3.2) if bpel treatment fails (for example hits a data error during the processing of the selected data) the logical delete operation (UPDATE) must be set to 'impossible' = header.status, header.processedDate = 'getdate()' and header.errorMsg = '{of the text returned by bpel}.

    Several parts of the #3 are not supported by the UI JDeveloper: update several columns to mark the addressed line, using getdate() to fill a value of one of these updates to the column, update of different operations based on the results of the BPEL, processing of the data (success or error) and using data from BPEL treating it as a value of these updates of column (error message).

    I found examples that describe the specification that is customized by using querying SQL Delete option to create a template and then modify the toplink files to specify custom select and update SQL to implement a logical deletion. (for example, http://dlimiter.wordpress.com/2009/11/05/advanced-logic-in-oracle-bpel-polling-database-adapter/ and http://myexperienceswithsoa.blogspot.com/2010/06/db-adapter-polling-tricks.html). But none of them match what I have in my project, in the first case because maybe because I use a newer version of JDeveloper and the second I think because in my case, two tables are involved.

    Any suggestion would be appreciated. Thank you, John

    Hi John,.

    You raised a good script.
    First of all, let me say that the purpose of the DB of the election operation, is to have an option to start the process of a DB table/view and not update several fields in a table (or have other complex manipulations on the table).
    Thus, when choose update a field in a record, after reading it, you "say" the engine not to question this record again. Of course, I guess you can find a solution/workaround for it, but I don't think that this is the way...

    The question now is what to do?
    You can have another DB adapter where you can update the data after you have completed the process. In this case, after reading the data (on the query operation) - updated the "transformed" for example = header.status and after processing the selected data update the rest fields.

    Hope it make sense for you.

    Arik

  • How to hide the table row after deleting logical

    Hello.
    I use Jdeveloper 11.1.1.3.0, ADF BC and ADF Faces.
    I would like to implement the logic delete in my application.
    In my entity object I have deleted attribute and I replace the remove() method in my EntityImpl class.
        @Override
        public void remove()
        {
           setDeleted("Y");
        }
    and I added this condition in my view object
    WHERE NVL(Deleted,'N') <> 'Y'
    on my page, I have a table. This table has a column to remove each line. I dragged and drop action the data control RemoveRowWithKey
    and the value of the parameter * #{row.rowKeyStr} *.
    I have what I need is the following:
    When the user click on the delete button I want to hide the ROE of the table. I tried to rerun the query after deleting, but the line is still on the page. Why run query does not hide the line of the screen.
    Here's the code I used to remove and run queries
        public String deleteLogically()
        {
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("removeRowWithKey");
            Object result = operationBinding.execute();
            DCBindingContainer dc=(DCBindingContainer) bindings;
            DCIteratorBinding iter=dc.findIteratorBinding("TakenMaterialsView4Iterator");
            iter.getCurrentRow().setAttribute("Deleted", "Y");
            //iter.getViewObject().executeQuery();
            iter.executeQuery();
            return null;
        }
    as you can see I used two methods () iter.getViewObject () .executeQuery; and iter.executeQuery (); but the result is the same.

    I built a sample for you - http://jobinesh.blogspot.com/2011/05/soft-deletion-of-rows.html. Please see if it meets your requirement.

  • Manipulation of table (delete the lines which are &gt; lines after them)

    I have a table of entry I want to manipulate.

    We measure a rotation device.  In the measurement sequence we want to display the data on a slope that is constantly growing, although when we let off the coast of the acceleration of our mobile device at the end of the test, we end up with a higher torque #s at the beginning of the sequence of RPM... which blurs our line of slope on our chart.

    For example, see the PNG attached on the table of torque/RPM torque.  I need to be able to cut the 2 first lines of the table that we need go less and more general in the line of torque sequence.  Throughout the test, we have a number of line 10 for example couple that is greater than the value of torque on line 11, so that we would need to cut the value of torque in line 10.

    I have attached the vi sub that I plugged in order to try it, but can't make it work.   I don't have to sort the table, but to remove the lines that exceed the lines after them... relatively to the value of rpm decreases constantly.  If I have a pair of value 2340/1869 in the row 1 & 276/1839 in row 2, I need rank 1 deleted.  But if I have a pair of value of 2509/1704 in row 12 & a pair value of 2493/1689 in the 13th row, I don't want to let the value of torque in (if possible) because it is a realistic appearance of the torque curve captured during the sweep of the power of the test.

    Any ideas?

    ready!

Maybe you are looking for

  • Adapter USB wifi with Firefox OS?

    I recently bought a product called Via APC. It is similar to the raspberry Pi, only it has Firefox OS pre-installed.My question is, can I use with Firefox OS wifi adapter? It will automatically recognize or should I do something?

  • Iomega IX4 - 200 d - Boot Loop

    Hello. Hello. We currently have an Iomega IX4 - 200 d that is stuck on a loop of Boot Logo Iomega. I have posted a youtube video showing the issue in order to provide a better explanation. https://www.YouTube.com/watch?v=aGLS5HfHPLM The unit worked p

  • Want 'Real' Sleep Mode to blackBerry Smartphones back!

    I read about 30 posts on this topic and person not seems to answer that question on the recently revised change change "standby key button / mute.  I don't no case my 9700, so a TRUE sleep button is very useful.  Some positions indicate that the lock

  • Profiles &amp; data synchronized

    Hello world Without creating profiles (using the default) data synchronization just works perfect, thanks to mozilla. But I wonder what happens if we create several profiles. Imagine that you have 2 profiles, without any add-ons and another with some

  • I want to download the latest Acrobat Reader WITHOUT McAfee.  I happen to like Trend Micro, and I want to keep it this way.

    How to download the latest Acrobat Reader WITHOUT McAfee.Adobe, NOT SUPPOSE to tell me what I download.