Can we pull data from one cube to another cube

Hi All,
I need to pull the data for a 4 fields from an existing info cube to another cube. Can any one let me know the procedure of how to do this.
Thanks in Advacne

scenario cube1 --> cube2
1) load data into cube1
2) cube1 > export datasource > it creates the ds with 8cube1
3) rsa1 > source systems > myself sourcesystem > replicate datasources
4) cube2 > rt clk > create update rules
5) map the update rules for the 4 fields and activate
6) rsa1 > infosources > search for 8cube1 > create infopackage and load data.
Regards,
BWer
Assign points if helpful.

Similar Messages

  • How can you transfer data from one ipod to another ?

    How can you transfer data from one ipod to another ipod ?

    The geniusbar told me what to do, I understood but there is still a problem for me >:/ It's not showing up though. Like "device."  Nothing is happening, and I tried as soon as I got home. Then after half an hour, then an hour, then 3 hours. My problem is that it's not showing up! It's stuck in recovery mode! There's still like 25% battery. So I have no idea why.

  • How can I transport data from one client to another client?

    How can I transport data from one client to another client? 
    Regards,
    Subho

    hmmm, CTS = cutomizing transport?
    If you have a customizing table, there are still two possibilities.
    1. customize in DEV system and transport
    2. customize right there where you need it.
    this depends on how the maintainance view is built. If it is a simple customizing table and you get not asked for a TR when customizing a new record or changing an existing one, you hit possibility 2.

  • How can I Move data from one column to another in my access table?

    I have two columns, one that stores current month’s data and one that stores last month’s data. Every month data from column 2 (this month’s data) needs to be moved to column 1 that holds last month’s data. I then null out column 2 so I can accumulates this month’s data.
    I understand how to drop a column or add a column, how do I transfer data from one column to another.
    Here is my trial code:
    <cfquery name="qQueryChangeColumnName" datasource="#dsn#">
      ALTER TABLE leaderboard
      UPDATE leaderboard SET  points2 = points3
    </cfquery>
    Unfortunately, I get the following error:
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in ALTER TABLE statement.
    How can I transfer my data with the alter table method?

    I looked up the Access SQL reference (which is probably a
    good place to start when having issues with Access SQL), and
    it suggests you probably need a WHERE clause in there.
    I agree the documentation is a good place to start. But you should not need a WHERE clause here.
    Too few parameters. Expected 1.
    If you run the SQL directly in Access, what are the results? At the very least, it should provide a more informative error message..

  • Can you transfer data from one iPad to another iPad

    Can you transfer data, books and music from one iPad to another .

    You can use iCloud to sync your books and music bought in the iTunes Store, but for anything that you didn't purchased in iTunes Store you must use iTunes

  • How can I retrieve data from one table to another automatic in SQL?

    Hi, everione,
    I am having a big problem, trying to create datebase.
    I have 3 tables: SUPERAVATAR, MASTERAVATAR, MEGAAVATAR.
    - SuperAvatars are heroes in an online role playing gaming. They have an ID, ‘superavatarID’ which contain an UNIQUE NUMBER NOT NULL PRIMARY KEY to identify them.
    A wisdom – ‘trickster’,’conjuror’,’magician’, etc..
    A current owner… who is the user or player of the game and has that Super Avatar– we associate the link to USERID to know the person.
    SuperAvatars can be fathers or mothers of Mega Avatars.
    -MegaAvatars are the children of SuperAvatars…. They also have an ID UNIQUE NUMBER NOT NULL PRIMARY KEY to indentify them.
    A magic power – it can be a ‘Leader’ or ‘Sheep’…
    A ‘parent’ – parent is the number identifying to know to who Super Avatar belongs.
    e.g.
    SUPERAVAT WISD CURRENTOWNER FATHEROF MOTHEROF
    1 Thick 3 1
    2 Mentally Ch. 11 3
    3 Smart 9 2
    4 Genius 16 4
    5 Thick 19
    MEGAAVATARID MAGICPOWER PARENT
    1 MAGICIAN 1
    2 WIZARD 3
    3 SORCERER 2
    4 MAGICIAN 4
    -We see that MEGAAVATAR 1 has a magic power as Magician and his father is ‘1’. ‘1’ identifies the SUPERAVATAR.
    We see SUPERAVATARID…. who has the number ‘1’? the first in the row… who has wisdom – thick and he belongs to the USER with ID number 3.
    -We see MEGAAVATARID… we choose the number 2…. His magic power is as WIZARD… and his father is the number 3.
    We see SUPERAVATARID now… we look up the SuperavatarID 3…. We can see he has a wisdom – GENIUS… who belongs to the USERID 16 and he is father of MEGAAVATAR number 2.
    The list can carry on and never stop.
    I have this Problems:
    We create in this example 3 tables: Users, SuperAvatar, MegaAvatar
    SQL
    CREATE TABLE users(userID NUMBER CONSTRAINT pk_user PRIMARY KEY,email VARCHAR2(50) NOT NULL UNIQUE,password VARCHAR2(15) NOT NULL UNIQUE,subscription CHAR(8) NOT NULL CHECK (subscription IN('ACTIVE' , 'INACTIVE' ) ) );
    CREATE TABLE superavatar(superavatarID NUMBER CONSTRAINT pk_superavatar PRIMARY KEY, wisdom VARCHAR2(19) NOT NULL CHECK (wisdom IN ('THICK', 'MENTALLY CHALLENGED', 'AWAKE', 'SMART', 'GENIUS')), currentOwner NUMBER NOT NULL, fatherOf NUMBER,motherOf NUMBER);
    CREATE TABLE megaavatar (megaavatarID NUMBER CONSTRAINT pk_megaavatar PRIMARY KEY, magicPower VARCHAR2(12) NOT NULL CHECK (magicPower IN('TRICKSTER','CONJUROR','MAGICIAN','WIZARD','SORCERER')), parent NUMBER);
    Now, the 3 tables are created…..
    What happen when we try to insert values to this table?
    In this case we insert to User Table some examples:
    INSERT INTO users VALUES('3','[email protected]','great78','ACTIVE');
    INSERT INTO users VALUES('9','[email protected]','chrisandra)','ACTIVE');
    Now, we insert to SuperAvatar some examples;
    INSERT INTO superavatar VALUES('1','THICK','3','1','');
    INSERT INTO superavatar VALUES('3','SMART','9','3','');
    |
    |
    ‘9’ is the UserID that we already insert to the User table
    What’s the problem?
    We have to insert manually the data from USERID to CURRENTOWNER as we didn’t match or link CURRENTOWNER from SUPERAVATAR Table to USERID from USER Table with a SQL CODE.
    What happen if we have thousands of USERS that they register to this game…? We will never know to how belongs that SUPERAVATAR but if someone do it manually can spend a year.
    I am trying to fix this problem …. I add in SUPERAVATAR TABLE ‘CHECK’ in currentOwner..
    SQL> CREATE TABLE superavatar
    (superavatarID NUMBER CONSTRAINT pk_superavatar PRIMARY KEY, wisdom VARCHAR2(19) NOT NULL CHECK (wisdom IN ('THICK', 'MENTALLY CHALLENGED', 'AWAKE', 'SMART', 'GENIUS')),
    currentOwner NUMBER NOT NULL CHECK (currentOwner IN(SELECT userID FROM users)),
    fatherOf NUMBER,
    motherOf NUMBER);
    ERROR:
    ORA-02251: subquery not allowed here
    It doesn’t work.
    Please HELP, I have exam tomorrow
    thank you
    Desy

    Hallo,
    you can use trigger on table USER and fill the userid in AVATAR.currentowner,
    but i don't understand, how you join these tables ?
    Which user id must come in which column currentowner ?
    Design problem ?
    Regards
    Dmytro

  • Can apple move data from one macbook to another?

    I have a macbook and will be buying a macbook pro. My question is can apple store move all the data from a macbook to a macbook pro?

    Migration Assistant will work, but Setup Assistant is much better. 
    See Using Setup Assistant on Lion.

  • Can we move data from one ITABLE to Another ITABLE

    DATA : T_PR1 TYPE TY_PR OCCURS 0 WITH HEADER LINE.
    DATA : T_PR2 TYPE TY_PR OCCURS 0 WITH HEADER LINE.
    DATA : T_PR5 TYPE STANDARD TABLE OF TY_PR,
           WA_PR5 TYPE TY_PR.
    There is one record in T_PR1 and another in T_PR2.
    I want to move them both into T_PR5.
    When I do as below, it is overwriting the record of T_PR1 and
    it is accepting only one record from the T_PR2.
    T_PR5[] = T_PR1[].
    T_PR5[] = T_PR2[].
    Move does not work here as its structure should be same.
    Is there any way that i can move these 2 records into T_PR5.
    It is necessary for me to use T_PR1 and T_PR2 with header line.
    Any suggestion will be apprecaitaed!
    Regards,
    Kittu

    Hi,
    You can append the contents of both the tables into a work area and then loop through it to move the contents into the third table.
    Hope this helps.
    Regads,
    Deepthi.

  • How can we get data from One Form to Another Form

    Hi All,
    I have 2Forms.I'm calling one form from another form buy using next form button.
    If i press itis opening 2nd form,Simultaneously i have to get the data to the 2nd form.Can any one help me in this.
    Any triggers has to be fire tell me the solution
    Regards
    Siva

    you may have better success over here
    Forms

  • How Can I Send Data From One Pc To Another Using An Ethernet Connection ?

    Hi,
    I would Like to know how to send data ( For example, any String ) from a Server Pc to a Client Pc, Using the same java program installed on both computers.
    [Pc One ( Server ) [ Java Program] ] <----Ethernet--Cable----> [Pc Two( Client ) [ Java Program] ]
    Thanks .
    Edited by: jaysal2490 on Jul 7, 2008 9:45 PM
    Edited by: jaysal2490 on Jul 7, 2008 9:46 PM
    Edited by: jaysal2490 on Jul 7, 2008 9:51 PM

    Check out this tutorial:
    http://java.sun.com/docs/books/tutorial/networking/sockets/index.html
    There are code samples included.

  • Can I transfer data from one iphone to another (but later rather than at the same time)

    I currently have an Iphone 4 that was provided through my company but I am changing employment next month (as well as country) and was hoping to store all my current iphone software and data (hopefully on my computer) and then purchase a new Iphone 4 in which to update with said data.
    If anyone can offer insight in how to accomplish this I would be grateful!

    if the iphone have not been synced with another computer then just sync it with yours
    if it have then you cant syncing it with your computer would then clear the iphone and adding the info from your itunes to it

  • How can I move data from one loop to another?

    I am using LabVIEW to record and display data.  The problem that I have run into is that if I try to collect and display the data all in one loop data points are lost because the loop takes so long to execute.  I decided to break my program into two independent loops and the data is recorded at proper speeds, but now I cannot get the data out of the first loop and into the second loop.

    See my example for one method of how to setup the Queue which Omar suggested. You'll also see many other ways, most of which should be avoided until you get more experience.
    Communicating Between Loops
    Richard

  • How can I transfer data from one iPhone to another iPhone which is already set up?

    I have an old phone that I want to transfer data to. The phone is set up with previous data. How do I transfer current data to it?

    if the iphone have not been synced with another computer then just sync it with yours
    if it have then you cant syncing it with your computer would then clear the iphone and adding the info from your itunes to it

  • How can I transfer data from one phone to another

    I have a damaged iPhone 3 and am trying to transfer data to another iPhone 3.  How can I do that?

    take a look at the link   http:///support.apple.com/kb/HT2109

  • Can you transfer data from one IPad to another?

    I want to get a new IPad and I would like to transfer what I have on my old IPad to the new one, is this possible without a computer?

    You can use iCloud to sync your books and music bought in the iTunes Store, but for anything that you didn't purchased in iTunes Store you must use iTunes

Maybe you are looking for

  • Can't upgrade to 10.6.7 or 10.6.8 for Lion 10.7 what do i do??

    Hello there this is Daniel I hope someone can help me with the following.. I have a Mac Book Pro and when I was getting ready to upgrade to 10.6.7 this happened right after it downloaded of the software-upgrade on my Mac.. http://cl.ly/0n0p423s423z1k

  • InDesign CS5.5 v.7.5 won't open some files because it needs plug in updates, but it won't let me upgrade

    I have InDesign CS5.5, v.7.5.  I'm trying to open a rather large file with lots of images, but it says "Please upgrade plugins/latest version", but when I tried to update it with download 7.5.1 through Adobe Patch Installer, it keeps saying "update i

  • Problems with kde 4

    hi. sorry for my bad english.. mm i have some troubles with kde 4. in my desktop, a square appear and i have no idea about it. but it occur sometimes, not always. what could be?

  • Data missing under J2ee monitor templates in RZ20

    Hi, We are trying to setup Central monitoring from solman,registered ccm4x and ccmsr agents poining to SOLMAN, The J2EE monitor template does not show data related to "APPLICATINS" "LOG FILES",it is blank  locally ,Is anything else required for getti

  • Project locked permission madness

    OK, I reformatted my entire drive (I was having all kinds of crashing and preference corruption and got fed up). Anyway... I then restored the contents of the old Movies folder (From Time Machine) to the newly formatted drive with new accounts (and n