How to move (ArrayList || Statement || ResultSet) information  - dataSet

I'm building a MySQL based DB application. Using jdbc connector from mysql.
I now have SQL query results in Statement object, in ResultSet and in ArrayList. Is there any posibility to pass any information from any of theees to dataSet object.
because i'm using jdbTable, and this thing doesn't work without dataSet... ...doh
many thanks
simas

Hello,
Check out the Performing Inserts, Updates, and Deletes tutorial
http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/index.jsp
Also, you can search the forum. There have been some
discussions on MySQL
John
JSC QA

Similar Messages

  • How to move "write statements" to a internal table...

    hi experts.
    i did "write statement" as follows
    |  a  |  b  |  c  |  d  |
    and then i want to insert to internal table after the screen contents as above.
    the internal table exist only one field as follows.
    data: begin of gt_itab,
              line     type  char255,
            end    of gt_itab.
    can i do this one?
    i wish your answer.
    thanks.
    Regards
    FM.
    Edited by: yuntae kim on Jun 4, 2009 3:07 PM

    Hi, you can try to export the list to memory. Like the code below:
    DATA: tg_str TYPE TABLE OF listzeile,
              tl_mem TYPE TABLE OF abaplist,
              ilist TYPE TABLE OF abaplist WITH HEADER LINE.
    EXPORT LIST TO MEMORY
    CALL FUNCTION 'LIST_TO_MEMORY'
       EXPORTING
         list_index = 0
       TABLES
         listobject = ilist
       EXCEPTIONS
         empty_list = 1.
    READ THE LIST
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = tl_mem
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno.
        EXIT.
      ENDIF.
    CHANGE LIST TO ASCII
      CALL FUNCTION 'LIST_TO_ASCI'
        TABLES
          listasci            = tg_str
          listobject         = tl_mem
        EXCEPTIONS
          empty_list           = 1
          list_index_invalid  = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno.
        EXIT.
      ENDIF.
    On table tg_str you gonna have the:
    a
    b
    c
    d
    I hope it helps.

  • How move in the ResultSet

    i need to fill a String names[ ] whit the result of a querry (select name from people) the result is a list of names and i need to fill a list in one combo box
    and i have some problems because i dont understand how to move in the resulset and when I use
    names[ ] = ResultSet.getString("I dont know what put in here" );

    Statement stmt = ...
    ResultSet rset = stmt.executeQuery("Select ...");
    while(rset.next()) {
    String name = rset.getString(1);
    int age = rset.getInt(2);
    }

  • How can i get my rented movie itunes download is informing waiting

    how can i get my rented movie itunes download is informing waiting

    hi
    i used my ipad for downloding. when i connect to my imac , itunes there are no available downlods, they charged me already

  • HT1364 I need to reload my operating system on my computer.  I created a folder, itunes media, on a external drive. When I download itunes again how do move my library information back?

    I have to reload my operating system.  I created and copied my library info to a folder, itunesmedia, on a external drive.  when I download itunes again, how do move the files back?

    You need to follow the moving media per: http://support.apple.com/kb/HT1364

  • Creating new Connections/Statements/ResultSets

    Hi,
    RDMS = Sybase
    JDBC = Jconnect 5.5 obtained from Sybase website
    Purpose:
    To loop through the program below with different queries and produce
    a resultset.
    Details:
    I have a program that creates a query stores it in a static setter.
    The program calls the program below. The program below:
    (1) obtains the query from a static getter
    (2) creates a connection/statement/resultset
    (3) returns to the calling program where
    (a) resultset is displayed
    (b) calls close() in the program below which closes the
    connection/statement/resultset
    Problem:
    I thought that creating a new connection/statement/resultset
    each time the program below is called would work.
    The program below returns the correct resultset for the first query
    but when called with a different query returns the first resultset that
    was generated.
    Question:
    Do I have to use different objects for the connection/statement/resultset each time the program is called
    even though the existing connection/statement/resultset is closed
    before a new connection/statement/resultset is created ?
    if yes,
    I don't how to change the object for connection/statement/resultset
    dynamically each time the program below is called.
    Any assistance provided would be greatly appreciated !!
    Thanks for your time,
    YAM-SSM
    package ecmutl;
         import java.awt.*;
         import java.sql.*;
         public class DbConnect implements Runnable {     
              public static Thread queryThread = null;     
              public static Font        fntF;
              public static Connection conn = null;
              public static ResultSet rs = null;
              public static Statement stmt = null;      
              public static String nodename = EcmUtlLogicals.getNodeName();
              public static String password =     EcmUtlLogicals.getPassword();
              public String newline = "\n";
              public static String sqlstate;
              public static String message;
              public static String queryThreadDone = "false";
              public static String query = EcmUtlLogicals.getQuery();
              public static String dbname = EcmUtlLogicals.dbname;
              public static String username = EcmUtlLogicals.username;
                 public static int SybaseReturnCode; 
              void Connect() {               
                        try {                              
                        Class.forName("com.sybase.jdbc2.jdbc.SybDriver").newInstance();
                           conn = DriverManager.getConnection("jdbc:sybase:Tds:"+nodename+"/"+dbname,username,password);     
                   catch (SQLException exc) {
                        sqlstate = exc.getSQLState();          
                        message = exc.getMessage();
                        SybaseReturnCode = exc.getErrorCode();
                   catch (InstantiationException iste) {
                   catch (ClassNotFoundException cnfe) {
                   catch (IllegalAccessException iae) {
                   if (queryThread == null) {
                        queryThread = new Thread(this, "Query");
                        queryThread.start();               
                   } // close if                 
              } // close Connect method
              public void run() {               
                  try {                             
                                     stmt = DbConnect.conn.createStatement();                 
                        rs = stmt.executeQuery(query); 
                        queryThread = null;     
                   } // close try
                   catch (SQLException sqlex) {
                        sqlstate = sqlex.getSQLState();                     
                        message = sqlex.getMessage();
                        SybaseReturnCode = sqlex.getErrorCode();
                                    queryThread = null;
                            } // close catch
                            catch (java.lang.Exception ex) {
                          ex.printStackTrace ();
                   } // close catch
                   queryThreadDone = "true";
              } // close run method
              static void close() {     
                   try {
                         if ( rs != null){
                              rs.close();          
                         if ( stmt != null){
                              stmt.close();
                         if ( conn !=  null){
                              conn.close();     
                   } // close try
                   catch (SQLException error){     
              }// close close()          
    } // close DbConnect class     

    Then I'd say you should write a QueryThread object
    that extends Thread and takes an SQL statement in its
    constructor. In the run method, create a connection,
    statement, and result set to run that query, close
    them in reverse order when you're done, and provide a
    getter to give access to the results. Don't return a
    reference to the result set; put the results in a data
    structure or CachedRowSet and close out the result set
    as soon as you're done with it. ResultSets are
    database cursors, which are scarce resources.
    With this design, every thread has its own connection
    and resources. They can't conflict with each other. -
    MODHi MOD,
    I finished coding a QueryThread object exactly as you instructed
    and IT WORKS !!!!! The calling program calls QueryThread by:
    QueryThread qt = new QueryThread(query);
    qt.start();
    QueryThread code:
    package ecmutl;
         import java.awt.*;
         import java.sql.*;
         import java.util.List;
         import java.util.*;
         public class QueryThread extends Thread {
              public static Thread queryThread = null;     
              public static Font        fntF;
              public static Connection conn = null;
              public static ResultSet rs = null;
              public static Statement stmt = null;      
              public static String nodename = EcmUtlLogicals.getNodeName();
              public static String password = EcmUtlLogicals.getPassword();
              public String newline = "\n";
              public static String sqlstate;
              public static String message;
              public static String queryThreadDone = "false";
              public String query;
              public static String dbname = EcmUtlLogicals.dbname;
              public static String username = EcmUtlLogicals.username;     
              public static int SybaseReturnCode;
              public QueryThread(String query) {
                   this.query = query;                 
              public void run() {               
                   try {              
                        Class.forName("com.sybase.jdbc2.jdbc.SybDriver").newInstance();
                        conn = DriverManager.getConnection("jdbc:sybase:Tds:"+nodename+"/"+dbname,username,password);                                                                                                         
                        stmt = conn.createStatement();                 
                        rs = stmt.executeQuery(query);
                        List resultSetArray = new LinkedList();
                        resultSetArray = new ArrayList(); 
                        if (rs != null) {     
                             int i;
                             ResultSetMetaData rsmd = rs.getMetaData ();
                             int numCols = rsmd.getColumnCount ();
                             for (i=1; i<=numCols; i++) {
                                  if (i > 1) resultSetArray.add(",");
                                  resultSetArray.add(rsmd.getColumnLabel(i));
                             resultSetArray.add(newline);
                             boolean more = rs.next ();
                             while (more) {
                                  for (i=1; i<=numCols; i++) {
                                       if (i > 1) resultSetArray.add(",");
                                       resultSetArray.add(rs.getString(i)); 
                                  resultSetArray.add(newline);
                                  more = rs.next ();
                             EcmUtlLogicals.setResultSetArray(resultSetArray);
                             if (rs != null){
                                  rs.close();
                             if (stmt != null) {
                                  stmt.close();
                             if (conn != null) {
                                  conn.close();
                        queryThread = null;                                            
                   catch (SQLException sqlex) {
                        sqlstate = sqlex.getSQLState();                     
                        message = sqlex.getMessage();
                        SybaseReturnCode = sqlex.getErrorCode();
                        queryThread = null;
                   catch (java.lang.Exception ex) {
                                     ex.printStackTrace ();
                   queryThreadDone = "true";
         }I have only be using Java for three months. Sometimes one needs a teacher to go along with the APIs.
    Thanks for your patience/help/time
    YAM-SSM

  • How to move a button in gird layout(16-block game)?

    I am designing a 16-block puzzel game and don't have any idea about how to move buttons in a grid on mouse click.

    This is the code now me help me to solve this problem.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.*;
    public class Puzzel extends JFrame {
              JButton[] arr = new JButton[15];
              String[] add = {"1.jpg","2.jpg","3.jpg","4.jpg","5.jpg","6.jpg","7.jpg","8.jpg","9.jpg","10.jpg","11.jpg","12.jpg","13.jpg","14.jpg","15.jpg"};
              int X;
              int Y;
              public Puzzel(){
                        Image image;
                        Toolkit toolkit= Toolkit.getDefaultToolkit();
                        image=toolkit.getImage("icon.jpg");
                        ImageIcon icon=new ImageIcon("icon.jpg");
                        setIconImage(image);
                        setTitle("Puzzal");
                        JMenuItem pic = new JMenuItem("Solved");
                        pic.setMnemonic('a');
                        JPanel jp = new JPanel(new GridLayout(4,4));
                        ArrayList list = new ArrayList();
    MouseListenerClass M1 = new MouseListenerClass();
                           for(int x = 0; x < arr.length; x++)
                               arr[x] = new JButton(add[x], new ImageIcon(add[x]));
                               getContentPane().add(arr[x]);
                              list.add(arr[x]);
                        Collections.shuffle(list);
                        for(int x = 0; x < list.size(); x++)
                              jp.add((JButton)list.get(x));
                            getContentPane().add(jp);
                                 pack();
                                 setSize(427,427);
                                        setResizable(false);
                        /*for(int x=0;x<arr.length;x++){
                             arr[x].addSelectionListener(new SelectionAdapter());
                   public void widgetSelected(SelectionEvent event){System.out.println("IN");
                        if (event.getSource().getClass().equals(Button.class)){
                             Button button = (Button) event.getSource();
                             if (button.getText().equals("") )
                                  Toolkit.getDefaultToolkit().beep();
                                  else
                                       this.swapPlaces(((Integer) button.getData()).intValue());
                   public void widgetDefaultSelected(SelectionEvent event){
                                  System.out.println("Widget was defaultselected: " + event.getSource());
               for(int x = 0; x < arr.length; x++)
              arr[x].addMouseMotionListener(M1);
              private class MouseListenerClass extends MouseMotionAdapter
                   public void mouseDragged(MouseEvent E)
                   X=E.getX();
                   Y=E.getY();
                   for(int x = 0; x < arr.length; x++)
                        arr[x].setBounds(X,Y,100,100);
    public static void main(String[] args){
                    new Puzzel().setVisible(true);}
         }

  • How to move MobileMe Account to iCloud?

    I tried logging in my iCloud account and got this message:
    "Go to me.com on your computer to move your information to iCloud".   PRESS "OK"
    I did that by going to my pc  and logged into www.me.com but somehow can't configure how to move MobileMe account to ICloud. Rather  i don't understand this Terrm.

    Read "How can I use iCloud with 10.6.8?" list over on the right under the heading "More Like This".
    Allan

  • How do I add State/Province and Country to my drop down list?

    How do I add State/Province and Country to my drop down list?

    Hi Gen,
    My problem is that I'm working with the free version of Form Central - I'm willing to purchase a version.  Earlier in my form I have States as a drop down menu (see below) but can't copy it to make it appear later in the same document. I was trying to avoid recreating the entire form. Any tips on copying or duplicating a field inside a document.
    Best Regards,
    Gina Grant
    ink + thread
    312.970.1106 (p)
    773.435.6474 (f)
    www.inknthread.com
    CPS Vendor #: 98626
    The information contained in this email is confidential, proprietary and may be legally privileged. This email is intended solely for the addressee(s). If you are not the intended recipient, you are hereby notified that any use, dissemination, or reproduction is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact ink + thread by e-mail ([email protected]) and destroy all copies of this email.

  • How to move all files from a folder for a user to a centralized folder on a core server with a GP

    Hello,
    I was curious if someone know how to move all the files of a user "local" profile on a Terminal Server to that of a centralized server where the "local" profile of like the user desktop, favorites, setting, etc are stored in the event
    the local profile on the TS become corrupt it can pull from this server...
    The problem I have is no matter what I tell users to save there files to our Y drive that is a folder that is synced
    across all 6 of our TS servers, users still store files on there desktops, so as you can imagine if one day they are on one server, then next day they could be on another and there files aren't the same.... hence the reason why I want to move all there files
    to the centralized server so when I redo the profiles from scratch on the TS server in the farm they suck files from the core server and have all of the files they are used to having.... 
    So I was curious and I've heard from some this is possible in a GP, but I'd like to move the contents of all 6 TS for
    each user or if I have to d this on  per user basis I will, just looking for a way to move the files....

    Hi Trevor,
    To move all users’ desktop to a server, we can use Folder Redirection to do this. The path for Folder Redirection is:
    [Group Policy Object Name]\User Configuration\Policies\Windows Settings\Folder Redirection
    In this situation, we can choose to redirect desktop to the root of a network file share or a folder on a network share.
    Regarding how to configure this, the following article can be referred to for more information.
    Configuring Folder Redirection
    http://technet.microsoft.com/library/cc786749.aspx
    Hope it helps.
    Best regards,
    Frank Shen

  • How to move data from a staging table to three entity tables #2

    Environment: SQL Server 2008 R2
    I have a few questions:
    How would I prevent duplicate records, when/ IF SSIS is executed many times?
    How would I know that all huge volume of data being loaded in the entity tables?
    In reference to "how to move data from a staging table to three entity tables ", since I am loading large volume of data, while using lookup transformation:
    which of the merge components is best suited.
    How to configure merge component correctly. (screen shot is preferred) 
    Please refer to the following link
    http://social.msdn.microsoft.com/Forums/en-US/5f2128c8-3ddd-4455-9076-05fa1902a62a/how-to-move-data-from-a-staging-table-to-three-entity-tables?forum=sqlintegrationservices

    You can use RowCount transformation in the path where you want to capture record details. Then inside rowcount transformation pass a integer variable to get count value inside
    the event handler can be configured as below
    Inside Execute SQL task add INSERT statement to add rowcount to your audit table
    Can you also show me how to Check against destination table using key columns inside a lookup task and insert only non
    matched records (No Match output)
    This is explained clearly in below link which Arthur posted
    http://www.sqlis.com/sqlis/post/Get-all-from-Table-A-that-isnt-in-Table-B.aspx
    For large data I would prefer doing this in T-SQL. So what you could do is dump data to staging table and then apply
    T-SQL MERGE between tables (or even a combination of INSERT/UPDATE statements)
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Concerns ALL Time Machine Users. HOW TO MOVE Time Machine backups. Help !

    Concerns ALL Time Machine Users :
    MOVE (or COPY) Time Machine backups from a "x"To Disk to an "y"To greater disk.
    Hello and thank you all for reading me,
    First, excuse me if I make language errors (I'm French).
    Secundo, I don't know if you'll find something interesting for you
    in what I write about Time Machine and my own problems,
    but there's a possibility also that YOU could perhaps help me.
    I'm talking about Time Machine and his **** Backups.backupdb folder,
    containing "*Name of your Mac*" folder,
    this folder containing Time Machine backups, format : YYYY-MM-DD-HHMMSS
    Time Machine doesn't recognize the backups it made *IF YOU MOVE THEM*.
    I have perhaps a solution in this message.
    You'll see below what kind of problem I (and you could) have.
    Since 12/01/10, an Apple Adviser Level Two (and me)
    are trying to understand how to move backups from TM1To Disk to, let's say, a bigger one.
    My case is TM1,5To.
    *Purpose :* Move 19 backups from Time Machine X disk to Time Machine Y disk.
    Delete TMX disk Time Machine backups after that.
    Make TMY disk the current used Time Machine Disk.
    I don't remember exactly what we did before
    (we even created a "root" account with password (dangerous to do),
    but it didn't solve the problem),
    but we finally copied :
    TM1To > Backups.backupdb > *MacBook Pro* folder (containing 19 backups) into :
    TM1,5To > Backups.backupdb folder.
    The Copy application announced *16 hours !* (without antivirus, to remove absolutely).
    So I said goodbye and thank you to my Apple Adviser. After *8 hours*, Copy failed.
    BUT it had succeeded to copy *4 backups ONLY* (why ?) in TM1,5To.
    I immediately verified and checked each of these with Get Info.
    They had EXACTLY the same size (Byte to Byte) as in TM1To.
    ➔ BUT HERE IS MY OBSERVATION :
    After designing TM1,5To as Time Machine Disk, I ordered it to Backup (now).
    And what did Time Machine do in TM1,5To > Backups.backupdb ?
    It created a *NEW folder*, named *MacBook Pro 2* !
    ➔ *I HAVE NO ACCESS* to TM1,5To > Backups.backupdb > *MacBook Pro* (4 backups copied from TM1To, remember) ;
    ➔ while I still *HAVE ACCESS* to TM1To > Backups.backupdb > *MacBook Pro* (19 backups) ;
    ➔ *AND I HAVE ACCESS* to TM1,5To > Backups.backupdb > *MacBook Pro 2*,
    where Time Machine makes actually his backups.
    *NOTE :* If you *change the name* of your computer,
    Time Machine *changes automatically the name* of the folder who is in Backups.backupdb folder.
    ➔ ① I have *never seen* such protections (Sharing and Permissions).
    You are not allowed to do anything. I've tried to change permissions,
    first : "R+W", after that : "Make (Me) the owner", I can tell you : DON'T DO IT !
    ➔ ② It's impossible to install an OS on a Time Machine disk
    (I thought it would allow better permissions).
    OS Installer detects the existence of a Backups.backupdb folder
    and refuses to install on this disk or partition.
    I have now the bad intent to install minimal OS X
    1) after deleting (how ?) this folder (but not its contents, how to move it ?)
    and 2) declare *after that* the disk as Time Machine disk.
    ➔ ③ Time Machine doesn't backup OTHER Time Machine backups
    (who are in an ancient-not-choosed-for-backups Time Machine disk) NOR backups this disk
    (detects, once again, the existence of a Backups.backupdb folder).
    AND you can't *absolutely not remove backups from the folder the're in*
    (for me, *MacBook Pro* or *MacBook Pro 2*).
    ➔ ④ I didn't have time to do it, but I think there would perhaps be a solution
    in restoring backups in partitions specially created to receive them (having the same name,
    that sort of thing) and then re-backup these partitions (vicious and complicated).
    There is a function on Mac OS X Install DVD : start with it, and then (do not install)
    choose "*restore from Time Machine backup*" from the menu bar (it's called "Utilities", I believe).
    ➔ ⑤ I *absolutely don't understand* what follows :
    — If I add (in my TM1To disk) the bytes of the 19 backups
    in Backups.backupdb > *MacBook Pro* folder, I obtain about *1,8 To*.
    — It's impossible (and not french).
    — When I check the size used with Disk Utility (NOT with Get Info),
    I find a correct (?) size : *about 750 Go*.
    — What are Time Machine backups made of ?
    It can't be aliases (because of their size, and because *aliases suppose originals,
    and where could they be ?*), or am I wrong and becoming crazy ?
    ➔ ⑥ If you refer to the numbers shown at the end of this text (*4 backups*),
    you'll see I could *delete duplicate elements* inside these 4 backups,
    to win space (but *what kind* of space *if I delete aliases* ?).
    Back-In-Time (see below) says he does it.
    BUT is it really the OLDEST items I have to destroy (see ⑤),
    when I don't know with what kind of ARTEFACT I'm acting ?
    What does Time Machine delete to create more backup space ?
    Is it REALLY the OLDEST backups it treats, or duplicates, OR ?
    *What you can do :*
    Find and go to Tri-Edre.fr or Tri-Edre.com/fr site (it's a french company
    that creates small Mac applications since fifteen years at least,
    I think I already bought them several programs in 1990) ;
    Their program *Back-In-Time 1.4.4* is free (Trial) and complete to download (with PDF docs too).
    It is *ENTIRELY DEDICATED* to Time Machine and *things you can't do* with.
    Price is about 30 €, I think it's worth.
    The TRIAL version you will obtain can only work on the LAST Time Machine backup,
    but you will see what's featured *AND :*
    You will ACCESS to ANY Time Machine backup you want
    (It has to be the last of a serie of backups, but the serie you want.
    I've bought the application and own an activation key, but you understand I can't give it to you
    (it would not be ethic) and anyway you would be obliged to disconnect AirPort, Ethernet etc.
    •➔ I have bought the application because I thought (it's said in PDF FAQs) I could IN THE END move Time Machine backup files, but it cannot, (I'm afraid).
    *BUT ANY ACCESS PROBLEM IS SOLVED.*
    •➔ Back-In-Time 1.4.4 can *delete :* duplicate backups, complete backups,
    or duplicate items inside one or several Time Machine backups,
    things that I believe impossible with Time Machine itself
    (I've seen it offers to delete ALL occurences of an item) ;
    •➔ The application can also restore anything you want, where you want
    (but I think Time Machine does it too ?)
    •➔ Believe it or not, but since I've bought it on 15/01,
    I've only worked about 2 hours (no, much more) on it
    and didn't make sufficient progresses (enhancements ?)
    to talk of it with sufficient experience (I'm a bad guy, don't you think ?)
    •➔ Tri-Edre offers on-line support, e-mail support (and so on),
    and I EVEN didn't manage to join them, because I did many other things,
    and also somewhat have been disgusted *not to be able to move* or copy
    *(accessible by Time Machine after that)* backups,
    and I also didn't succeed (*another Time Machine inconvenient*) to DESTROY an ".inProgress"
    Time Machine (package) which doesn't work anymore (several interruptions while active),
    date (and name) 2010-01-27-164345.inProgress, but is used (*with failure results*)
    by Time Machine (it's turned off till I find how to destroy its **** ".inProgress" package.
    •➔ I've asked my Apple Adviser Level 2 to wait for news from me
    before working himself on the problem, and I think I will send him this message
    to prove I haven't forgotten him.
    •➔ I'll send it to Tri-Edre too, in the same move.
    I hope those remarks to be useful for somebody, tell me if it has helped.
    I will also publish this in any Time Machine topics I find here, and in MacRumors site too.
    As you can see, I need help too … Does anybody have an idea ?
    Perhaps if I used a specific Copy software, it could work ?
    You'll see below an example of some time I've spent to study my problem
    (you will think I'm crazy).
    With my kind regards, and good luck if you have other Time Machine problems !
    Olivier Herrbach
    <Edited by Host>
    Le but du jeu est de transférer toutes les sauvegardes Time Machine
    d'un volume/partition que nous appelerons "1 To"
    sur un volume/partition que nous appelerons "1,5 To".
    *Je rappelle que les 4 sauvegardes effectuées par Time Machine sur le 1 To
    n'ont pas été reconnues comme siennes par Time Machine sur le 1,5 To,
    bien que strictement identiques en taille après leur copie.
    J'ai remarqué dans Back-In-Time des fichiers invisibles (tels que "TimeMachine.log"
    ou quelque chose de genre), et je soupçonne fort qu'ils n'ont pas été copiés et que Time Machine,
    ne les trouvant pas dans le 1,5 To, a ignoré à cause de leur absence les 4 sauvegardes décrites ici.*
    *Sauvegardes effectuées par Time Machine sur 1 To :*
    Path : MacBook Pro > Volumes > 1 To > Backups.backupdb > MacBook Pro
    MacBook Pro contient 19 items (dont un alias appelé "Latest") :
    1°) 2010-01-02-045758 Size : 913.207 B for 41.888 items comprenant :
    • Hitachi 1 To Size : 907.664 B for 41.887 items 7 folders
    Différence avec 1°) = - 5.543 B - 1 item (1 folder)
    2°) 2010-01-03-001957 Size : 982.211.325 B for 67.490 items comprenant :
    • Hitachi 1 To Size : 901.516 B for 41.886 items 6 folders
    Différence avec 1°) = - 6.148 B - 1 item - 1 folder
    • Samsung 500 Go Size : 981.302.510 B for 25.602 items 4 folders
    Total • + • = Size : 982.204.026 B for 67.488 items
    Différence avec 2°) = -7.209 B - 2 items (2 folders)
    — *Supprimer • Hitachi 1 To* dans 2010-01-03-001957. Comparer les dossiers.
    3°) 2010-01-04-222709 Size : 5.241.032.819 B for 26.509 items comprenant :
    • Samsung 500 Go Size : 5.187.330.874 B for 19.392 items 8 folders
    Différence avec 2°) = + 4.206.028.364 B - 6.210 items + 4 folders
    • StartUp Disk Size : 53.692.703 B for 7.115 items 4 folders
    Total • + • = Size : 5.241.023.577 B for 26.507 items
    Différence avec 3°) = - 9.242 B - 2 items (2 folders)
    — *Supprimer Samsung 500 Go* dans 2010-01-03-001957. Comparer les dossiers.
    4°) 2010-01-05-125449 Size : 9.428.705.396 B for 204.915 items comprenant :
    • HD 250 Go Size : 9.374.308.265 B for 181.575 items 7 folders
    • Samsung 500 Go Size : 692.898 B for 16.222 items 8 folders
    Différence avec 3°) = - 5.186.637.976 B - 3.170 items
    • StartUp Disk Size : 53.692.703 B for 7.115 items 4 folders
    Total • + • + • = Size : 9.428.693.866 B 204.912 items
    Différence avec 4°) = - 11.530 B - 3 items (3 folders)
    — Supprimer • StartUp Disk dans 2010-01-04-222709. IDENTIQUE.

    Dear James Pond,
    Thank you once again, and, don't be afraid, I will be as short as possible,
    but I need to use your last reply (I've cut all what was already said).
    JP ➔ You can copy an entire set of backups, but you cannot copy part of it successfully. See #18 etc.
    JP ➔ Read this from the first paragraph: "you cannot copy only selected backups,
    or merge two (or more) sets of backups." The structure of the backups simply will not allow it.
    I've read it, and found it regrettable. And I've also read, after that, what were the solutions under Leopard and Snow Leopard, and my conclusion is that it's a *dead end* for me. In short,
    — I can't move (by drag and drop) the 1To's Backups.backupdb folder (containing MacBook Pro, 19 backups, access) to 1,5To, because there exists already the Backups.backupdb folder created by copy on 12/01 with Apple Assistance (containing [MacBook Pro, 4 backups of 19, no access] and [MacBook Pro 2, 15 backups, access]). I don't even know if it could be deleted by the copy (and I don't wanna do that anyway) ;
    — I can't rename (and what for, I already forgot it) any Backups.backupdb folder nor delete it ;
    — I can't copy any Computer'sName folder (entire set containing backups), being in a Backups.backup.db folder, into another Backups.backupdb folder ;
    — I can't copy any (or all of an entire set) YYYY-MM-DD-HHMMSS backup(s), being in a Computer'sName folder, into another Computer'sName folder (even if it would be empty).
    — Saying NONE in Time Machine Preferences and putting it to OFF is simply no use.
    All is said. What I can try to do is :
    — Delete (not with Finder, but with Back-In-Time) all duplicate things I find in all backups and also entire duplicate backups (I have full access to all with the software) ;
    — Restore each of the reduced-to-minimum backups obtained in specially right-sized partitions wearing the YYYY-MM-DD-HHMMSS name of each restored backup. Time Machine doesn't backup his backups, but will backup these partitions.
    I'm afraid to be actually completely running out of the target, when I read what I write … It's time to go to bed !
    Reminder (OH) : Where did you find these amazing informations ?
    JP➔ Some of it is detailed here: http://www.appleinsider.com/articles/07/10/12/roadto_maco[]sx_leopard_timemachine.html
    ➤ Thank you ;
    JP➔ and here:
    http://arstechnica.com/apple/reviews/2007/10/mac-os-x-10-5.ars/14
    ➤ Thank you too ;
    JP➔ You have to understand the structure. When TM does the first backup, yes, it copies everything.
    On subsequent backups, it copies what's new or changed, but also makes "hard links" (sort of like aliases) to the copies of the things that didn't change. That's how it can only back up a few things each time, but show you a complete "snapshot" of the way your entire system looked at the time of every backup.
    ➤ I'll do my best to understand.
    JP➔ Time Machine deletes backups under two conditions. See the first part of #12 in the Frequently Asked Questions User Tip, also at the top of this forum.
    Under normal circumstances, you should not have to delete any backups. See the rest of #12.
    ➤ I understood why Time Machine didn't delete oldest backups : they were not weeklies ones.
    Reminder (OH) : How can I destroy the (corrupted ?) not working "2010-01-27-164345.inProgress" in 1,5 To, which causes Time Machine to abort any backup of any size I ask ?
    JP➔ Why do you think it's corrupted? TM is designed to "recover" a partial backup.
    ➤ I'll verify that with the little Tools/Apps I discovered in your FAQ User Tip document and downloaded immediately.
    Why didn't Apple tell me anything ? It's my fault, I'm perhaps not clear and not demanding enough more from them.
    JP➔ You cannot install OSX on a disk containing TM backups. That's because they need to be on separate disks.
    Technically, you could put them on separate partitions of the same disk, but that would not be a good idea.
    ➤ I never told you that (there would be no interest at all). I talked about the same location, to see if it would allow me more permissions, but if all works without doing it, it's really no use.
    JP➔ Sorry, I don't know what that means.
    ➤ I'm sorry, I didn't explain : "but if all works" meant : Copy Backups.backupdb, "without doing it" meant : Install OSX.
    ➤ If I install an OSX BEFORE, Time Machine will REFUSE completely to backup on it, it's understood.
    JP➔ Correct. The partition you're running from will not be an option in TM Preferences > Select Disk. That prevents TM from backing-up it's own backups!
    ➤ Would it be so absurd ? Maybe it could resolve my actual problem ?
    I think you are right, but I don't know why. I trust you.
    Reminder (OH) : "I will not bore you again except if I don't find a specific answer to an unknown-never-seen-incredible malfuction."
    JP➔ Don't worry about that -- thats what this forum is for, especially if you're still having problems.
    ➤ It's seems in fact that there is no possible solution, except what I said above and is certainly crazy/out of subject.
    Just try to be as clear and concise as you can.
    And please don't post the same things repeatedly -- it wastes your time and ours, and can confuse other folks.
    ➤ You're absolutely right and I tried to do so this time, and I'm sorry because I see it's still (far) not enough (short).
    Thank you once more. I wish you a good evening and week-end. Here it's 01:40 AM.
    With my kind regards
    Olivier Herrbach
    [email protected]

  • How to move Tablespace from One disk group to another disk group in RAC

    Hi All,
    I have 11gR2 RAC env on Linux.
    As ofnow I have problem with disk group. I have 3 disk group which is almost full - 98%. I have added one NEW disk group and want to move some of the Tablespace(TBS) from OLD disk group to NEW diskgroup and make some free space in OLD disk group.
    Can any one suggest me how to move TBS from one disk group to another disk grup without shutting down the instance.
    DB is in Noarchive mode.
    Thanks...

    user12039625 wrote:
    Hi Helios,
    Thanks for doc id but I am looking for noarchive mode solution. becaues I got ORA-
    "ORA-01145: offline immediate disallowed unless media recovery enabled " when run alter database datafile '...' offline.
    Hence I am trying something and findout below steps but not sure how useful it is:
    1- put tablespace offine
    2- Copy the file to new diskgroup using Either RMAN or DBMS_FILE_TRANSFER.
    3- Rename the file to point to new location.
    4- Recover the file.
    5- Bring the file online.
    I had move 240M TBS from OLE to NEW.
    These steps run successfully so I think this is valid for noarchive mode.Hence want to confirm..so inform me please.
    Thanks :)I have doubt in my mind:
    1. You database is in noarchivelog mode
    2. You're taking tablespace offline
    3. Suppose you're moving a file of size 10GB(or any larger filesize) to another disk group
    4. Now after moving the file, you're trying to bring the tablespace online............NOW
    tablespace will need recovery. if the required data is inside the SGA then it is ok. But if the data has been flushed, then?
    if step 2 and 3 has taken significant time, then most probably you'll not be able to bring that tablespace online.
    Regards,
    S.K.

  • HT4847 How do I delete all my information from the I-Cloud?

    How do I delete all my information from the I-Cloud?

    Greetings austinfromdellslow,
    Welcome to the Apple Support Communities!
    I understand that you would like to store your purchases movies on an external hard drive. To do this, first you will need to download your purchased content from the cloud to the iTunes library on your computer. 
    Download past purchases - Apple Support
    Once your media folder is complete with the downloaded content, you can move that iTunes media folder to your external hard drive using the information in the attached article below. 
    Move your iTunes Media folder on a Windows PC - Apple Support
    Cheers,
    Joe

  • Belle is a disaster for the E6: how to move on?

    Many and perhaps most who upgraded to Belle did so because the phone prompted them to perform updates. It is considered to be the responsible thing to do. As with PC's; don't skip updates, it may harm your computer or data.
    There was never any warning displayed as to the impact of the upgrade. For example a reduction in available screen, reduced usefulness or widgets or reduced function of the D-pad, were never mentioned. That was negligent. A backup was made during the upgrade process - giving the false impression that the previous version could be restored. That was misleading.
    Nobody could imagine, unless they were regularly checking news and details on developments at Nokia, that their E6 would emerge from the process horrendously defaced and only half functional. Many E6 users use the phone for work and don't follow trends and developments, and can't be expected to do that. Had they been properly informed, they would not have upgraded. They have the right to get back the product they originally bought and used and the assurance that this will not happen again.
    Belle has a ridiculous UI for a business phone, and much reduced functionality compared to Anna. Belle is a disaster specifically for the E6 because the screen is way too small for all the unnecessary eye candy (monstrous widgets) and Belle lacks important functions that Anna had.
    If anyone from Nokia reads this, please respond. Complaining customers are still customers. Complaining customers are more useful than the ones that walk away in silent anger, because you can learn from them.
    As to how to move on: Getting rid of the E6 and trying to forget about it is one thing, but does anyone consider some form of legal action? After all, when you buy something that has properties A, B, and C, and 6 months later the manufacturer single-handedly decides that the product now has properties C, D and E, to all intents and purposes the product is now defective because it lacks properties A and B.
    For example, if the product were a washing machine ("New sleeker user interface, you can now start it by swiping the door, and the water temperature control is gone, it is now 60 Celcius always for everything because 95% of users find that easy"), and no matter what smallprint there is in the warranty, it would be utterly unacceptable.
    Current N900 and former E6 user regretting Belle upgrade
    Devices owned: 2110, 2110i, Cellular Data Card, 8110, 7110, 6210, 6310i, 6100, 9500, 6233, 5140i, 3109c, N900, E6-00

    @slitchfield: on the mentioned page, it is stated that "Improvements in screen real estate, with slimmer top status bar and optional (in some apps) bottom toolbar, meaning that all phones will have a larger useful display area."
    But on the E6 the bottom toolbar decreases available screen size in most apps, most noticeable in Web browser where the full view has gone. The bottom toolbar is not optional, you can't configure it yourself.
    And: "Homescreen widgets will now come in up to five different sizes (1x1, 2x1, 4x1, 2x2, 4x4) and allow a greater degree of interactivity.", but on the E6 they are in only one size, always with large borders and other visual effects.
    So beware of differences between phones, perhaps some aspects of Belle work differently depending on the type of device.
    "Notes now brings up a white (and AMOLED-unfriendly...) editing screen.": that you can change by switching themes, "Dark Solid for Anna" does a good job. It is a shame that the lines of Notes have gone though.
    When switching themes, I found you have to restart the phone, otherwise the theme doesn't get properly loaded in all apps. Stopping/starting apps is not enough. So when experimenting and loading one theme after another, you may end up with disfunctional combinations of black-on-black and white-on-white, but it may not be due to the last theme. Also you may end up with a good combination that isn't around anymore the next time you restart your phone.
    Current N900 and former E6 user regretting Belle upgrade
    Devices owned: 2110, 2110i, Cellular Data Card, 8110, 7110, 6210, 6310i, 6100, 9500, 6233, 5140i, 3109c, N900, E6-00

Maybe you are looking for

  • DPS Single for small deployment

    Hi all, I'm hoping you can help me figure out how best to go about makeing something happen for a client. I need to get a single folio out, but only to 5 ipads. I know I could just use adobe content viewer, but that looks sloppy and the recipeients o

  • Planning adapter in HAL

    Hi, I have installaed Vignette Integration studio i.e HAL 9.2 version and after that installed hadp 9.2 version. When I open studio, Planning adaptor is available... During installation, it displayed Planning adaptor is compatible with it. Do it need

  • How can I reset my password on my MacBook Pro running mountain lion

    How can I reset my password on my MacBook Pro running mountain lion

  • Airport extreme loses touch

    I have an airport extreme conected to a linksys cable modem and networked to a G4 and an emac both running 10.3. This setup worked flawlessly for 4 years. Then without any changes I could no longer get access through the base station. The network sho

  • Phase Approval error

    Hi folks, When I click on Begin Approval for Phase, i receive a dump error - ERROR: An internal program error has occurred. (termination: RABAX_STATE) Checked ST22, it talks about keywords - "UNCAUGHT_EXCEPTION" "CX_DPR_FATAL_ERROR" "CL_DPR_PHASE_O==