I'm an amateur and need your help in figuring this out. I have been asked to connect to a prod db from non-prod env., and download a table from prod db to non-prod env.
I was able to connect to the prod db and then run a simple query as below.
and I got the result with count and lot of other text relaed to Oracle product.
Can you please advise as to how would I download an entire table from the prod_db and load into a non_prod db under my schema ? Basically, below are what I need to do.
connect to prod_db
download/unload a table from prod_db
load the same table into another non_prod db under my schema
then compare myschema.table with system_schema.table in non_prod db
then replace system_schema.table with myschema.table
I will be working on how to figure all of above but since I'm running short on time, would like to get some help
Thanks in advance
Arun
Last edited by rbatte1; 09-12-2016 at 10:50 AM..
Reason: Converted to formatted number-list
To keep the forums high quality for all users, please take the time to format your posts correctly.
First of all, use Code Tags when you post any code or data samples so others can easily read your code. You can easily do this by highlighting your code and then clicking on the # in the editing menu. (You can also type code tags [code] and [/code] by hand.)
Second, avoid adding color or different fonts and font size to your posts. Selective use of color to highlight a single word or phrase can be useful at times, but using color, in general, makes the forums harder to read, especially bright colors like red.
Third, be careful when you cut-and-paste, edit any odd characters and make sure all links are working property.
My ORACLE has become a bit rusty, but if I remember correctly, you can, from a DB you're connected to, reach out to another DB and select/query/copy data without going via spool/download etc.
Or, how about connecting to the dev server, setting up a database link and issuing:-
Code:
CREATE TABLE dev_table AS SELECT * FROM source_table@my_db_link ;
This would drag the table direct between the two, negating the need to export/import.
Robin
This is certainly a valid way of moving data from one database to another. The only downside is that you would
need to manually created indexes, constraints and triggers. Once the table gets created you can also use a merge
command to update the local table from a remote table.
In this case either you have a directory that is visible to both databases and both databases have a database directory
pointing to the same OS directory, or you need to move the file yourself.
I am always curious when someone asks an Oracle question on a website more devoted to OS questions/issues.
While this is a great site there are other Oracle specific forums that are also worth looking at.
This User Gave Thanks to gandolf989 For This Post:
gandolf989 - thanks for the insight, I was looking at accomplishing this through a shell script .. that is the reason I posed in this forum. Let me try the options you all suggested. Thank you again.
need to create shell script to read the table's name from file and connect SQL SERVER using isql (odbcunix)
i 'm able connect to database with below command line syntex but i could not get working in shell script with SQL and storing the row count in variable.
isql -v DSN USERNAME PASSWD
... (6 Replies)
we are getting files on daily basis.we need to process these files.
i need a unix shell script where we can count
1-The no of files processed
2-No of data/record processed for each files.
The script should log these details into a database table. If there is any error while file... (3 Replies)
Hi,
I have a video script. it has embedded Youtube videos. I want replace them downloaded version mp4 videos.
this script has a mysql table. I want search "url_flv" field on table a youtube link if has a youtube link I want download it this command.
I want extract uniq_id field for file... (2 Replies)
Hello this is my first post in this forum , I dont want to be unhappy..
I am writing one script but facing difficulty to find the latest file with some new pattern
My requirement is
1. The file is coming like "ABCD-23220140303" at FTP server once in a week.
2. script will run on daily... (3 Replies)
Hi !
I am just wondering shell script to download data from ftp...
I have text file containing ftp address...looks like this
ftp://site...../filename.xyz
ftp://site...../filename.xyz
ftp://site...../filename.xyz
ftp://site...../filename.xyz
script has to read ftp address and... (8 Replies)
Hi Experts,
can guide how we can Update a Database Table using a txt file source Using
Unix Shell Scripts.
What are the Cron Jobs codes can written to Update DB table.
txt file contains record like data.
US 09/03/2012 User DocType DocID.
these above feilds in txt files need to be updated in... (4 Replies)
Hi guys,
I'm new on this forum and on UNIX. Can somebody help in writing a script to download a file from an FTP server and validating if there is a file to download. If there is a file, I would send it to a mail recipient and if not I would generate an error log.
Thanks in advance!:D (1 Reply)
I am new to shell scripting and need to write a program to copy files that are posted as links on a specific url. I want all the links copied with the same file name and the one posted on the webpage containing the url onto a specific directory. That is the first part. The second part of the script... (2 Replies)
Hello all
i am working on creating shell script to download files daily
example : file12_10_2009.txt.gz
next day this file will be file13_10_2009.txt.gz
and so on..
i need help to know how to download this incrimental date files daily ?
regards (1 Reply)
Discussion started by: mogabr
1 Replies
10. Post Here to Contact Site Administrators and Moderators
Where can I download the VTC - Unix Shell Scripting Advanced complete video.
I don't know in which thread I should post this question.Plz help me out, or just tell me the link in the reply to this post.
Thanks in advance. (0 Replies)