Help with clean up duplicate records

One of my tables have duplicate records in paris that needs to be cleaned up. I want to cleanup the earlier TIMESTAMP.
ID MODIF_TIME_STAMP
483070 1/7/2005 11:49
483070 1/13/2005 17:19
483071 1/6/2005 11:49
483071 1/14/2005 17:19
483072 1/15/2005 11:49
483072 1/07/2005 17:19
9000 records
What is the easiest way to pick only the ID of the earlier timestamp of each pair.
Thanks in advance.
Ittichai

Hallo,
delete from your_tab
where rowid in
(select rowid from
(select rowid, id, modif_time_stamp, row_number() over (partition by id order by modif_time_stamp desc) rn from your_tab)
where rn > 1
)This query deletes records with earlier date for every id
Regards
Dmytro
Message was edited by:
Dmytro Dekhtyaryuk

Similar Messages

  • Help with Audio Playback While Recording

    I am an aspiring sound engineer and I am having a problem with recording in Audition 3.0 that I need help with. When i record vocals, the sound wave plays back in the speakers/headphones with like a 1.5 second delay after it is recorded. It really throws off the artists I am working with when they are trying to record vocals. How do i kill headphone/speaker playback while someone is recording?

    There are problems with a lot of internal soundcards in a lot of laptops, and these seem to be so many and various that all you can do is use trial and error and hope for the best.
    External soundcards should cure any problem, but you may have to look into what else is running on the laptop, as so much is integrated, and some machines seem to have audio problems caused by wireless or other network adaptors etc.
    As I said, I use oldish Edirol and Tascam usb units. The Tascam has a known fault (noise when using a guitar channel at the same time as phantom powering a mic on the other channel) which I can live with, and I would hope has been solved in later and current versions. The Edirol is fine. I use 2 units to give me the connections I want (ie one has jacks, the other phono plugs, and different size headphone sockets). Both these have asio and wdm drivers and work fine with AA 3.0 here. More modern devices will be usb2 and will presumably provide more channels or higher sampling rates, but these are fine. Others will be more up to date than me, but I would think anything from Tascam, Edirol, Echo Audio and I think most m-audio models should be fine. Just be wary of anything from Creative Labs. I, too, have had bad experiences with one of their products (it drew too much current from the usb port on a couple of the laptops so I never got as far as to find whether it had asio drivers working or not). But others will be more up to date than I am.
    I just went onto ebay over the years and kept bidding on sensible looking devices until I got ones at the right price, but it probably is better to buy new if you can afford it.
    Sorry I can't give a more definite answer.

  • Help....Duplicate records found in loading customer attributes!!!!

    Hi ALL,
    we have a full update master data with attributes job that  is failed with this error message: (note the processing is PSA and then Data targets)
    1 duplicate record found. 66 recordings used in table /BIC/PZMKE_CUST RSDMD 199     
    1 duplicate record found. 0 recordings used in table /BIC/PZTSA_CUST RSDMD 199     
    1 duplicate record found. 0 recordings used in table /BIC/PZTSA_CUST RSDMD 199     
    1 duplicate record found. 0 recordings used in table /BIC/XZTSA_CUST RSDMD 199     
    1 duplicate record found. 66 recordings used in table /BIC/XZMKE_CUST RSDMD 199     
    our datasource is 0CUSTOMER_ATTR i tried to use the transaction rso2 to get more information about this datasource to know where i can find the original data in R/3 but when i execute i got this message:
    DataSource 0CUSTOMER_ATTR  is extracted using functional module MDEX_CUSTOMER_MD
    Can you help me please what should i do to correct and reload or to find the duplicate data to tell the person on R/3 system to delete the duplicate.
    Thanks
    Bilal

    Hi Bilal,
    Could you try the following pls.
    Only PSA and Update Subsequently into Datatargets in the Processing tab.
    In Update tab use Error Handling , mark "Valid Records Update, Reporting Possible(request green).
    If my assumptions are right, this should collect the duplicate records in another request, from where you could get the data that needs to be corrected.
    To resolve this issue, just load using ONLY PSA and Update Subsequently into Datatargets with Ignore duplicate Records checked.
    Cheers,
    Praveen.

  • Help: SQL list all duplicate records

    Given table B with employer_id, ssn, period and employee_name, list all records with duplicate ssn for a given period and employer_id.
    I used:
    select employer_id, ssn, employee_name, count(ssn) from B
    group by employer_id, ssn
    where period='xxx' and count(ssn)>1
    got error:
    ORA-00933: SQL command not properly ended
    checked sometime and still can not figure it out, any help will be greatly appreciated.

    select employer_id, ssn, employee_name, count(ssn) from B
    where period='xxx'
    group by employer_id, ssn,employee_name having count(ssn)>1
    Regards
    Helio Dias
    http://heliodias.com

  • Help in Elimating the Duplicate records

    Hi all,
    Can anyone help me on this ..i am going to use this SQL in a FOR LOOP CURSOR
    This SQL is now Returning Multiple records for each participant because of the c.cmpnt_beg_dte
    because there are multiple begin dates for each participants but i want only single record for each
    participant with the oldest cmpnt_beg_dte
    SELECT
    distinct a.partc_ssn, a.partc_id, b.LOC_ID, e.loc_desc, c.CMPNT_BEG_DTE
    FROM etr_rgt_partc a,
    etr_fst_partc_rgst b,
    etr_fst_partc_cmpnt c,
    etr_smt_fst_cmpnt_mstr d,
    etr_smt_agy_loc_mstr e
    WHERE a.partc_id = b.partc_id
    AND b.partc_id = c.partc_id
    AND b.fs_rgst_id = c.fs_rgst_id
    AND c.cmpnt_nbr = d.cmpnt_nbr
    AND b.loc_id = e.loc_id
    AND B.LOC_ID = 'ES00205'
    AND a.partc_id = 2402514
    AND (c.cmpnt_beg_dte BETWEEN TO_DATE ('10/01/2007', 'MM/DD/YYYY')
    AND TO_DATE ('09/30/2008', 'MM/DD/YYYY'))
    This Query is giving me Result Like the below
    521140046,2402514,ES00205,205- TN Career Center - Savannah,11/8/2007
    521140046,2402514,ES00205,205- TN Career Center - Savannah,2/1/2008
    but i want only 1st record ... now i executed this query manually by passing PARTC_ID but
    i will pass this query inside my procedure ..if i limit by using order by and rownum=1
    for all participants it is giving only 1 row ..
    any one please help me in this issue ..
    To be on Short i want to elimate the Duplicates .. ..but based on Single Column Value
    Thanks in Advance ,
    Data Boy

    If SSN/partc_id and loc_id are always the same for each record (and seems like they should be), then:
    SELECT
    a.partc_ssn, a.partc_id, b.LOC_ID, e.loc_desc, MIN(c.CMPNT_BEG_DTE)
    FROM etr_rgt_partc a,
    etr_fst_partc_rgst b,
    etr_fst_partc_cmpnt c,
    etr_smt_fst_cmpnt_mstr d,
    etr_smt_agy_loc_mstr e
    WHERE a.partc_id = b.partc_id
    AND b.partc_id = c.partc_id
    AND b.fs_rgst_id = c.fs_rgst_id
    AND c.cmpnt_nbr = d.cmpnt_nbr
    AND b.loc_id = e.loc_id
    AND B.LOC_ID = 'ES00205'
    AND a.partc_id = 2402514
    AND (c.cmpnt_beg_dte BETWEEN TO_DATE ('10/01/2007', 'MM/DD/YYYY')
    AND TO_DATE ('09/30/2008', 'MM/DD/YYYY'))
    GROUP BY a.partc_ssn, a.partc_id, b.LOC_ID, e.loc_desc

  • Help with clean Windows 8.1 install Yoga 2 Pro

    Hey guys,
    I purchased a Yoga 2 Pro about 4 months ago as a secondary computer for college. I've been a Mac user for most of my life, and was intersted in learning more about the Windows ecosystem. While messing around in the partition settings, I must have made a mistake, and deleted a partition. I've been trying to follow this guide from the forums, and have the PBR_DRV partition and a "Drive 0 Unallocated Space", as per the walkthrough, but I'm not able to install Windows 8.1 on the "Unallocated Space" from a flash drive. An error with a different code appears everytime. Could anyone help?
    http://forums.lenovo.com/t5/Idea-Windows-based-Tablets-and/Guide-Windows-8-1-PRO-RTM-clean-install-o...

    What do you mean by clean install?  Are you simply restoring a backup image of the pre-installed OS, or are you really installing with a new copy of Windows?

  • Help with processing groups of records in database

    Ok i'm at work right now trying to finish up a project for my class and what it is is a basic class to process an inner join sql statement generated table from access and order it by the student id in order to group each student together. I have written the sql statement and logic to access the database and return the array of row objects to the command line so i know it is grouping and returning info properly. I have written the conditional if statement to get the gradePoints for A = 4, B = 3, C = 2, D = 1, and F = 0 in a class method (KEEP IN MIND THE GENERATED TABLE CONSISTS OF SID, NAME, COURSE#, COURSETITLE, AND LETTERGRADE) now I just need to process each group of students individually and calculate their overall gpa's. Here in lies the problem. I imagine i need to define current student variables as like
    currentID = s[0].getStudentID();
    currentName = s[0].getStudentName();
    then loop through the values of the array with something like
    for(int j = 0; j < s; ++j)
    if(s[j].getStudentID != currentID)
    Process the grade records for the group Then reset the
    current student to the next in line with another variable
    assignment like
    currentID = s[j].getStudentID();
    currentName = s[j].getStudentName();
    }(end of if)
    Process the row object for the student created by this loop and then add it to the output string
    } (end of for loop)
    Ok so where i need help is the logic to process the grade records for the individual groups and then processing the row object. We haven't gone over anything like this in class and it is the last thing on my list to to do so any help would be appreciated. Also, if you think i'm an idiot keep it to yourself please it's not fun for people who really need help and really would like to know for future reference how to do something to be belittled. Thanks again
    Matt
    Message was edited by:
    djmd02

    sorry i guess is hopuld explain this better...I know
    sql relatively well and the sql statement for my
    query string is rediculously long with two inner
    joins and what it returns is the sid, name,
    coursenumber, coursename, and lettergrade So if you know SQL so well, why haven't you created a ViEW using this "ridiculously long" query and made your life easier?
    Two inner joins? Nothing extraordinary about that.
    this query
    generated table is then used to populate an array of
    objects for each entry in the table. They are already
    put in order depending on sid by the sql statement
    (for example)
    11111 matt deClercq 3380 intro to java A
    11111 matt deClercq 3382 database management A
    11112 john doe 3380 intro to java A>
    and so on. The problem i am having is within the for
    loop to detect the end of each student and process
    their grades for each class and calculate the gpa for
    the whole group of grades that that student has.SQL is a declarative language, not procedural. If you're "looping", it suggests to me that you're pulling all that data into the middle tier and doing the calculation in Java.
    I'm suggesting that there's a perfectly good way to do this calculation in SQL without using your ridiculous query. You might be better served if you try and figure out what that is.
    Hope this makes things a little more clear and makes
    me look a little bit more intelligent than i seemStop worrying about what people think and concentrate on your problem. You're a student. It's unlikely that you're going to appear to be on the level of Bill Joy at this point in your career. I'd be a lot more impressed if you'd stop whining about how people perceive you.
    %

  • Startup disk full? Help with clean up.

    I have an older Macbook w/ a 60GB hard drive. I have ~27GB of music a few of movies and a few of pics. Is there a way to scan the drive, delete duplicates or clean up the hard drive automatically?
    I need to create space and suspect there may be a lot of useless files and/or duplicate pics in multiple folders. Any advice would be helpful.
    Thanks

    Freeing Up Hard Disk Space - Mac GuidesFreeing Up Hard Disk Space - Mac Guides

  • Help with Clean Access Architecture

    Hello All,
    I wanted to engage some of the NetPros out there about designing our Clean Access architecture. We purchased 4 3140s (2 x CAMs w/ FO, 2 x CASs w/ FO). The goal is to use Clean Access to validate select areas of our head quarters, along with validate users in a remote location.
    The HQ part of the design I can understand without issue. It's when we begin to deal with the remote office that I become uncertain about the design. The remote office is MPLS connected to HQ (L3 multi-hop). We want users in the remote office to also be L2 authenticate to the Clean Access cluster at HQ. Across MPLS this does not appear to be straightforward. We'd like to do a L2 deployment, but from what I've read this will require using L2TPv3 at the remote office to "tunnel" the VLANs from HQ to remote and vice-versa. My fear is that now the default gateway for the remote clients is the HQ Clean Access cluster. Therefore... all traffic will be "switched" across their WAN link. This becomes and issue as the remote office has local Windows domain controllers for faster file access on another VLAN... and in this scenario it sounds like the workstations would have to travel across the L2TPv3 tunnel to HQ to just have to go back across the tunnel to the remote office for file access. Sounds slow!
    Does anyone have recommendations as to how to design this centralized, L2, OOB architecture. In my mind I would want the clients attempting authentication to the switch... switch forward to the CAS... CAS validates posture and passes down necessary VLAN to switch. All VLAN'ing and switching is kept remote. We operate all 3750 switches... so our infrastructure can work with NAC. Sorry for the long post, just wanted to try to explain the requirements. Thanks for the help.
    -Mike
    http://cs-mars.blogspot.com

    Hi Mike -
    Very good questions. You definitely do not need the L2TPv3 across the WAN to control the ports at the remote site.
    The CASs can be deployed L2 In-Band (IB), L3 In-Band (IB), L2 Out-of-Band (OOB) or L3 Out-of-Band (OOB).
    L3 OOB can be used to control the switches at the remote sites. A 2nd vlan is required for the remote site to serve as the authentication vlan. All ports start off on this Auth Vlan when a user plugs in.
    The user receives an IP Address on this Auth Vlan and the local L3 device is the GWY. The L3 device should have ACLs to protect the rest of the network from this Auth Vlan. The only permit entries in the ACL should let the users get to CAS and the remediation servers. Using a network like 192.168.x.x and varying the 3rd octet on a per-site basis simplifies the ACLs if you are using the 10.x.x.x as your internal addressing. The ACLs should be places on all the MPLS routers to protect the production network from the Auth network.
    Once the user proves trustworthy, the Clean Access changes the vlan on the switch to the production/normal vlan and the user has complete access as before.
    CASs can be either one of the 4 roles (L2 IB, L3 IB, L2 OOB, L3 OOB) when they are added to the CAM.
    If you plan to use L2 OOB for your HQ and L3 OOB for the remotes, you may need to add 1 more CAS pair to your architecture.
    We have some great diagrams that the Clean Access product team have put together that will illustrate this architecture to you.
    Your local SE / CSE should be able to provide this to you.
    Let us know if you have any follow up questions.
    Hope this helps.
    peter

  • Help with dynamic datasource and record selection

                                                                                                                                                                                                                                                                                     <span>Hi, I&#39;m having some difficulty with part of an application I&#39;m trying to build, but here&#39;s some background first.<br /> <br /> I am a student at the University of Maryland, and I&#39;m writing an application for one of the departments here at the university.  It is sort of a front-end for an access database with a lot of extra functionality.  This includes reports.  First of all, the user can change the databse that the application uses, so I store that in an appsetting.  For this reason, I have to tell the report what database to use at runtime rather than using the database expert.  I am building a sort of report wizard in which the user selects certain values, and based upon those values, the SQL statement that the report gets data from changes.  So almost everything about the report&#39;s data is dynamic and will be determined at runtime.  <br /> <br /> So for example if the user chooses an officer report by chapter names, I do this (chapters is a comma delimited string):<br /> <br /><span style="font-weight: bold"> string sel = "SELECT * FROM [Undergrad Leadership] WHERE [Leadership Position] = &#39;" + txtPosition.Text + "&#39; AND [Chapter Name] IN (" + chapters + ");";</span><br /> <br /> The part I am lost on, is how to actually interface with crystal reports.  In the following code, conn is an OleDbConnection to the correct database, rep is the ReportDocument, and view is a CrystalReportsViewer.<br /> <br /><span style="font-weight: bold"> rep.DataSourceConnections[0].SetConnection(conn.DataSource, conn.Database, false); <br /> rep.RecordSelectionFormula = sel;</span><br /><span style="font-weight: bold"> view.ReportSource = rep;</span><br /> <br /> When I try to load the report, I get the following error message:<br /> Error in formula <Record Selection>:  a number, currency amount, boolean, date, time, date-time, or string is expected here.<br /> <br /> Also, assuming this formula gets fixed, how do I actually get fields from this formula and datasource onto my report, since I can&#39;t do it at design time?  Thanks in advance for the help.<br /> <br /> -Jared<br />    </span>

    <p>RCAPI (Report Creation and Modification) calls are only available with Crystal Reports Server RAS SDKs.  This means that using the bundled version of Crystal Reports for Visual Studio will not allow you to place fields onto the report.  A free copy of Crystal Reports Server comes with a registered copy of Crystal Reports Developer.  My guess is that you don&#39;t have either of these products and that you are just using the product that came with Visual Studio.</p><p>All is not lost.  The first question is, do you really need to add the fields at runtime?  In many cases developers just want to have control of the data that gets sent to the report and they are ok with having the same fields display.</p><p>In your code you are changing the datasource which is fine, and you are assigning a Record selection formula which is also fine.  </p><p>The problem with the record selection is that it doesn&#39;t fit the syntax of the Report.  I would suggest printing out the value that you programatically get for the formula and insert it into the Crystal Report Designer.  You will probably get the same error there and gets some  hints as to why it doesn&#39;t work.</p><p>What I would suggest is creating a template report that already has the fields on the report and then change its datasource at runtime and add a RecordSelectionFormula.</p><p>Otherwise you will have to use RAS to be able to add fields at runtime. </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Help with optimization -- too many records being inserted

    hi..
    I am doing this project. This project is as a part of a project competition, and hence the analysis part is already done.I am not supposed to make any changes in the design and the database part.In this project, I have to make an entry form for entering information for schools.
    The project is web based, JSP+DB2. There is only one single form and that contains 30+ fields, and there are around 7-8 tables. Form is submitted only once, and on that submission 280 records have to inserted into the database. Problem is I cannot change any of the design, form or database. If on a single submission, if such a large amount of records are inserted, and that to considering its a website, then the response would be extremely slow. So can anyone of you help me with ideas that I can implement, so that any optimization can take place.
    Thanks in advance.

    As I told this project is of a competition, and has to be implemented in rural areas, hence I cannot be sure as to what will be the server and client configuration. What i want to know is that is there a way that I do not have to insert 280 records in one go. May be insert data in some temporary tables, and then transfer it to the final tables at the time of successful completion. Is this solution feasible, and are there any other such solutions available??

  • Need help with no camera sounds & recording in Captivate 5

    I am an experienced user of Captivate 3 & 4, but I'm having lots of problems with Captivate 5.  I am working on a Windows 7 OS and have just installed Captivate 5.  When I try to record I can't get any camera sounds, even though I have changed my preferences to show them.  Also, Captivate seems to be recording erratically, and sometimes it is catching actions, other times it isnt'  I am running the program as Administrator and I am very puzzled by this.  Normally Captivate has worked like a charm out of the box.  Now it seems to be fighting my every step of the way.  Am I missing something?
    Audio recording seems spotty too. Sometimes it works just fine, other times Captivate just hangs and doesn't really record any sound.
    Any help would be appreciated/

    Hello and welcome to the forum,
    First to be sure: did you install the patch released in December (Help, Updates...)? If not try that first of all. You can find details about the issues solved by this patch in this blog post:
    Patch for Captivate 5
    If this doesn't help, try to clear the cache (Preferences, Global).
    Perhaps (not sure) your Preferences folder has become corrupt. It so, try to find it. In Win7 normally it is a folder (Captivate 5)  in this path:
    \users\<username>\appdata\local\adob
    Maybe you will have to change the settings to make this folder visible in Explorer, by default it is in a system folder and invisible. You can delete this folder (while CP is closed) and when you restart CP a brandnew one will be created.
    Lilybiri

  • Help with cleaning off a 23" Apple Cinema display HD

    Ok guys, I work with LCD's for a living, but mine are a bit different than the Apple monitors (plus, this is my dime, not my companies..). So, I come home to find out our "house guest"'s kid was flinging gogurt all over the place. I look at my LCD's and sure enough, both have someone oily on them.
    I cleaned the dell with no issues, but my 23" Apple Cinema Display HD, has a couple of marks that won't come off (I used water and a micro fiber cloth to clean it). It's like two little oily spots about the size of the tip of a finger, and one little line in the bottom right corner.
    At work, normally we would use denatured alcohol to clean the LCD surface, but I'm quite familiar with the LCD's at work, and what is attached to the polarizer. My Apple display, I'm not so sure, so I don't want to use something on it that is going to damage the surface. Any recommendations? The areas that have the issue don't seem to have any display related problems.... They aren't finger clusters, and the polarizer doesn't look damaged.
    thanks! And yes, the house guest was informed what this monitor costs to replace.... and I threatened to chop off fingers (kidding).

    Apple say not to use alcohol or ammonia. Dilute some hand dishwashing liquid. Moisten a facial tissue with it, and rub gently. Then use several facial tissues moistened with just water to remove the detergent residue.

  • Firefox: Flickering when scrolling - need help with clean 'new' install

    Screen is flickering when scrolling (IE does not). I tried disabling add-ons and tried safe mode - neither helped. Running Win 7 Pro 64bit. Uninstalled via 'Programs and Features'. Download and reinstalled Firefox. Now it shows all my previous settings: menu bar, bookmarks bar, etc. Question: how did it get that stuff back if it 'cleanly' uninstalled? Question: how do I know it didn't pick up it's old 'bad habit' from the previous settings? I am an experienced PC user but not Firefox expert. Looking for help lest I have to ditch Firefox completely...

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    #Open Firefox ''Options'' window (''Preferences'' on Mac or Linux) as follows:
    #* In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]] and select ''Options'' for Windows or ''Preferences'' on Mac or Linux.
    #* In Firefox 28.0 and previous versions, click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    #In the Firefox Options (or Preferences) window, click the ''Advanced'' tab, then select ''General''.
    #In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    #Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Help with Library Management - duplicate files, single develop settings.

    I use Lightroom 5 and local disk as my supposed master.
    I use GoodSync and an external drive as my backup.
    When I am traveling I use my Macbook and the external drive - and this has caused the following problem;
    Instead of just being a backup, my external drive is now a folder in Lightroom.
    The develop settings are associated with the files on that drive and I have duplicates through the synchronisation process that I run with Goodsync.
    Can I move the develop settings (All, Automagically) back to the files located on my local drive and remove the folder from Lightroom?
    I will manage my backup process differently.
    Or .. do I create a new catalog and import the files from ... the external drive first? Or the local?
    Possibly external to ensure I don't lose any settings?
    Any advice, especially if someone else has found themselves in this predicament, would be greatly appreciated!
    Thank you

    When using a Finder specifier you also need to include the startup disk.  There are a few different domains that the path to command will work with.  If you don't specify a domain, such as your first example, the assumption is that you want the user domain.  The /Library/Preferences folder is in the local domain so you can use the following command to get its path:
        path to preferences folder from local domain

Maybe you are looking for

  • How to set-up  Time Machine after Restore

    After having restored an entire system back from Time Machine, it looks to me as Time Machines wants to completely backup all data already held on the hard-disk. With this effect, the harddisk is not big enough. I do not want to buy another disk. Is

  • Can someone pls help me to change AS3 code to AS2 code

    Hello! Dear All, I dont understand why with AS3 code my swf file is not working smooth at all. I would like to try it with AS2. In publish setting when I am selecting Flash Player 8, AS2 my swf is running good but showing lots of code errors. I dont

  • List of Simple and Yes or No questions about the Precision T7910 Workstation

    1) I bought a T7910 with only 1 Processor, can I add a second Processor later?  2) Do all 7910 Models come with a dual-processor motherboard? 3) There are videos on Youtube showing a guy changing his 5.25" HDD ports into 2.5" SSD ports with cables, s

  • Live type title formats

    Hi there, been on the Live type board the last couple days and figured I would try here. I have created a series of titles, and they show up all pix-elated when I dump them into a FCP sequence. Is there a setting I need to be aware of when creating t

  • APPLE: PLEASE READ!!!  MULTIPLE ERRORS!!!!

    iPhoto no longer works buying anything online or connecting with accounts. Passwords are rejected, addresses cannot be added, cards cannot be bought. Multiple bugs guys - please fix soon!