How to move a schema from one database to another on ASM?

Hi All
I have a schema in database A on ASM and I want to move the complete schema to database B on ASM . Both databases are on RAC and on the same server.
Please tell me the steps how to do it or if there is a script to do it.
Thank you.

There is nothing special which you need to do for ASM instance. In this case too, you will be required to use export/import utility to do the same.
Cheers
Amit
http://askdba.org/weblog/

Similar Messages

  • How to move a schema from one databes to another on ASM?

    Hi All
    I have a schema in database A on ASM and I want to move the complete schema to database B on ASM . Both databases are on RAC and on the same server.
    Please tell me the steps how to do it or if there is a script to do it.
    Thank you.

    With the same way on single instance, through utilities like exp/imp, expdp/impdp or insert as select through database link.
    Asm can't cause interferance in this task.
    Regards,
    Rodrigo Mufalani

  • How to move a schema from one tablespace to another

    I created a new user in a new Tablespace, Then export current user and import to new user(in new tablespace), but I found out that it was stored in previous Tablespace.
    How can I move data to new tablespace?
    Thanks
    Soheil

    I created a new user in a new Tablespace, Then export current user and import to new user(in new tablespace), but I found out that it was stored in previous Tablespace.
    How can I move data to new tablespace?
    Thanks
    Soheil Soheil,
    Did the data make the transfer to the new tablespace or was it reimported vack into the old tablespace and never made it ot the new tablespace? Are the two users identified by the same name or different names? Did you try to specify which tablespace to import into or did you just use the fromuser and touser parameters? You can try this too:
    1. revoke access by the 'old' user to the 'old' tablespace (alter user <user> quota 0 on <old tablespace>
    2. grant access to the 'new' user on the 'new' tablespace (alter user <user> quota unlimited on <new tablespace>)
    3. point the 'new' user to the 'new' tablespace (alter user <user> default tablespace <new tablespace>.
    Then do the import. Then alter the default tablespace back to USERS or whatever if necessary. (thanks to Rita Kirby for this one)

  • How to move a report from one account to another account

    Dear all ,
    How to move a reports from one account to another account.
    These are reports sent automatically. Unfortunately, I do not know where to find them and how to export to another account.
    Puru

    Hi,
    You can use the Transaction SCC1 to move the data from One Client to Another Client for a Client dependent table.
    The data should be present in a Transport and you can import to Transport to any client using SCC1.
    Contact the Basis team to know how to use SCC1.
    Regards,
    Aj

  • OpenScript: 1.     How to move the scripts from one location to another location. in OpenScript; Copy, paste or Import, export

    How to move the scripts from one location to another location. Copy, paste or Import, export

    Both way you can do.. Difference is - if you copy paste to another folder script dependencies will not move with the same( ie Assets added), whereas if you export and import the script all dependencies will be correlated automatically

  • Move a procedure from one database to another database

    Hi all,
    I have a procedure belonging to a schema in one of the databases in a server (say host A).
    I have a new server (say host B) and I have installed RDBMS and have created a database.
    Now, I want to move that particular procedure (in host A) to the new schema of a database in host B.
    What are the steps to be followed? please help me out.
    Note: It is not moving a procedure from one database to another, infact from one host to database in another host.
    Thanks,
    ora_sri

    The steps are:
    1. Pay more attention to your instructor in school.
    2. Do your web searches using google.com so as not to ask other people to help you cheat on your exams.
    3. Apologize to your instructor.
    How do I know you are a student?
    1. No version number.
    2. No such thing as host A and B
    3. If you had ever written a procedure in your life you would already know the answer.
    So let us add #4 to the first list.
    4. Write a stored procedure, save it to your hard disk, and then stare at the file you created until inspiration strikes you.
    Sorry for being harsh here but I spent 10 years teaching Oracle at the University of Washington and I failed students
    who did what you did. Even asked that one be expelled. So I am doing you quite a favor and hope you learn the lesson
    I am trying to teach for your own good.

  • How to move iMovie project from one computer to another

    I have been working on an iMovie 09 project on my desktop at home.
    Now I want to work on the same project on my computer at work.
    How can I move the project from one computer to another?   What I've already tried was to make a duplicate copy of the project and then use a thumb drive to move that to another computer.   It didn't work.
    Thanks for your help.

    Hello James Snedeker,
    After reviewing your post, it sounds like you want to move a file to another disk. I would recommend that you read this article, it may be able to help the issue.
    iMovie: How to Save Projects to Another Hard Disk
    To copy an iMovie project to another disk:
    1. Quit iMovie if it is open. 
    2. Locate the project folder in the Finder.
    3. Drag the project folder to the other disk.
    Note: You must move the complete project folder, intact, to the other disk in order to successfully copy the project. The project folder has the same name as the project listed in the iMovie window. This folder includes the iMovie project file, as well as a Media folder, which contains all of the clips associated with this project. If you don't copy all of these items, the project may no longer be readable in iMovie.
    Once you have copied the project, try opening it in iMovie to ensure that it copied to the other disk successfully.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Simple: How to copy a Table from one Database to another?

    I already know how to do it by creating an identical table and then inserting the Data.
    Like so:
    SET IDENTITY_INSERT dByDtMinusC5 ON
    INSERT INTO [DB1]..T1 ([Id], [HbyD] , [K] )
    SELECT [Id], [[HbyD]]] ,[K] FROM [DB2]..T2
    As you can see I need to have T1 in order to copy T2 into DB1. Is there any way that I could auto create T1 and copy T2?
    There are so many forums in sql server Category, I hope I posted in the right one :0 . We need tag system for forums.   

    Hi Bhupinder,
    According to your description, you want to copy a table with Primary keys from one database to another database.
    As per my understanding, I think the best method is use Transfer SQL Server Objects Task in SQL Server Integration Services. The Transfer SQL Server Objects task transfers one or more types of objects in a SQL Server database between instances of SQL Server.
    Server roles, roles, and users from the specified database can be copied, as well as the permissions for the transferred objects. Indexes, Triggers, Full-text indexes, Primary keys, Foreign keys can also be copied.
    To use the Transfer SQL Server Objects Task, we should create a SQL Server Integration Services Project in SQL Server Data Tools, then drag a Transfer SQL Server Objects Task to Control Flow pane. Specify SourceConnection, SourceDatabase, DestinationConnection
    and DestinationDatabase for the Connection, select the table in the ObjectsToCopy category, then change CopyPrimaryKeys to True and the other corresponding properties in the task.
    References:
    Transfer SQL Server Objects Task
    Transfer SQL Server Objects Task in SSIS 2008 R2 With Example
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Trying to move a users from one database to another gives error

    When I try moving a user from one database to another I get an error, but one some PC's installed with EMC, gives no problems. So what could the the issue here, I tried googling, but came out without any solution. Exchange 2010 sp3, EMC on Windows 7 pc.
    The error message is:
    The move request for user is invalid. The user's Active Directory identity doesn't match the mailbox identity in the
    move request. It was running command "Get-MoveRequestStatistics -identity.....

    Is this 1 specific mailbox or any mailbox? Things to consider:
    Make sure that your Exchange management tools are running the same build as your Exchange server (2010 SP3 RUx). 
    Try using the Exchange Management Shell and typing Set-ADServerSettings -ViewEntireForest $True
    You might need to use the RUN AS ADMINISTRATOR when open Exchange tools
    Try running Clean-MailboxDatabase against each DB -
    http://technet.microsoft.com/en-us/library/bb124076(v=exchg.141).aspx
    Review and then Remove old move requests
    Try mailbox repair request -
    http://technet.microsoft.com/en-us/library/ff625221(v=exchg.141).aspx

  • How to move an instance from one activity to another

    Hi all,
    Is it possible to move an instance from one activity to another using an external process? Is it possible to do this with PAPI and pass parameters to the instance in order to determine the instance's flow?
    Regards

    Yes it is possible using PAPI. I have just used PAPI to create instances . I have not tried the requirement which you want. But as per my knowledge it can be done.
    Good Luck
    Right Chord

  • How to Add Sales order from one database to another database

    Hi All,
    I am trying to add sales order with sales order object.
    I have completed connectivity from one database to another database.
    but i am unable to post sales order with orders object.
    My code is
    ObjSales = objMain.objUtilities.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                ObjSales.DocDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.DocDueDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.TaxDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.CardCode = "C0006"
               ObjSales.Series = 92
                ObjSales.PaymentGroupCode = 3
                ObjSales.Comments = "vivek"
               ObjSales.Lines.Add()
               ObjSales.Lines.SetCurrentLine(1)
               ObjSales.Lines.ItemCode = "5127"
               ObjSales.Lines.Quantity = 100
               ObjSales.Lines.UnitPrice = 10
               ObjSales.Lines.WarehouseCode = "01"
                ObjSales.Lines.TaxCode = "0"
                ObjSales.Lines.DiscountPercent = "0.00"
                ObjSales.DocTotal = 1000
                 If ObjSales.Add <> 0 Then
                   objMain.objApplication.SetStatusBarMessage("Sales or Not Posted", SAPbouiCOM.BoMessageTime.bmt_Short, True)
                   Exit Sub
                else
                  objMain.objUtilities.ShowSuccessMessage("Sales Order Posted successfully")
                End If
    The above code is executing successfully.But the Sales order is not getting added.
    Thanks in advance.

    Hi Vivek,
    If the code you posted is not throwing any errors, then the order really does get created. Apparently just not to both databases, am I correct ?
    vivek.Y wrote:
    > I have completed connectivity from one database to another database.
    That means that apparently you have not gotten this bit right.
    Generally speaking if you want to create an order into two databases, you first need to connect to both databases and create separate order objects for each database. So you need to do this bit twice; once for each database. Something like this:
    ObjSales1 = objMain.objUtilities1.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    ObjSales2 = objMain.objUtilities2.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    Then at the end you also need to add both objects separately:
    If ObjSales1.Add <> 0 Then
    etc.
    If ObjSales2.Add <> 0 Then
    etc
    Good luck,
    Johan

  • How to copy the data from one database to another database without DB link

    Good Day,
    I want to copy the data from one database to another database with out DB link but the structure is same in both.
    Thanks
    Nihar

    You could use SQL*Plus' COPY command
    http://technology.amis.nl/blog/432/little-gold-nugget-sqlplus-copy-command
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14357/apb.htm#sthref3702
    Edited by: Alex Nuijten on Sep 16, 2009 8:13 AM

  • How to Copy the PLD from one database to another

    Dear Members,
       i have designed the  PLD for Purchase Order, i want to copy the particular PLD into another Database.
    i tried to copy the PLD from one database to another through copy express.. i copied the PLD sucessfully. But the problem is,it copies all PLD's from one database to another. i want only the Purchaseorder PLD has to be copied in to another database.any body can help me in this regard.
    With Regards,
    G.shankar Ganesh

    Hi,
    select * into A1 from RDOC where Author !='System'
    select *  into A2  from  RITM   where Doccode  in (select Doccode from A1 )
    select * from A1
    select * from A2
    sp_generate_inserts 'A1'
    sp_generate_inserts 'A2'
    you will get Insert scripts of A1 and A2 tables .After that You 'll  Replace A1 to RDOC and A2 to RITM.
    So that you can RUN this SQL srcipts any where (In any Database)
    but First u have to run sp_generate_inserts  Storeprocedure(from websites) .
    drop table A1,A2

  • How to move Profit centers from one hierarchy to another.

    Hi All - In Standard hierarchy in our Profit center accounting, we have in KCH6N as below and doing posting to these successfully.
    1. C1470 - 000001470 Profit center
    2. C1472 - 000001472 Profit center
    Now for some Business reason, we need to temporarily move above said profit centers in their hierarchy to another one C1410. So Users could post a journal entry and then move the profit centers back to their current location.
    After we make the change, It should be
    C1410 - 000001470 Profit center
    C1410 - 000001472 Profit center
    Can you please suggest me how to move the Profit centers from one hierarchy to another. Can you please let me know how to make this change.
    Thanks

    Hi Hoysala,
    This is not the best practice, to change profit center hierarchy node to another node, just for the sake of JV.
    If you have to allocate a cost/revenue from one cost center/profit center to another, I would advise you to use manual allocation/distribution  process, as per your business reason (Profit Center Allocation/Cost Center Allocation), rather than changing hierarchy nodes.
    You can use 3KE5-Execute Actual Assessment and 4KE5-Execute Actual Distribution from Profit Center 1470/1472 to the profit center under node C1410, without moving profit center from one node to another.
    http://veritysolutions.com.au/2012/07/03/overhead-allocations-in-sap-new-gl/
    Regards
    Javed

  • How to move CRM_UI_FRAME component from one box to another box

    Hi All,
    Need help about this task.
    Background:
    - CRM Dev Box
    - CRM QC Box
    - CRM Prod Box
    Problem:
    - CRM_UI_FRAME component on the QC Box is not working properly. When we are going to the BSP Workbench, an error comes out that there is an unclosed tag; '>' or '/>' expected entity: "<<document>>" Offset : 0000003376 Error Severity: error.
    - BSPWD_BASICS/WorkAreaHostViewSet is not loaded
    - This problem never occurs on both Dev and Prod Box
    Our Solution:
    - To copy the whole CRM_UI_FRAME component from Dev to QC
    Our Question
    - Is the solution possible?
    - If it is, how could we transfer/copy the whole CRM_UI_FRAME or any component from one box to another box
    - Could we just attach this to a transport? Or is this a BASIS task?
    - Other suggestions on how to do this?
    Thanks in advance!
    Regards,
    Marc

    Hi,
    Please ensure to read note #[1540435 |http://service.sap.com/sap/support/notes/1540435]and to decide which update strategy/scenario you
    need and in the "[SLD Planning Guide|http://www.sdn.sap.com/irj/sdn/nw-sld?rid=/library/uuid/e0a1a8fb-0527-2a10-f781-8b67eab16582]".
    You should ensure that your CIM Model and CR Content on your SLD are updated as
    per SAP note [669669 |http://service.sap.com/sap/support/notes/669669]on both SLDs.
    Regards,
    Aidan

Maybe you are looking for

  • How can I open links from mail in the background?

    I receive a lot of digest emails with lots of links. I would like to be able to click all of the links in a given email, have Safari open those pages in the background, and then when I'm done selecting the links I can switch to Safari and read them a

  • Final Cut Pro with Time Machine

    I'm interested in attaching a USB drive to my Final Cut Mac Pro so that I can use Time Machine--not to back up my media drive, just my boot drive. But I've heard that you can't control when TM does its backing up so I'm concerned about it impacting s

  • Urgent - Idoc type and the Message type

    Hello Its very urgent. I want to know the basic idoc type and the message type used for EDI 894 transmission (Delivery / Return Base Record). Please respond at the earliest. Thanks in advance

  • 3.0ghz model speed vs. 3.0 ghz dual-core MacPro?

    Anyone have a "speed-feel report" on the 3.06gh iMac vs. a 2007 MacPro Xeon 3ghz tower? I'm not looking for benchmark numbers, I'm interested in how "snappy" the new 24-incher with maxed out 4gb RAM feels compared to a 4gb MacPro. I normally always b

  • Problem when connecting sql server 2005 using SQL developer

    Hi, I installed Sql developer and I am trying to connect sql server 2005 using windows authentication. I had previously the SSO folder problem saying the path is missing in java.library.path. I copied the SSO folder into Sqldeveloper directory. I cha