copy data from a remote database at regular intervals

I have this remote database A and B. DB database has 10 views and B DB has 10 tables. I must get out data in a DB A view and load into tables in DB B on a regular basis. How to make this work?

Thank you

You can write a procedure that inserts into the tables in database b. and create a task that executes this procedure at regular intervals.

See this

http://www.oradev.com/dbms_scheduler.jsp

G.

Tags: Database

Similar Questions

  • How to select data from a remote database table?

    Hi friends,

    I think I've seen before a sqlplus program that can select data from a remote database table?

    Witnessed: IP, SID, PORT

    The following is correct?

    (I am connected to a local database)
    SELECT COUNT (*) IN THE EMP@IP:SID/PORT;


    Thank you very much


    Ms. K

    Salvation;

    I think, that you can create dblink wihtout any problem yet, it's a PROD. After your selection, you can drop dblink

    Respect of
    HELIOS

  • DISPLAY DATA from a REMOTE database

    I use Cold Fusion 5 and Oracle 8i (DB).

    You want to DISPLAY DATA from a REMOTE database.

    I'm familiar with synonyms and links to the database. I've set up a link of database
    access to the machine as the correct user (owner of the procedure). I can run

    "Select * from table1@machine1" and works well in SQLPLUS.

    But when in CF call for select statement the error above is Occur-> ORA-02041: customer database did not begin a transaction


    no idea...? Please

    Using ODBC or native drivers? If ODBC, what version? According to Metalink, Oracle ODBC has a bug that has been fixed in 8.1.5.5.0 the description of the attached problem resembles yours.

    Phil

  • copy data from one comprehensive database to another in the same windows server

    Hi all

    We intend to migrate or copy the complete data of a database which is in 11.2.0.1.0 enterprise edition for 11.2.0.1.0 in the standard edition.

    Two oracle homes are even windows Server.

    According to my knowledge, we can do this:

    1. create a database in 11.2.0.1.0 in standard edition and migrate by datapump

    2 tablespaces transportable datapump option.

    3 Rman cloning.

    Is it possible to lower the db in 11.2.0.1.0 enterprise edition in a uniform State... copy the file pfile, backup of the controlfile, data files and paste in 11.2.0.1.0 in the standard edition home... After you re-create the control file and db startup?

    You cannot clone a database of EE in a self a.

    The only option you have is option 1.

    Refer to support note 465189.1 if you want more details

  • copy data from one database to another

    Hello

    I want to copy data from one database to another.

    I have two patterns such as

    dev1/dev@ORCL
    DEV2/dev@DCEL


    I have same tables dev1 and dev2 (tables)
    but I have not given in dev2 (tables).
    now, I want to copy dev1 (tables) in dev2 (tables).

    You can also use the database link:

    select * from dev1.emp@orcl;
    

    What database are you connected to?
    You must create and use the links in the database for all other databases.

    For example if you are connected to the database A and to retrieve data from database B, you must create a connection of database in base B

    create database link B connect to  identified by  using 'B';
    

    Then you can retrieve data from database B with

    select * from [yourschema.]yourtable@B;
    

    This will work only for tables that are visible to the user that you used in the definition of database link.

    Published by: hm on 10.08.2011 22:15

  • Copy data from one schema to another. Reopen the Question

    Hello

    I had asked this question earlier to copy data from tables of one schema to another in the same database using the database link. In my previous post have mentioned below.
    Re: copy data from one schema to another.
    Now I am faced with the question for the remote copy of database

    I have created a DB connection between my local system and the remote database. with the chain of connection as shown below
    CREATE THE DATABASE PUBLIC LINK "MERU_DEV_LOCAL_DEV".
    CONNECT TO MERUDEV IDENTIFIED BY MERUDEV WITH THE HELP OF "MERUPROD";
    In the above script
    LOCAL DEVELOPMENT scheme IS
    REMOTE schema is MERUDEV
    I try to copy remote database to my local database tables using the script below.
    network_link DEVELOPMENT impdp = schema MERU_DEV_LOCAL_DEV = MERUDEV remap_schema = MERUDEV:DEVELOPMENT TABLE_EXISTS_ACTION = REPLACE
    But the copy of the table does not occur. What could be the problem? Please suggest me or do I need to modify the script

    Thank you
    Sudhir

    You can:
    -monitor the BONE with ps - ef
    -monitor data pump: jobs are dba_datapump_jobs and dba_datapump_sessions
    -monitor with logops: v$ session_longops

  • Composite planning form, copy data from one tab to the other?

    This is something I've heard of someone who did but have not actually seen. The requirement is to copy data from an existing entity to a new entity as a means of values seedlings early in the budget cycle. I was thinking about a form of 'source' and a form of 'target' within a composite shape. A calc would make a copy. After copying the Scheduler can manually adjust values, or type values in the accounts that the source had no data.

    If someone did please let me know how you did and what looked like the calc.

    Thank you!

    FA

    Hello

    Yes, this can be done in several ways. The calc script would be similar to what is mentioned above. But in regards to the copy, you can also create a menu on the source form set a rule of company on the menu and start the copy that also offer users the ability to choose several invited outside of the entity if necessary.

    Thank you

  • Not able to copy data from forms

    We are not able to copy data from forms and paste it in the local machine (Notepad or excel).

    Even if the copy is enabled when you right-click after selecting data, we are not able to paste it in Excel or Notepad

    Apps Ver.R12

    Kind regards.

    PL see if these MOS Docs can help you

    Copy / paste does not work in forms (Doc ID 944963.1)
    Impossible to copy/paste in forums 12.0 or 12.1 (Doc ID 1088148.1)

    HTH
    Srini

  • Copy data from one table to the new table

    Hello

    I copy data from columns of a table to another table and my query is
    INSERT INTO TestTable (empno, empName, deptno)
    SELECT empno, empname, deptno
    WCP

    and it works fine but I want to insert a data column in testTable based on emp.deptno
    as if emp.deptno = 10 it will add 1 to the testtable.class column,
    If emp.deptno = 20 it will add 2-column testtable.class,
    If deptno = 30 it will add 3 to the testtable.class column,


    TestTable structure is
    EMPNO NUMBER (20)
    ENAME VARCHAR2 (50)
    DEPTNO NUMBER (20)
    CLASS NUMBER (20)

    Can someone please help me write this procedure.
    Thank you

    You can use a case statement as

    INSERT INTO TestTable (empno, empName,deptno,class_column )
    SELECT empno, empname,deptno, case when emp.deptno=10  then 1
                                       when emp.deptno=20  then 2
                                       when emp.deptno=30  then 3
                                  end
    FROM emp
    

    See you soon
    Katia

  • copy data from an frm another form using one-third of

    Hi all

    I have three forms f1, f2, f3

    in f1, I have order_no, value, address
    List of F2 to order_no based on formula 1
    F3 F1 for sale

    I want a button on f2, if I select a particular order no and press the button copy data from f1 to f3

    Please guide

    Thanks and greetings
    Vikas Singhal

    Hi Vikas,

    Then try the global variable way. In the n "f2" (all orders with the status of the list), in the WHEN BUTTON PRESSED trigger, assign the command not to a global variable.

    :GLOBAL.Str_Sales_Order_No := :.SALES_ORDER_NO;
    

    and then call the form of the sales invoice.

    and in the One TIME-NEW-FORM-INSTANCE trigger, get the values from the order to the sales invoice to use a SELECT INTO statement.

    SELECT SALES_ORDER_NO, ORDER_DATE, ............ INTO :SALES_INVOICE.ORDER_NO, :SALES_INVOICE.ORDER_DATE, ......... FROM SALES_ORDER WHERE SALES_ORDER_NO = :GLOBAL.Str_Sales_Order_No;
    

    Kind regards

    Manu.

    If this answer is useful or appropriate, please mark. Thank you.

  • How to copy data from one hard drive to another after the upgrade?

    I have a HP e9220y, and I recently bought a new hard drive for it. There is nothing wrong with the former, but this one has a 64 MB cache and 7200 RPM so I hope it will be a little faster. I installed it and it works fine, but I want to copy all data from the old disk to the new so I can start everything off the faster hard drive and I seem to have a bit of doing wrong. I can't just copy and paste because of the Windows system files that are used. And last night when I set up Windows backup, and went to bed, when I thought it that Windows has recovered from a stop unexpected, rebooted, and only 2 GB of data saved obtained.

    What is the best way to move all the data from the old drive to the new drive, make it the default C: drive and move partitions system and factory_image as well? Thank you!

    Please read this link to another post made by Big_Dave and myself

    http://h30434.www3.HP.com/T5/desktop-hardware/hard-drive-imminent-failure-problem/TD-p/438567

    (1) If your old drive and the new drive is Seagate or Western Digital, then free House with their cloning software.

    (2) before starting the clone process, I found best to perform a disk cleanup and defragmentation.

    Cloning software to copy the two partitions. Example:

    Old drive 250 GB formatted to 232 C: created 220 and 12 GB D:

    New 1000GO drive formatted to 931 GB created 919 GB C: and D: to 12 GB

    The "Seagate disc Wizard" cloning software will let create you a clone automatic or manual partition resizing.

    The two modes to offer an overview of the actions before commit you. The manual on this page of Seagate (PDF) is 68 pages.

    After the cloning process he complete, all you have to do is swap on the disks. Besure to connect your new disc on the original motherboard SATA port.

  • read data from a SQL database

    Hi all

    who can I load data from a database, based on a specific query and data in a string or an integer in cascades please give example

    Thank you

    for example first element of data

    // dd
    data[0].dd
    data[0].mm
    etc...
    

    If you put the data to GroupDataModel for example. Then you can access it with ListItemComponent like this:

    ListItemData.dd
    ListItemData.mm
    etc...
    
  • How to use refcursor type returned from the remote database in the local database

    Can anyone say is how they use the refcursor use type returned from remote database in the local database using dblinks.

    See MOS ID 750126.1 doc ORA-24338 when trying to return a Refcursor over a database link.

  • Can I copy data from a VBScript script points?

    Hello

    If I have a 2D - axis in VIEW space, I can copy the data points to a new channel by clicking on the button ' copy of flags Data Points: Is it possible to have the same features of a VBScript? I can set and remove the flags, but I can't find a way to copy these flags.

    This is the key what functionality I want to automate my script

    Thank you

    Lucas

    Hi Lucas,.

    Define DIAdem VBScript indicators used the command ChnFlagSet. But there is no command in VBS to remove or copy the part with indicator of the curve. So I suggest you use the position of the cursor and read the x value of him, after that, you can find the following value in the channel (use PNo). If you have a box and two coursor one left and right to read x 1 (left) and x 2 (right). With this coordinates use the DataBlCopy command to copy data between the coursors to a new channel.

    If it's difficult, you can also use CHF to search for what is the value of a channel is reported and copy it to a new channel. Doing this, you first need to flag values.

    For example in this topic, you can also watch "Automatic Anzeige harmonischer offer" in the Finder for example DIAdem

    I hope this helps.

    Concerning

    TomBaum

  • Datacopy do not copy data from one to the other in a sparse dimension.

    Hi I m using the following script data copy of Act scenario to the scenario Fcst1, but I can't recover the data after it's done. I understand that datacopy should new blocks if necessary to copy new data. Is - this datacapy cannot copy data if there is Fcst1 blocks already created for this intersection?

    Please help, I don't have any ideas to the left, I can't make a datacopy!

    ESS_LOCALE English_UnitedStates.Latin1@Binary
    UPDATECALC OFF SET;
    SET MSG SUMMARY;
    SET CLEARUPDATESTATUS AFTER;
    SET CALCPARALLEL 3;


    SET CREATENONMISSINGBLK


    Fix (@relative("Income_Statement",0),
    "FY09",.
    @Relative("Q1",0),
    'Local_Cur', 'USD')

    / * Copy the forecast data of the forecasts for the month - Jan, Feb and March Act * /.

    ClearData "Fcst1";

    DATACOPY 'Act' to 'Fcst1 ';

    ENDFIX

    CREATENONMISSINGBLK OFF SET;

    Yes, DATACOPY does not support dynamically calculated members. It's a pain.

    Without changing your code too, could do you:
    DATACOPY ActChild1 to TransCanada.
    DATACOPY ActChild1 to TransCanada.

    ↑ This will take care of creating block.

    Then:
    FCST = ActChild1 + ActChild2;

    ^ This should work without the parameter CREATENONMISSINGBLK DEFINED as two DATACOPY instructions will take care of that.

    Kind regards

    Cameron Lackpour

Maybe you are looking for

  • How do I return Thunderbird?

    I unplugged my calculation because of lightning and when I re connected, Thunderbird has completely DISAPPEARED and he asked me if I wanted a new account with. Gandi.com or something like that

  • Mac Pro 2008 no bootable media. No keyboard.

    It doesn't matter if the disks are installed or not the same message keeps popping up. So I know the USB ports work, but it does not recognize the keyboard mouse power. I even tried the keyboard pc and nothing. No boot camp is installed either. It co

  • Find the bold, italic and underline the character of a string

    I have a VI to find bold, italic and underline the sequence of character in a string, but it is very slow.  I want to speed up this VI, an idea? Jean-Marc

  • IBRD read hexadecimal data

    using Bird reading data of the curve in SONY/TEK_370A test instrument, but the result is not correct. According to the Bird, the buffer is defined as type string, but the curve data are hexadecimal. CAN IBRD function hex reading using the buffer of t

  • XenApp 6.5 RemoteScan works do not with proprietary software

    Hello I'm here to kill me... Having a few issues with RemoteScan on Xenapp 6.5 and my business software develops. We use RemoteScan for years and now that our software is built on a 64-bit platform we are not able to analyze in the software. Here's a