Re: [Q] How to duplicat all data from one DB to another DB
From: SSpiars <sspiars_at_aol.com>
Date: 1996/04/28
Message-ID: <4m051q$oq9_at_newsbf02.news.aol.com>#1/1
Date: 1996/04/28
Message-ID: <4m051q$oq9_at_newsbf02.news.aol.com>#1/1
Set up database links from your production database to your test database and then you can run a script that works like this:
Insert into table1
cola,
colb,
etc...
select
cola,
colb,
etc...
from table1_at_prod
The _at_prod is your database link that points to the production database table.
Shawn Spiars, Senior DBA
American General Life Insurance Co.
Received on Sun Apr 28 1996 - 00:00:00 CEST