Hit a wall with overclock/ any help?

I overclocked my 865gm2-ls motherboard and have run into a wall at 220mhz fsb. I have an nvidia 5500fx, a 2.8ghz northwood, 2 sticks of 512mb viking 3200 ddr400, and a 3rd generation stock heat sink/fan. I am running the older bios version 5.1 (it killed sata but gave me access to overclocking the cpu). Once I go beyond 220 the system will work for a while and then suddenly reboot. At 220 it runs great. Heat doesn't appear to be the issue. Is this a limitation of the board or is there some other tweak?
Any help is appreciated.
Todd

Quote from: toddctews on 21-February-06, 13:01:13
I finally have some ddr 550 to test this system. (I am building a new one) I set the fsb to 230 and let prime95 run torture test, set to 10, for around an hour. (didn't have more time) Stable so far. Good call Stu!
Todd

Similar Messages

  • Why has my ipad mini stopped connecting with my iPhone 4S? I used to use it to download books, or transfer emails to my ipad mini. It was fine 3 days ago, now I get a message saying " cannot join with iPhone" Any help greatly appreciated.

    Why has my ipad mini stopped connecting with my iPhone 4S? I used to use it to download books, or transfer emails to my ipad mini. It was fine 3 days ago, now I get a message saying " cannot join with iPhone" Any help greatly appreciated.

    You can try resetting your iPad and iPhone by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • Hitting a wall with my 3500+ Winchester

    I am sorta new to building and OC'ing.  My first build was 3 months ago and the one in my sig is my second.  My problem is getting this to run at anything above 265.  My HT freq. is set to 3.  I have tried all different voltage settings.  Currently I am at 1.45 and 5%.  I try hitting more and get random freezes as soon as I stress it.  One thing I have noticed is when I hit those levels and I try to run AM3 or the like when it flips a screen like when you click to start I am getting a crackling in my speakers.  It only happens above 2.65 and I have my AGP set to 67.  Any help is greatly appreciated cause this thing wants to go faster or at least I want it to.  

    Has anyone actually figured out how to fix this?
    I am so far beyond annoyed. The "fix" listed here is a joke. I have tried it multiple times, with both settings and nothing changed.
    I have tried reinstalling iTunes. No luck there.
    Nothing seems to do the trick and I would really like to restore my ipod.
    This started happening for no good reason either. It just started to act up yesterday even though I was using the iTunes store fine the night before. Then yesterday suddenly the store does not work and my ipod won't restore.
    Oh and I have no firewall on.
    edit: iTunes is the ONLY internet connection that is not working. Everything else (browsers, outlook, messengers, torrents, VNC, newsgroups, etc) is working perfectly fine.
    Message was edited by: AndrewChiro

  • Issues with styles: any help gratefully received!

    Hi all!
    I made the [perhaps reckless!] decision to use Pages as my primary word processing software for my PhD. I found a great bibliographic editor [Sente], and liked the look and feel of Pages.
    Now, 6 months, and about 10,000 words in, I am still broadly happy with my decision: apart from one thing that drives me mad! Any help would be appreciated.
    Say I copy text, for example, from the main body to a footnote. The source style is retained. No problem. So, I highlight the text and then click on one of the stlyes in my style draw. In this example, the "footnote" style I have defined. Now.... it just doesnt seem to do this operation smoothly. In this case..... it never applies the font size of the style I choose to change it to. Its driving me nuts! And when I copy text from another source into the main body, and then highlight and select a style from the draw to change... it seems to want to keep the source file, or change it to helvetica, and ignore my styles.
    This is really driving me mad, and I am thinking I should transfer all my documents to Word 2008 [which I own], but I really like Pages, and dont want to have to do this if at all possible.
    Any suggestions?
    Cheers!
    Stevie

    http://discussions.apple.com/thread.jspa?threadID=1643118&tstart=15
    +-+-+-+-+-+-+-+-+
    Worried Life Blues 2008
    +4. Discussions+
    +Apple Discussions, launched in August, 2000, have grown rapidly in usage and features. The main features include personalization, subscription capabilities and email capabilities. _For information on how to use Discussions, please visit the Discussions Help Page_. Cookies should be enabled and an Apple ID account is required if you would like to contribute to the discussions.+
    +Entering the Help and Terms of Use area you will read:+
    +*What is Apple Discussions and how can it help me?*+
    +
    Apple Discussions is a user-to-user support forum where experts and other Apple product users get together to discuss Apple products. … You can participate in discussions about various products and topics, find solutions to help you resolve issues, ask questions, get tips and advice, and more.+
    +_If you have a technical question about an Apple product, be sure to check out Apple's support resources first by consulting the application Help menu on your computer and visiting our Support site to view articles and more on our product support pages._+
    +*I have a question or issue*—+
    +how do I search for answers? _
    It's possible that your question or issue has already been answered by other members so do a search before posting a question._ On most Apple Discussions pages, you'll find a Search Discussions box in the upper right corner. Enter a search term (or terms) in the field and press Return. Your results will appear as a list of links to posts below the Search Discussions Content pane.+
    +Search tips are available here:+
    +http://discussions.apple.com/help/search-tips.html+
    +-+-+-+-+-+-+-+-+
    Yvan KOENIG (from FRANCE lundi 4 août 2008 12:27:57)

  • Working with OracleParameters - Any Help?

    Hi,
    I created a stored procedure with 3 IN parameters(out of 2 are single value,3rd one is pl/sql table) and 1 OUT Parameter (of PLSQL Table Return type).
    I want take the SP results in VB.NET. i used plsql associative arrays, but i am getting error as
    'OracleParameter.Value is Invalid.'
    How to set parameter.size for the Output value.. I don't know exactly how many rows will be retrieved.
    How to use oracleparametercollection.
    How to return cursors from the plsql table.( gone through the asktom article. but i am unable to follow it. getting error as expression is of wrong type.)
    Here the stored procedure that i have written which is a wrapper for another procedure( and that procedure working properly in oracle).
    PL/SQL Procedure
    procedure Storage_Charges_with_prd(LotNo IN Number,CurrDate IN Date,m_prd IN products_table_t,charges_table out storage_charges_table) is
         m_products pkg_coldstorage.products_type;
         type curProducts is REF CURSOR ;
         cv_products curProducts;     
         -- type strgchgs is table of storage_charges_rec index by binary_integer;
         --charges_table storage_charges_table;
         prd_table products_table_t;
         m_SNo Number:=1;
         output_cursor SYS_REFCURSOR;
    BEGIN
         For m_SNo in 1..m_prd.Count
         LOOP
              prd_table(m_SNo):=m_prd(m_SNo);
         END LOOP;
    charges_table:= pkg_coldstorage.CALCULATE_STORAGE_CHARGES1(Lotno,CurrDate,prd_table);
         --return charges_table;
    dbms_output.put_line('Charges Table Row Count In - Storage Charges with Product Procedure ' ||charges_table.count);
    -- Open output_cursor For Select * From table(charges_table );
    END Storage_Charges_with_prd;
    in VB.NET - the Codings are
    Dim mLotno, mCurrDate, SNo, Transid, ProductId, UnitId, ProductName, Unit_Name, Calculation_Method, Season_start_date, season_end_date, labour, Storage_Rate, Seasonal_Storage_Rate As New OracleParameter()
    mLotno.OracleDbType = OracleDbType.Decimal
    mCurrDate.OracleDbType = OracleDbType.Date
    mLotno.Value = LotNo
    mCurrDate.Value = CurrDate
    mLotno.Size = 1
    mCurrDate.Size = 1
    SNo.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    Transid.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    ProductId.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    UnitId.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    ProductName.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    Unit_Name.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    Calculation_Method.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    Season_start_date.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    season_end_date.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    labour.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    Storage_Rate.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    Seasonal_Storage_Rate.CollectionType = OracleCollectionType.PLSQLAssociativeArray
    SNo.Direction = ParameterDirection.Input
    Transid.Direction = ParameterDirection.Input
    ProductId.Direction = ParameterDirection.Input
    ProductName.Direction = ParameterDirection.Input
    Unit_Name.Direction = ParameterDirection.Input
    Calculation_Method.Direction = ParameterDirection.Input
    Season_start_date.Direction = ParameterDirection.Input
    season_end_date.Direction = ParameterDirection.Input
    labour.Direction = ParameterDirection.Input
    Storage_Rate.Direction = ParameterDirection.Input
    Seasonal_Storage_Rate.Direction = ParameterDirection.Input
    SNo.OracleDbType = OracleDbType.Decimal
    Transid.OracleDbType = OracleDbType.Decimal
    ProductId.OracleDbType = OracleDbType.Decimal
    ProductName.OracleDbType = OracleDbType.Varchar2
    Unit_Name.OracleDbType = OracleDbType.Varchar2
    Calculation_Method.OracleDbType = OracleDbType.Decimal
    Season_start_date.OracleDbType = OracleDbType.Date
    season_end_date.OracleDbType = OracleDbType.Date
    labour.OracleDbType = OracleDbType.Decimal
    Storage_Rate.OracleDbType = OracleDbType.Decimal
    Seasonal_Storage_Rate.OracleDbType = OracleDbType.Decimal
    Dim msno(ProductRates.Rows.Count) As Decimal
    Dim mtransid(ProductRates.Rows.Count) As Decimal
    Dim mproductid(ProductRates.Rows.Count) As Decimal
    Dim mproductname(ProductRates.Rows.Count) As String
    Dim munit_name(ProductRates.Rows.Count) As String
    Dim mcalculation_method(ProductRates.Rows.Count) As Decimal
    Dim mseason_start_date(ProductRates.Rows.Count) As Date
    Dim mseason_end_date(ProductRates.Rows.Count) As Date
    Dim mlabour(ProductRates.Rows.Count) As Decimal
    Dim mstorage_rate(ProductRates.Rows.Count) As Decimal
    Dim mseasonal_storage_rate(ProductRates.Rows.Count) As Decimal
    For i As Integer = 0 To ProductRates.Rows.Count - 1
    msno(i) = ProductRates.Rows(i).Item("SNo")
    mtransid(i) = ProductRates.Rows(i).Item("transid")
    mproductid(i) = ProductRates.Rows(i).Item("Productid")
    mproductname(i) = ProductRates.Rows(i).Item("ProductName")
    munit_name(i) = ProductRates.Rows(i).Item("Unit_Name")
    mcalculation_method(i) = ProductRates.Rows(i).Item("Calculation_Method")
    mseason_start_date(i) = ProductRates.Rows(i).Item("Season_start_date")
    mseason_end_date(i) = ProductRates.Rows(i).Item("season_end_date")
    mlabour(i) = ProductRates.Rows(i).Item("labour")
    mstorage_rate(i) = ProductRates.Rows(i).Item("Storage_Rate")
    mseasonal_storage_rate(i) = ProductRates.Rows(i).Item("Seasonal_storage_rate")
    Next
    SNo.Value = msno
    Transid.Value = mtransid
    ProductId.Value = mproductid
    ProductName.Value = mproductname
    Unit_Name.Value = munit_name
    Calculation_Method.Value = mcalculation_method
    Season_start_date.Value = mseason_start_date
    season_end_date.Value = mseason_end_date
    labour.Value = mlabour
    Storage_Rate.Value = mstorage_rate
    Seasonal_Storage_Rate.Value = mseasonal_storage_rate
    '-- Set the Size
    SNo.Value = ProductRates.Rows.Count
    Transid.Value = ProductRates.Rows.Count
    ProductId.Value = ProductRates.Rows.Count
    ProductName.Value = ProductRates.Rows.Count
    Unit_Name.Value = ProductRates.Rows.Count
    Calculation_Method.Value = ProductRates.Rows.Count
    Season_start_date.Value = ProductRates.Rows.Count
    season_end_date.Value = ProductRates.Rows.Count
    labour.Value = ProductRates.Rows.Count
    Storage_Rate.Value = ProductRates.Rows.Count
    Seasonal_Storage_Rate.Value = ProductRates.Rows.Count
    ''-- Set the Array Bind Size For Unitname, Productname
    'Dim arr1(ProductRates.Rows.Count) As Integer
    'Dim arr2(ProductRates.Rows.Count) As Integer
    'For i As Integer = 0 To ProductRates.Rows.Count - 1
    ' arr1(i) = 50
    ' arr2(i) = 50
    'Next i
    'ProductName.ArrayBindSize = arr1
    'Unit_Name.ArrayBindSize = arr2
    Dim daStorageCharges As New OracleDataAdapter("pkg_coldstorage.storage_charges_with_prd", DbCn)
    daStorageCharges.SelectCommand.CommandType = CommandType.StoredProcedure
    With daStorageCharges.SelectCommand.Parameters
    .Add(mLotno)
    .Add(mCurrDate)
    .Add(SNo)
    .Add(Transid)
    .Add(ProductId)
    .Add(ProductName)
    .Add(Unit_Name)
    .Add(Calculation_Method)
    .Add(Season_start_date)
    .Add(season_end_date)
    .Add(labour)
    .Add(Storage_Rate)
    .Add(Seasonal_Storage_Rate)
    End With
    Dim oSNo, oTransID, oTransDate, oProductID, oProductName, oUnitID, oUnitName, oQtyIn, oQtyOut, _
    oBalanceQty, oWtIn, oWtOut, oBalanceWt, oLabour, oLabourAmount, oStorageRate, oStorageAmount, oTotal As New OracleParameter
    oSNo.OracleDbType = OracleDbType.Decimal
    oTransID.OracleDbType = OracleDbType.Decimal
    oTransDate.OracleDbType = OracleDbType.Date
    oProductID.OracleDbType = OracleDbType.Decimal
    oProductName.OracleDbType = OracleDbType.Varchar2
    oUnitID.OracleDbType = OracleDbType.Decimal
    oUnitName.OracleDbType = OracleDbType.Varchar2
    oQtyIn.OracleDbType = OracleDbType.Decimal
    oQtyOut.OracleDbType = OracleDbType.Decimal
    oBalanceQty.OracleDbType = OracleDbType.Decimal
    oWtIn.OracleDbType = OracleDbType.Decimal
    oWtOut.OracleDbType = OracleDbType.Decimal
    oBalanceWt.OracleDbType = OracleDbType.Date
    oLabour.OracleDbType = OracleDbType.Decimal
    oLabourAmount.OracleDbType = OracleDbType.Decimal
    oStorageRate.OracleDbType = OracleDbType.Decimal
    oStorageAmount.OracleDbType = OracleDbType.Decimal
    oTotal.OracleDbType = OracleDbType.Decimal
    oSNo.Direction = ParameterDirection.Output
    oTransID.Direction = ParameterDirection.Output
    oTransDate.Direction = ParameterDirection.Output
    oProductID.Direction = ParameterDirection.Output
    oProductName.Direction = ParameterDirection.Output
    oUnitID.Direction = ParameterDirection.Output
    oUnitName.Direction = ParameterDirection.Output
    oQtyIn.Direction = ParameterDirection.Output
    oQtyOut.Direction = ParameterDirection.Output
    oBalanceQty.Direction = ParameterDirection.Output
    oWtIn.Direction = ParameterDirection.Output
    oWtOut.Direction = ParameterDirection.Output
    oBalanceWt.Direction = ParameterDirection.Output
    oLabour.Direction = ParameterDirection.Output
    oLabourAmount.Direction = ParameterDirection.Output
    oStorageRate.Direction = ParameterDirection.Output
    oStorageAmount.Direction = ParameterDirection.Output
    oTotal.Direction = ParameterDirection.Output
    'Dim prdarr() As Integer
    'Dim unitarr() As Integer
    'for i as Integer = 0 to
    'Next i
    With daStorageCharges.SelectCommand.Parameters
    .Add(oSNo)
    .Add(oTransID)
    .Add(oTransDate)
    .Add(oProductID)
    .Add(oProductName)
    .Add(oUnitID)
    .Add(oUnitName)
    .Add(oQtyIn)
    .Add(oQtyOut)
    .Add(oBalanceQty)
    .Add(oWtIn)
    .Add(oWtOut)
    .Add(oBalanceWt)
    .Add(oLabour)
    .Add(oLabourAmount)
    .Add(oStorageRate)
    .Add(oStorageAmount)
    .Add(oTotal)
    End With
    'Dim a As OracleParameterCollection
    Dim dtstoragecharges As New DataTable
    daStorageCharges.Fill(dtstoragecharges)
    tried with reader but unable.
    please provide any example. so that i will use it.
    Please provide any help
    Thanks in Advance
    Mohan Raj K.

    @Eric
    I am a pl/sql noob, but I did manage to retrieve a ref_cursor via .net as follows:
    CREATE or REPLACE PACKAGE myVars AS
    TYPE CommonCurTyp is REF CURSOR;
    --my test server is 8i need to define cursor in a package
    END;
    CREATE OR REPLACE PROCEDURE jtest(
                        v_repaircur OUT myVars.CommonCurTyp
    IS
    BEGIN
    OPEN v_repaircur FOR
    SELECT * FROM BLAH;
    END;
    --vb.net code:
    dbConn.Open()
    Dim selectCommand As New OracleCommand("jtest", dbConn)
    selectCommand.CommandType = CommandType.StoredProcedure
    selectCommand.Parameters.Add(New OracleParameter("v_repaircur", OracleDbType.RefCursor)).Direction = ParameterDirection.Output
    Dim adapter As New OracleDataAdapter(selectCommand)
    adapter.TableMappings.Add("Table", "repair_codes")
    Dim ds As New DataSet
    adapter.Fill(ds) 'boom! here's yer dataset
    dbConn.Close()
    with some minor hacking, you should be able to get it, HTH

  • Safari keeps redirecting almost every page to other pages ... going crazy with this any help ??

    Since 6 months or more ... Safari keeps having a life off its own ...
    I constantly have to go back 1 or 2 pages to get where I want ...
    it not even after a google search or so ...
    I go to a site and hop ... "mackleener" shows up "groupon" is there all the time ...
    or the page turns grey saying ... no page found ... with a long link starting with groupiesearch blabla ..
    it starting to be sooooo enoying that I want to throw out Safari ... but Im so used to this browser now that I actiually dont want to change..
    All my pages info stuff is build in Safari for years so I dont want to restart with Firefox from zero ...
    any help on this matter would be a timesaver ...
    Thank YOU
    Franky

    Ok...  use Open DNS to avoid redirects.
    Use OpenDNS for better speed and more security and it's free.
    Open System Preferences / Preferences then select the Network tab. Click the Advanced tab then click the DNS tab.
    Enter these numbers exactly as you see them here.
    Click +
    208.67.222.222
    Click +
    208.67.220.220
    Then click OK.
    More about OpenDNS here.
    Topic : Manually provided DNS server addresses are higher priority than DHCP's

  • Apple Outlook DAV Config error with Windows7; Any help?

    I have updated Windows7 and I have downloaded the icloud control panel.  I keep getting the Apple Outlook DAV Config error.  Any help?

    I encountered the same problem yesterday.  I have not found a solution but take a look at this thread. https://discussions.apple.com/thread/3377753?start=0&tstart=0  The conclusion (at that time) was a conflict between iClound and reoccurring appointments in Outlook.  The only solution:  delete all of your reoccurring appointments in outlook  (and stop using them going forward too?)........not very feasible for me.
    Let me know if you find anything.

  • Trouble with .mdb    Any help is apreciated

    Hi
    I need to access an .mdb file.
    Im trying to make a program that will allow me to extract the data from the .mdb and place it in a SQL database.
    The code below results in a java.sql.SQLException: No suitable driver.
    I've tried putting all sorts of things into the DriverManager.getConnection(), but I haven't been able to make it work.
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    /* MDBReader.java
    * Created on 3. oktober 2006, 13:16
    * @author Leviathan
    public class MDBReader
        /** Creates a new instance of MDBReader */
        public MDBReader()
            try
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                Connection con = DriverManager.getConnection(""+this.getClass().getResource("OtraLink.mdb"));
                Statement stm = con.createStatement();
                ResultSet rs = stm.executeQuery("select * from *");
                System.out.println(rs.toString());
                con.close();
            catch (ClassNotFoundException ex)
                ex.printStackTrace();
            catch(SQLException ex)
                ex.printStackTrace();
        public static void main(String[] args)
            MDBReader mdbReader = new MDBReader();
    }I've spent the better part of a day browsing this forum and google, but I have nothing to show for it.
    Any help will be apreciated.

    is simply because my ,mdb-file is located in the same package as my code,
    hence it will also be in my Jar.For jdbc-odbc bridge, it's impossible. You should unjar first that mdb file into a temporary directory, then use dns-less url.
    For commercial HXTT Access jdbc driver for MS Access, which supports compressed database(.ZIP, .JAR, .GZ, .TAR, .BZ2, .TGZ, .TAR.GZ, .TAR.BZ2), you should read How to Use Memory-only Table, Physical Table, Url table, Compressed table in a SQL at http://www.hxtt.com/dbf/advanced.html#mining .

  • Poor Overclocking -- Any Help?

    I have a 6800U, I have flashed to the [email protected] bios. Are they the best, could you advise me which ones are, and when MSI are going to release new ones.
    Now I can't overclock the card any further than 460/1170, this is dissapointing, I have watercooling and the load temps are at 52C.
    I get 24,000 3DMark01 points - this is abysmal.
    Help me out please.

    youve just bumped me back to 9`th  ( with official drivers )
    my ecuse 754 not 939 arrrgh gimme some memory bandwidth  

  • Hit a wall with adding photos to slideshow

    I have approximately 110 photos added to my project and have hit a roadblock.  I have about 30 more pictures to add and when I try to add another, it does something strange.  It looks like the picture is there but when I play it, it is the picture before it and is "stretched out"?  I have tried adding different pictures and even deleting the one before it and whatever picture I add, it does the same thing.  I'm wondering if there is a limit to the amount of photos you can use in a slideshow?  Or maybe the files are too large?  Please help!  This is my first try at a slideshow and I have to complete this project in two days!

    If this is an existing slideshow colection you already created, select and drag the new image files from their source folder and drop them into the exisiting slideshow collection icon located in the Collections folder. The new images will be appear in the slideshow according to your 'Sort' order selection located above the filmstrip (i.e. Capture Time, User Order, etc.).
    There used to be an issue with the 'Stroke Border' option in the Slideshow module causing soft (fuzzy) imaging at down-scaled resolutions (i.e. anything less than full-resolution). If you encounter this issue, try unchecking the Stroke Border option box. I just tried it with LR 3.4.1 on my Windows 7 system and a 1280x1024 PDF slideshow looks fine with the stroke border....maybe it's fixed in LR 3.4?

  • I need the driver mpu-401 for a compaq presario v3417la or v3000 series with windowsxp, any help?

    I bought a MIDI-USB cable to connect a keyboard and play some music. Since the driver MPU-401 (the driver that detected it) had problems with it, i uninstalled it and I can't find it anywhere to replace it. I still can't use the keyboard, and I know that that is not the problem because I tried it out in another computer with Win 7. I have a fairly old HP Compaq Presario v3417LA with Windows XP. Please I need much help with this.

    I totally understand now, thank you SOOOO VERY MUCH!!! You have been a huge help and very friendly Would you mind if I add you to my friends list or something on here? You seem to really know your stuff and understand everything I have said, I like that and would prefer to just deal with you if I ever have any problems again lol. Also, I have given Kudos to every response you have given me and would like to give you the solution part as well, but not sure which one to select as the actual answer to the problem lol so which would you prefer me to click? Either way it's all yours, I can't thank you enough, you're amazing!! lol Hope you have a great day and fabulous week, take care!
    ~Krystal~

  • Shared Project Workflow Problem: Hitting a Wall with Markers

    Hi there,
    Apologies in advance for the long note.  We're using Adobe CC to edit and finish commercials and are having a significant issue regarding shared project workflow.  First, some context:
    We often edit projects remotely.  When this happens, assistants and other editors who remain in LA will have access to the media on our SAN while the editor and assistant traveling out of town will have their own copy of the media.  I know Adobe Anywhere would solve any issue relating to two identical sets of media in use in different cities, but we're a small shop and the hardware and software expense don't make sense for us at this time.  Please do not respond to anything mentioned from here on by stating we should just get Adobe Anywhere.  Thanks.
    What will regularly happen is that the remote editor and assistant will need work done on the project here in LA while they're in session with the clients.  Sometimes this work involves marking up clips with comment markers so the editor can more easily locate a specific moment.  Here's where the problem arises.
    Unlike FCP and Avid, Premiere handles markers within the clip's metadata.  So, if I have two separate projects linking to separate but identical instances of media, one of those media instances gets updated with new markers, there is currently no way to get those markers to the other project without also shuttling the new marked-up media.  This is not possible when a remote editor needs dailies marked up in a couple hours and is working across the country or abroad.
    But let's assume for the sake of argument that it is possible and we apply this workflow.  Let's also assume that in the time it takes the local assistant to mark up the clips for the remote editor, the editor has added a couple markers of his own, which is reasonable and happens all the time.  Now when the editor links to the newly marked up clips he's received via shipment, he'll wipe out all the markers he's made on his own since giving the order to mark up the footage.  That is a significant inconvenience, especially with clients in the room asking stuff like "can we look at the take where the guy says 'good' instead of 'great'?"
    So what happens if we just have repeating sets of media, so that every time the clips markers get updated, the editor actually imports those clips, even though the picture and audio data in those clips is completely redundant to what's already in the project.  The issues with this are, as I can see it, 1) increasing the amount complexity within the project so that you'd have to scan many bins of dailies to look for a single marker, 2) increasing by orders of magnitude the amount of storage space needed, 3) even if problems 1 and 2 are handled, if you have to go to finish with multiple versions of a cut, and those versions reference separate instances of the same clip from different bins, Premiere's dupe frame detection will not work and you'll need to spend a lot of extra time locating duplicate clips manually before sending your EDL or XML off to final color grading.
    At this point, I think it's necessary to interject something:  we're talking about markers here.  Why is this such a problem?  FCP and Avid have no such issues simply by making markers - even clip markers - part of the project metadata.  From what I understand, Adobe has chosen to do things differently because of dynamic link, so that After Effects and Prelude, for example, could add markers to a clip and those markers would ripple across all instances of that clip in the different applications.  It's a great feature which we take advantage of here from time to time.
    So what's the solution?
    My workaround in CS6, which does not solve the issue of needing to merge clip markers so that an editor's markers and an assistant's markers can be applied to a single piece of media, was to turn off "write XMP ID to Files on Import."  This would generate an XMP sidecar file which could be easily passed along with a project file to the remote editor, who could then overwrite his local XMP sidecars with the new ones containing the new marker info.
    However, in Premiere CC that is no longer possible.  It appears that if Premiere CC can access the XMP ID on a file, it will not generate a sidecar regardless of what you have set in your media preferences.  We use ProRes Proxy as our dailies format (again, please no comments on this, it is not up for debate at this time) and Premiere can get to the XMP ID within the files and will not, no matter what it seems, generate an XMP sidecar.
    We could change the company workflow to use DNxHD 36 instead of ProRes Proxy, which would give us XMP sidecars, but that would not solve the issue of needing to merge marker lists between projects non-destructively.
    The best solution I can think of would be to have a script or some kind or built-in feature which would allow for the batch export, import and merging of marker lists.  This way Adobe could keep its current clip-metadata-based marker workflow while giving professional users needing more flexible marker behavior the ability to have assistants non-destructively modify clip markers without necessitating the creation of extra media or project complexity.
    I would really love some input on this and ideas from the pro community out there who has experience with shared project workflows - especially projects being shared remotely.  There's not a lot of info out there about this and it would be great to hear what others are doing.
    Thanks a million for sticking with this, if you've made it this far.
    Best,
    Jon

    Thanks Jim,
    I understand that Adobe Anywhere solves this, but there should be this fairly basic functionality (which exists in Avid and FCP) in a non-enterprise edition of the software.  I have submitted a couple different feature requests about this, going back to CS5, so hopefully enough people make similar requests for a fix to be implemented.  Adobe Anywhere is really not a solution for our small shop as currently configured/priced, especially when we can have editors working remotely with very affordable USB 3 drives.  The only hangup is the markers, which just isn't worth a 5 figure fix.  As such it's hard to consider the problem solved for either us or any small shop or post crew.
    Best,
    Jon

  • Problem with overclocking (newbie) help me please

    Hi I´m a newbie from Spain and i have some problems:
    First my configuration:
    Motherboard MsiNeo2 Bios 1.6 (higher bios make my score in 3dmark03,01,sandra decrease)
    2,4 Ht BUs 800
    Ram 2x256 ddr 400 (dual) Samsung (3,4,4,8,8) on default.Dram frecuency auto
    Club 3d 9700 nopro  default (275/270) but when i put fast on mb rises to 297/290
    Enermax 400W
    CPU Vcore 1.5250 V
    DDR Power Vol 2.70 v
    AGP Power Vol 1.55
    Well i have put system fast and Ram timmings change from 3,4,4,8,8 to 2,5,3,3,8,8 but the system runs perfectly stable:
    I don´t know if my scores are right but with system fast and Omega 24.60 (all other new drivers make my scores decrease and some games get freezy):
    3dmark03: 4497
    3dmark01: 14096
    sandra 2004 (guru3d version): RAM benchmark: 4476 (first num that appears the other is similar)
    I tried to put my sistem on turbo but it only run if i change timmings (more tigh)and 3dmark03 and 01 runs but after time playing games some get freezy or sometimes run very fast(NFSUNDERGROUND) and suddenly run normal, i think it´s because of timmings the system is no stable.
    I have read some post about overclocking but i have a big problem:
    I put my sistem slow
    dram frecuency 333
    and FSB for example 235 (then agp/pci clock rises from 66.66/33.33 to aprox 78)
    (i don´t know if this is ok) i don´t change anything more  and the sistem runs ok (p4 2,82) but 3dmark03 and 01 runs but
    when they are going to make the first test the monitor turns black and i have to reset the sistem.However Sandra mem benchmark
    rises from 4476 to 4652 (ddr frecuency 391)
    My question is if i have to change some vol (agp,ddr,cpu core...) to reach that benchmarks runs ok
    Well, sorry for my english and thanks

    Please read Rules of the forum and set up a signature with your system specs and power supply with rail ratings.
    Your problem here is your AGP / PCI clock rising to approx. 78.
    You should have a BIOS setting in Frequency / Voltage Control, Adjust AGP/PCI Clock (Mhz) that allows you to fix this at 66.66/33.33.
    If you are already doing this, what are you using to measure your AGP clock?

  • Indexfile creation fails with imp_pipe - any help!

    mknod /oracle/temp/imp_pipe p
    uncompress< /oracle/temp/file.dmp.Z > /oracle/temp/imp_pipe &
    nohup imp system/np11n fromuser=cfs touser=cfs file=/oracle/temp/imp_pipe indexfile=/oracle/temp/file.sql &
    Also log file is not created for the import
    mknod /oracle/temp/imp_pipe p
    uncompress< /oracle/temp/file.dmp.Z > /oracle/temp/imp_pipe &
    nohup imp system/np11n fromuser=cfs touser=cfs file=/oracle/temp/imp_pipe log=/oracle/temp/file.log &
    Any idea why either sql or log file is not created.
    PS: import data is successfull and I see the log in nohup file.

    This is an operating system related issue not an issue having anything to do with the Oracle database.
    Thus this forum is not the right place to ask t he question.
    My recommendation would be, especially since we have no information about either your O/S or shell, that you take this up with your *NIX system admin.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Hit brick wall with "Getting started with DW"

    Hi Guys, i am totally new to web design and DW, working
    through the "Getting started with DW" under the “help”
    banner seemed o.k at first until one leaves the comfort of table
    design, once into the css and xml the environment the Getting
    started tutorial is very shake and waiting for a reply from DW
    would test even the patience of a Buddhist monks.
    Can someone please recommend a good book/video/dvd or is it
    best just to ask questions on this forum, it does seem faster than
    DW.
    Thanks in advance
    Regards
    Bal

    To be honest with you, the very best way to get started is to
    start with
    HTML and then CSS. A week or two spent learning the basics of
    both of these
    will make DW seem like a walk in the park afterwards.
    Ask your questions here, though....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "herbybal" <[email protected]> wrote in
    message
    news:ejs6rk$1b1$[email protected]..
    > Hi Guys, i am totally new to web design and DW, working
    through the
    > "Getting
    > started with DW" under the ?help? banner seemed o.k at
    first until one
    > leaves
    > the comfort of table design, once into the css and xml
    the environment the
    > Getting started tutorial is very shake and waiting for a
    reply from DW
    > would
    > test even the patience of a Buddhist monks.
    > Can someone please recommend a good book/video/dvd or is
    it best just to
    > ask
    > questions on this forum, it does seem faster than DW.
    >
    > Thanks in advance
    > Regards
    > Bal
    >
    >

Maybe you are looking for

  • Multiple iPhones on same AppleID and iTunes

    Can I have 2 different iPhones with 2 different phonenumbers connected to the same AppleID and iTunes? If yes, should I be aware of something. If no, how do I do?

  • Issue with FDM Import Integration script

    Hi, I need to pull records from Oracle DB and load in FDM. have created Import Integration script for this. But,I reciev 'Data access error' when I execute the script. The line of error is Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)+ .Wh

  • PC only network switch!!

    It's a conspiracy! I have a switch that I can plug a PC into and surf with no problem, but when I try to connect my Macbook Pro, no internet at all. Here is the setup. Dlink DGS-1224T 24 port switch that has one of its ports connected to a wall jack.

  • FAQ: How to resolve "Unexpected File Format" error with Flash Professional CS5.5?

    You may encounter errors when you attempt opening or saving files using Flash Professional CS5.5.  To address the above problem, Adobe released an updater for Flash Pro CS5.5 (version 11.5.1). The following article explains about the errors and Flash

  • Provisional Entries to be posted through FI

    Hi, Client need to post a provisional expenses entry in System through FI. Which should not be part of posting (Leading Ledger). However at the time of reporting (MIS), the provisional Entry should be reflected. At the end of the year, all these prov