Does RollbackToSP will work if table column was dropped?

Hello Everyone,
I would really appreciate any opinion on these two scenarios in OWM.
Scenario One
Steps:
Savepoint1 created on May 20
CALL DBMS_WM.CreateSavepoint('LIVE', 'RRR_Test');
May 21 we alter a versioned table:
EXEC DBMS_WM.BEGINDDL('users');
--removing unused column
alter table users_LTS drop column domain;
EXEC DBMS_WM.COMMITDDL('users');
3. Rolling back to savepoint created on May 20
CALL DBMS_WM.RollbackToSP('LIVE', 'RRR_Test);
End of Scenario
Question: Will the OWM properly rollback changes made to USERS table schema?
Second Case Scenario
1 Savepoint1 created on May 20
CALL DBMS_WM.CreateSavepoint('LIVE', 'RRR_Test');
May 21 we alter a versioned table:
EXEC DBMS_WM.BEGINDDL('users');
--removing unused column
alter table users_LTS drop column domain;
EXEC DBMS_WM.COMMITDDL('users');
3. Rolling back to savepoint created on May 20
1) Add column domain back to the schema
2) Rollback
CALL DBMS_WM.RollbackToSP('LIVE', 'RRR_Test);
End of Scenario
Question: Since the schema is exactly the same as it was originally, will this work?
Your insights are most welcome.
Thank you
Serge
Edited by: sbornow on 27-May-2009 11:29 AM

Hello Ben,
Thanks for your response.
What do you suppose happens if you restore the changes you made (DDL) to the original state at which the savepoint was taken.
I've described it here:
Second Case Scenario
1 Savepoint1 created on May 20
CALL DBMS_WM.CreateSavepoint('LIVE', 'RRR_Test');
May 21 we alter a versioned table:
EXEC DBMS_WM.BEGINDDL('users');
--removing unused column
alter table users_LTS drop column domain;
EXEC DBMS_WM.COMMITDDL('users');
3. Rolling back to savepoint created on May 20
1) Add column domain back to the schema
2) Rollback
CALL DBMS_WM.RollbackToSP('LIVE', 'RRR_Test);
End of Scenario
Will the rollback of a savepoint work then? Considering it is acceptable for column domain to be null and would lose its values when restored.
Also, is there some information about how savepoints work in OWM ? Unfortunately the documentation does not go into detail about how they are saved and work when structural changes occur , whether they become invalid or what happens to it.
Thank you very much
Serge

Similar Messages

  • Nested Composite Component Doesn't work for table column

    I have reported this issue as defect 1541 but I'm hoping someone my have a suggestion on a work around for this. Here is the issue
    I am attempting to use composites to represent a table column. I have tried this with both IceFaces and the standard implementation. I have a custom component that is of type UIColumn that is being inserted into another composite that houses a table. The table renders and the column renders. However, the outputText that should represent the row data does not render. Interestingly this will render using composites when I don't have the column rendering as a composite (IE the table is contained in the composite and the row level output is contained in the top level page.). That is not my requirement though. This seems to be a tough cookie to crack. I have the source now and am starting to acquaint myself with it in an attempt to figure out what is going on. Any brilliant ideas out there?
    Code is below.
    tableColumn.xhtml
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    </h:head>
    <h:body>
    <composite:interface componentType="MyColumn">
    </composite:interface>
    <composite:implementation>
    <ice:column headerText="Make" id="column3">
    <composite:insertChildren />
    </ice:column>
    </composite:implementation>
    </h:body>
    </html>
    table.xhtml
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    <title></title>
    </h:head>
    <h:body>
    <composite:interface>
    </composite:interface>
    <composite:implementation>
    <ice:dataTable augmentTitle="false"
    rows="10"
    value="#{SessionBean1.carDataProvider.tableDisplayList}"
    var="item" >
    <composite:insertChildren />
    </ice:dataTable>
    </composite:implementation>
    </h:body>
    </html>
    Example Page
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:temp="http://java.sun.com/jsf/composite/tempcomp"
    <h:head id="outputHead1">
    </h:head>
    <h:body>
    <ice:form id="form1">
    <temp:table>
    <temp:tableColumn>
    <ice:outputText id="outputText3" value="#{item.make}"/>
    </temp:tableColumn>
    </temp:table>
    </ice:form>
    </h:body>
    </html>
    The the new UIMyColumn class
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package icefacestestapp2;
    import com.icesoft.faces.component.ext.UIColumn;
    import javax.faces.component.FacesComponent;
    @FacesComponent(value = "MyColumn")
    public class MyColumn extends UIColumn {
    @Override
    public String getFamily() {
    return "custom";
    Interestingly the row text will not render even if I add it directly to the new
    composite column class as seen below.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    </h:head>
    <h:body>
    <composite:interface componentType="MyColumn">
    </composite:interface>
    <composite:implementation>
    <ice:column headerText="Make" id="column3">
    <ice:outputText id="outputText3" value="#{item.make}"/>
    </ice:column>
    </composite:implementation>
    </h:body>
    </html>

    Hi,
    I recall an issue in 10.1.3.2 with inner frames that had the wrong JavaScript reference to the DOM. So I assume this to be the same in your case. So you can give it a try with JDeveloper 10.1.3.3 and see if this fixes the problem
    Frank

  • Does T420 will work with Intel 520 180GB SSD?

    Hi
    Is there any chance I can see my t420 (4236qs6) working well with Intel 520 180GB SSD SATA 3 drive?
    I am wondering because of a spec note for my machine I saw on lenovo site:
    Solid state drive features
    Standard 80GB, 128GB, 160GB solid state drive sizes.
    Thanks,
    Eugene
    Solved!
    Go to Solution.

    Hello ladjack,
    The specs are for the capacity of the SSD.  The ones listed on the support site are only the sizes available from the lenovo shop site.  The SSD you plan on buying will work fine with the computer.  The only thing is that the SSD you have chosen is a SATA 3.0 drive and the computer runs its drive speed at SATA 2.0.  Your SSD will run fine but will be limited to SATA 2.0 speeds. 
    It will work great in the T420.
    Hope this helps,
    Alex
    Was this or another post on the forum helpful? Click the star on the left side of the screen to give kudos! Did someone solve the problem you encountered? Click Solution Provided to let us know!
    What we Do in Life will Echo through Eternity. -Maximus Aurelius

  • How to find out  to find by which procedure a table column was updated

    Hi All,
    We have an attribute10 column of a table used in a DFF.
    This attribute is being updated for a specific reason in a code, but some other procedure is also updating the same column which is causing issue with the functionality. The update might be using an API or some other way.
    Can anyone help me with a query or some other way to in find out the procedures which might be updating a particular column (attibute10) of that table.
    Regards,
    Shruti

    Shruti,
    If you can replicate in non-production environment, one way is to create an update trigger on the table/column,and have the trigger do something with any environmental info you can query (select SYS_CONTEXT('USERENV','OS_USER'), etc.) and write it using utl_file or insert it into a custom table. Perhaps have the trigger enable trace, query the above and disable trace.
    -Vince

  • ¿Does this will work as an applet?

    Hello.
    I have this working code on my Dot Matrix printer (in the parallel port):
    package print;
    import java.io.*;
    public class lpt {
       public static void main(String[] argv) {
       try {
          FileOutputStream os = new FileOutputStream("LPT1");
          PrintStream ps = new PrintStream(os);
          String line = "this is a test";
          ps.println(line);
          ps.print("\f");
          ps.close();
       } catch (Exception e) {
          System.out.println("Exception occurred: " + e);
    But when i convert it to an applet it seems that doesn't work. I'm using jnlp on my project, i have an old version (without FileOutputStream) using  java.awt.print.* but the result is distorted.
    Maybe some part of the code isn't supported by java applets, i made some versions of the code as an applet but it didn't worked.

    Well, here's the code:
    package print;
    import java.applet.Applet;
    import java.io.*;
    public class lpt extends Applet {
       public void init() {
       try {
         FileOutputStream os = new FileOutputStream("LPT1");
         PrintStream ps = new PrintStream(os);
         String text = "this is a test";
         ps.println(line);
         ps.print("\f");
         ps.close();
       } catch (Exception e) {
         System.out.println("Exception occurred: " + e);
    It works well alone, but i need the applet to print tickets and buy/sale comprobants (using deployJava.js)... i changed the init() function to print(String text).
    The text parameter will be sent from jQuery.
    I was up all night (to get lucky ) and checked the console (sorry, but i'm little lost in java, i left it for php) and this was the error:
    java.security.AccessControlException: access denied ("java.io.FilePermission" "LPT1" "write")
    i found that all what i need is to add this inside
    AccessController.doPrivileged(new PrivilegedAction() {
    public Object run() { /* MY CODE HERE */ });
    And now is working, sorry about this question (i was working on it 2 weeks but after some coffee and twelve hours without sleep, i solved it.
    Thanks for your responde

  • Frame 9 solution for table column + side head does not work in Frame 10 and 11

    In Frame 9 structured (DITA) we could force Frame to record the actual widths of table columns in the DITA XML.  Frame 9 would respect the widths when opening the file.  This was particularly useful for forcing tables to be wide -- to go across the column and the side head -- and for the columns to never resize. 
    In Frame 9 this was done by commenting out the line
    "writer use proportional widths;" 
    like this
    "/* writer use proportional widths; */"
    in the topic.rules.text" file located in
    "...\FrameMaker9\Structure\xml\DITA\app\DITA-Topic-FM"
    This no longer works in Frame10 and Frame 11.  Even though the same line is commented out in all the "NAME.rules.txt" files in all the subdirectories of
        "...\AdobeFrameMaker11\Structure\xml\DITA_1.2\app"
    and
        "...\AdobeFrameMaker11\Structure\xml\DITA\app"  
    and
        "...\AdobeFrameMaker10\Structure\xml\DITA_1.2\app"
    and
        "...\AdobeFrameMaker10\Structure\xml\DITA\app"  .
    Commenting out the line does force Frame 10 and 11 to record  the absolute column width (2.357" etc.) in the DITA XML.
    However, on Open,  Frame 10 and 11 force the table to fit in the column, not the column and sidehead. That is they behave as though they were still using proportional column widths.  It seems the original values (as inserted by Frame 10 and 11 before closing!) are recalculated on Open, thereby mimicking the default proportional width behavior.  
    For example, this on Save then Close from Frame 10 or 11
    <table frame = "topbot" colsep = "0" rowsep = "1">
    <tgroup cols = "4" colsep = "0" rowsep = "1" outputclass = "FormatB">
    <colspec colnum = "1" colname = "1" colwidth = "1.796in" colsep = "0"/>
    <colspec colnum = "2" colname = "2" colwidth = "1.852in" colsep = "0"/>
    <colspec colnum = "3" colname = "3" colwidth = "1.179in" colsep = "0"/>
    <colspec colnum = "4" colname = "4" colwidth = "2.152in" colsep = "0"/>
    goes to this on Open then Save: 
    <table frame = "topbot" colsep = "0" rowsep = "1">
    <tgroup cols = "4" colsep = "0" rowsep = "1" outputclass = "FormatB">
    <colspec colnum = "1" colname = "1" colwidth = "1.351in" colsep = "0"/>
    <colspec colnum = "2" colname = "2" colwidth = "1.393in" colsep = "0"/>
    <colspec colnum = "3" colname = "3" colwidth = "0.887in" colsep = "0"/>
    <colspec colnum = "4" colname = "4" colwidth = "1.618in" colsep = "0"/>
    Any help at all would be appreciated!  
    We have 8,000 to 10,000 pages to PDF in the next few days and about 33% of those pages are messed up tables!
    Message was edited by: borealforest

    Hi...
    Unfortunately, I don't have any insight into the default DITA table handling in FM10 or FM11 .. so can't give you the answer you're looking for. Since both FM10 and FM11 offer ExtendScript, you could write a script (or have one written) that processes all of your files to reset the table widths. Or, perhaps the best short term solution may be to reinstall FM9 to get the job done, then spend more time later to figure out a better solution.
    One alternative would be for you to use DITA-FMx, which supports the table/@pgwide attribute for controlling which tables span the page and which don't. Since your tables probably don't make use of this attribute, it won't help in the near term, but might make sense going forward.
    Cheers,
    Scott Prentice
    Leximation, Inc.
    www.leximation.com

  • I have lost the remote that was paired. I bought another remote, but the procedure to pair the new one does not work. I suspect the the AT will work with only one remote at-a-time and i have to unpaid the first before pairing the second. How do I unpair?

    I have lost the remote that was paired. I bought another remote, but the procedure to pair the new one does not work. I suspect the the AT will work with only one remote at-a-time and i have to unpair the first before pairing the second. If this is true, how do I unpair? If not, what can I do?

    I was premature in posting the question. I found the answer in andother posting, and it was successful.
    Thanks, and sorry for the false alarm.

  • Why table getWidth and setWidth is not working when resize column the table

    hi all,
    i want to know why the setWidth is not working in the following code,
    try to uncomment the code in columnMarginChanged method and run it wont resize the table.
    i cont set width(using setWidth) of the other table column using getWidth of the main table column.
    and i want to resize the right side columns only (you can check when you resize the any column the left and right side columns also resizing)
    any suggestions could be helpful.
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.TableColumnModelEvent;
    import javax.swing.event.TableColumnModelListener;
    import javax.swing.table.TableColumnModel;
    public class SynTableResize extends JFrame implements TableColumnModelListener, ActionListener
        JTable  table1       = new JTable(5, 5);
        JTable  table2       = new JTable(5, 5);
        JTable  table3       = new JTable(5, 5);
        JButton btn          = new JButton("refresh");
        JPanel  pnlcontainer = new JPanel();
        public SynTableResize()
            setLayout(new BorderLayout());
            pnlcontainer.setLayout(new BoxLayout(pnlcontainer, BoxLayout.Y_AXIS));
            pnlcontainer.add(table1.getTableHeader());
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table2);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table3);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            table1.getColumnModel().addColumnModelListener(this);
            table3.setColumnModel(table1.getColumnModel());
            table2.setColumnModel(table1.getColumnModel());
            table2.getColumnModel().addColumnModelListener(table1);
            table3.getColumnModel().addColumnModelListener(table1);
            btn.addActionListener(this);
            getContentPane().add(pnlcontainer, BorderLayout.CENTER);
            getContentPane().add(btn, BorderLayout.SOUTH);
            setSize(new Dimension(400, 400));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String[] args)
            new SynTableResize();
        public void columnAdded(TableColumnModelEvent e)
        public void columnMarginChanged(ChangeEvent e)
            TableColumnModel tcm = table1.getColumnModel();
            int columns = tcm.getColumnCount();
            for (int i = 0; i < columns; i++)
                table2.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getWidth());
                table3.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getWidth());
                // the following commented code wont work.
    //            table2.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getPreferredWidth());
    //            table3.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getPreferredWidth());
    //            table2.getColumnModel().getColumn(i).setWidth(tcm.getColumn(i).getWidth());
    //            table3.getColumnModel().getColumn(i).setWidth(tcm.getColumn(i).getWidth());
            SwingUtilities.invokeLater(new Runnable()
                public void run()
                    table2.revalidate();
                    table3.revalidate();
        public void columnMoved(TableColumnModelEvent e)
        public void columnRemoved(TableColumnModelEvent e)
        public void columnSelectionChanged(ListSelectionEvent e)
        public void actionPerformed(ActionEvent e)
            JTable table = new JTable(5, 5);
            table.setColumnModel(table1.getColumnModel());
            table.getColumnModel().addColumnModelListener(table1);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table);
            pnlcontainer.validate();
            pnlcontainer.repaint();
    }thanks
    dayananda b v

    hi,
    thanks for your replay,
    yes i know that, you can check the following code it works fine.
    actually what i want is, when i resize table column it shold not automaticaly reszie when table resized and i dont want horizontal scroll bar, meaning that all table columns should resize with in the table size(say width 300)
    if i make table autoresize off than horizontal scroll bar will appear and the other columns moved and i want scroll to view other columns.
    please suggest me some way doing it, i tried with doLayout() no help,
    doLayout() method only can be used when table resizes. first off all i want to restrict table resizing with in the limited size
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.event.ChangeEvent;
    import javax.swing.table.TableColumnModel;
    public class TempSycnTable extends JFrame
        JTable  table1       = new JTable(5, 5);
        MyTable table2       = new MyTable(5, 5);
        MyTable table3       = new MyTable(5, 5);
        JPanel  pnlcontainer = new JPanel();
        public TempSycnTable()
            JScrollPane src2 = new JScrollPane(table2);
            JScrollPane src3 = new JScrollPane(table3);
    //        table1.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        table2.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        table3.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        src2.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    //        src3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            table3.setColumnModel(table1.getColumnModel());
            table2.setColumnModel(table1.getColumnModel());
            table2.getColumnModel().addColumnModelListener(table1);
            table3.getColumnModel().addColumnModelListener(table1);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            setLayout(new BorderLayout());
            pnlcontainer.setLayout(new BoxLayout(pnlcontainer, BoxLayout.Y_AXIS));
            pnlcontainer.add(table1.getTableHeader());
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(src2);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(src3);
            getContentPane().add(pnlcontainer, BorderLayout.CENTER);
            setSize(new Dimension(300, 300));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String[] args)
            new TempSycnTable();
        class MyTable extends JTable
            public MyTable()
                super();
            public MyTable(int numRows, int numColumns)
                super(numRows, numColumns);
            public void columnMarginChanged(ChangeEvent event)
                final TableColumnModel eventModel = table1.getColumnModel();
                final TableColumnModel thisModel = getColumnModel();
                final int columnCount = eventModel.getColumnCount();
                for (int i = 0; i < columnCount; i++)
                    thisModel.getColumn(i).setWidth(eventModel.getColumn(i).getWidth());
                repaint();
    }thanks
    daya

  • ITunes, Remote.app v2: Does v2 still work in iOS7 or will I be automatically updated to version 3? (Plus v3 and iTunes issues)

    Remote.app (version 2): Does it still work in iOS7 or will I be automatically updated to version 3?
    That is basically the main question I've come to ask (with some side commentary in parenthesis below).
    After trying out iTunes Remote App version 3, I saw that it scrambles playlists (such as Recently Purchased), which makes my playlists worthless. For example, using Remote.app, it's no longer possible to simply play the songs you bought over the last week at the iTunes Store using the Recenlhy Purchased Playlist. Since I buy a lot of music through the iTunes Store, I naturally want to listen to what I just paid for, just as I could using Remote.app version 2.
    But it's not just the Recenly Purchased playlist, it's all my playlists. Through the last decade, day in and day out, I've carefully orgnized hundreds of playlists that I've very crafted, song by song like old mix tape casettes.
    They payoff for this work has been enormous. Since starting with mp2 in 1995, then mp3 and continuing through to the thousands of dollars I've spent purchasing songs through the iTunes Store and tens of thousands on iPods, iPhones, iPads, and computers—I've been able to make music match whatever mood or music was juuust right for the moment, making for great moments and memories with friends and families. For some artists, I always want to hear their latest songs first or I want to to hear top rates songs first. Other lists are about creating a particular mood for just about any occasion. I can even shift the mood in the room with the right music list. It's really been fantastic the memories and moments I've been able to set the tone with the right song, and most of this has been not the song itself, but the flow of music I've created by orgnizing music lists. That's a lot of work I've invested. So the order of the songs matters a lot to me, especially the very first song that starts that list. That's the song I want to hear first, not somewhere in the middle.
    As of Remote.app version 3, these carefully crafted songlists are scrambled, making the App worthless. When I first noticed this I couldn't believe it, must be a bug. Nope, no bug, by design I found out. It's like when Lucy pulls the football away. It's mean spirited to take back features you've sold and promoted and people have grown to rely on in the workflow of their lives. So I downgraded back to Remote.app version 2.
    ((Actually, they're not really technically scrambled, they're actually presented in alphabertical order, which I think is really the same thing to me. Think about it: listening to an artists work alphabetically by title is really the most random and completely scrambled way to listen to their music. Or if you don't want to listen to them alphabetically, you can have them shuffled. Those are now the only two choices. Either way, the lists are jumbled, and like iTunes 11, several of the most powerful features have been taken away. In this case the exact thing that's missing is that the iTunes Remote no longer reflects the sort order of iTunes playlists.
    I don't know if this is a quiet, update-by-update shift away from our playlists and towards iTunes Radio or not, but I would think so. Why else would you make it less powerful. To quote Merlin Mann Apple tends to "fire a warning shot" feature wise before taking something away. The Finder has gotten less and less powerful in finding files and folders by their name and size through the last decade.
    I'm now noticing the same thing with iTunes, it's becoming more difficult to find the currently playing song. In iTunes 10, Go to Current Song would open the folder containing the list of the currently playing song, highlight and move that list to the top of the left column and then highlight that song. In iTunes 11, Go to Current Song will only highlight the folder that contains that song and nothing more. At that point you're on your own to hunt town the currently playing song. This feature has been broken—on purpose I suspect.))
    SO—I don't want to be forced into Remote.app version 3 and have my playlists scrambled on my iPhone and iPad. Is there anyone who knows the answer from first hand experience?
    If customer loyalty is as important to Apple as it should be taking away features in iTunes and Remote app will only drive old customers away.
    Thanks!!
    David

    I like that I would be able to maintain my iPhoto library data for Faces and Places in Aperture, but am concerned that when the iPhoto library is "upgraded" for Aperture, and I decide I don't really need that program, the upgraded library won't work with iPhoto anymore.
    The iPhoto library isn't changed in any way by Aperture. Aperture will import the Library and you can choose to copy the files to the Aperture Library or reference them within iPhoto. As long as you don't delete files from the iPhoto Library via Aperture (which you could do if you choose to Reference) there is no impact on iPhoto
    Will I still be able to use iPhoto to access and organize my library, or will it be forever converted for use with Aperture?
    They are completely different libraries.
    Recently, iPhoto bugs make Events show up multiple times in iTunes when syncing for iPhone and iPad.
    Fixed in the 9.1.3 update.
    Will I find a better user experience with Aperture, or does it also use the single file library and suffer the same struggles iPhoto users have been seeing lately?
    Like iphoto, Aperture can use the "single file library" or it can use a Referenced Library (just like iphoto can). Note that using a Referenced Library offers not a whit more in terms of features or capabilities. It's file storage plain and simple. Nothing more.
    No you won't see the "same struggles iPhoto users have been seeing..." because Aperture is an entirely different allication.
    But you my see Aperture or Lightroom struggles
    Regards
    TD

  • I cannot open Adobe photoshop CS2 which I was using 10 days ago.  Can I restore the system to before 10 days, so it will work again?

    I cannot open Adobe photoshop CS2 which I was using 10 days ago.  Can I restore the system to before 10 days, so it will work again?

    The hatter wrote:
    Rosetta can have a 2GB RAM "tax" to manage PowerPC code as well as how that affects performance.
    I think real world performance shows both statements to be wrong; consider this:
    If that were the case, how come Apple does not include that information in its Snow Leopard installation requirements, since Rosetta is an optional install?
    Also, running a PowerPC app on an 2011 i7 Mac with Snow Leopard will run faster than running that PowerPC app on a PowerPC Mac.

  • Does scripts of UCCX 9.0.2 will work with UCCX 10.5

    Currently we are having UCCX 9.0.2-10000-71 installed on MCS server. We are planning to migrate on BE7K UCS server with version uccx 10.5.
    1. Does scripts of UCCX 9.0.2 will work with UCCX 10.5
    2. How i can restore historical data from 9.0.2 uccx to 10.5 uccx as new server will be having different IP address hence we cannot restore the backup. We need to create all configuration manually. Also uccx 9.0 was supporting Historical Reproting but 10.5 supports CUIC, so there is any way we can restore the reporting data so that we can pull old reports using CUIC as well.
    Thanks & Regards
    Netplace

    Hi
    Sounds like you have a lot to learn and should leave the upgrade to someone who knows the products. 
    1. Yes, typically they work, but testing this will be part of your upgrade process. The script may contain anything from basic steps (that will work) to complex stuff or embedded Java.
    2. You would not restore the data. It's not possible. What you would do normally would be to change the IP address of the existing system either before or after the upgrade. CUIC and HRC are difference interfaces to the same DB, so it doesn't matter.
    Regards
    Aaron

  • Does anyone know if m-audio 410 will work with OS 10.8?

    does anyone know if m-audio 410 will work with OS 10.8?

    The Canon UFR2 v2.41 driver for 10.7 that was released last month also works fine on 10.8.
    This driver is for UK English regions where your model is known as the iR1024iF. If you want to check the Canon USA web site for the US English version of the UFR2 v2.41 driver then you should get the correct model name.

  • Does anyone know if the Toshiba 240GB 1.8" MK2431GAH Hard Drive will work in the 4th gen iPod Photo?

    I've been considering buying a Toshiba 240GB 1.8" MK2431GAH Hard Drive for my 4th gen iPod Photo.  Does anyone have any information about this product and if it will work?  Would I have to also get a thicker back panel?

    And the reason is because the connector on the later versions of the Toshiba 1.8-inch hard drives is different.
    The older type that works with your iPod goes up to 60GB.  There are two physical sizes, base on whether the drive has one platter or two platters, and these correspond to the "thick" and "thin" iPod back panels.
    I have a 4th gen iPod with a standard compact flash card for storage, which replaces the hard drive through an adapter.  I believe it's this one, or one like it
    http://www.ebay.com/itm/NEW-Compact-Flash-CF-SSD-To-Toshiba-IPod-1-8-inch-Adapte r-Black-/121174875639
    It fits in the "thin" back panel.  The only modification I needed to make was bending over the pair of "jumper" pins that sets it for master or slave (needs to be set for master).  Currently, I only have an 8GB CF card in there, but it works great.  At some point, I may get a 64GB CF card for it.  Solid state storage is much better than a hard drive for everything except sheer capacity.

  • TS1559 I have 4s. After I updated ios7.0.3 my wifi is geyed out. I expected after ios7.0.4 update wifi will work again, but does not. It annoying, because I have to use my data... Does anyone know when it will be fixed or does anyone have the same problem

    I have 4s. After I updated ios7.0.3 my wifi is geyed out. I expected after ios7.0.4 update wifi will work again, but does not. It annoying, because I have to use my data... Does anyone know when it will be fixed or does anyone have the same problem?

    I have the same problem.  After the upgrade, my wifi is greyed out, and the battery won't hold a charge long. I reset all the settings, tried all the things suggested by Apple, but it didn't work.  I took the phone to Verizon, but they said they can't fix it, go to Apple
    I made an appointment at the Genius bar, where the staff was incredibly rude and dismissive. A representative told me that the wi-fi is broken and I would need to buy a new phone for $200, because mine is out of warranty. I'm due for an upgrade in a few months, so I'm not going to pay $200 for another 4S now.  I'm also not going to buy any more Apple products.  Their upgrade caused this problem, and they are not standing behind their producet.

  • My iPhone 5 will not sync with itunes. Icon does no appear in left hand column. Both iTunes and the iPhone are running the most up to date updates. Please help.

    My iPhone 5 will not sync with itunes. Icon does no appear in left hand column. Both iTunes and the iPhone are running the most up to date updates. Please help.

    Is your iPhone connected to your computer using the lightning cable or are you doing WiFi sync?
    Sometimes the iPhone doesn't show up in the side bar if you're using WiFi syncing, if its not working, then be connected to your WiFi on your phone and on your computer (Same network) let me know how it's going, if it doesn't work still. Turn your phone off and on again and put in your pass code then try to sync it (keep your phone unlocked and not in sleep mode) tel me if it appears in the side bar.

Maybe you are looking for

  • DVD Player has started playing PAL DVD's on external PAL display very badly

    I have my Early 2006 iMac connected to an external HDTV (Mini-DVI->HDMI) Using display options I can switch the external display easily between NTSC and PAL refresh rates. It used to be that apple's DVD player could play a PAL dvd just fine on the di

  • ADF MenuModel: Dynamic changes to shown property

    Hi all, I have been doing some testing, and not sure if this is a bug or I am doing something wrong. To set the stage, I've got a menu defined via managed beans (using the MenuItem, MenuModelAdapter, MenuTreeModelAdapter from SRDemo). I also have a s

  • I can't transfer my photos from iphoto to a folder..

    After I import my photos from my phone to iphoto, i always move my pictures to a folder i made in my documents. Now, for some reason, it does not let me transfer the pictures. As i drag the pictures to the Finder, it does not let me release the pictu

  • Configurable Products in Service Process (CIC)

    Hello, If I add a configurable product to a service order in CRMD_ORDER the configuration tab is displayed correctly. However, if I add a configurable product to a service order in the CIC it is not. I presume this is a feature! I tried modifying the

  • Adobe Muse and updater fail

    I recently updated Adobe updater.  Now I have no updates and I can not get into Muse.  Asks for login info but then dead ends by saying no internet connection.