Mask the Oracle Database Data


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mask the Oracle Database Data
# 1  
Old 08-22-2012
Mask the Oracle Database Data

Hi,

We have to mask the data that is coming from production environment to Non-production environment. The database is running in oracle platform.

If anybody has generic scripts to achive this task,it would be great if that can be shared with me?

Thank you,
Jayaprakash.
# 2  
Old 08-22-2012
Pls be more specific about what you need to do, data structures, input and/or output data. Do you want to export/import an entire database or just transfer a few tables' contents?
# 3  
Old 08-22-2012
Thanks for your response. We are in the process of identifying the fields those are to be masked. We do not want to export/import the data. There is already a replication process which puts data in the non-production environment. We need to mask some critical fields while replicating into non-prod environment. If you have any scripts already written for this purpose, great if you can share them.

Thanks,
Jayaprakash.
# 4  
Old 08-22-2012
Sorry, no scripts at hand.
What do you mean by "mask"? Drop columns from tables, delete columns' contents, replace it with dummy contents? If so, a small SQL script run after the replication will do...
You might want to insert a filter into the replication process, whatever this looks like.
# 5  
Old 08-22-2012
Thanks for your reply. We need to replace the production data with the manipulated data when it is replicated into non-prod environment. Do you have any such scripts to manipulate the data before it is replicated into non-prod environment.

Thanks,
Jayaprakash.
# 6  
Old 08-22-2012
by masking you mean to encrypt the data so that production parameter are not seen by others
# 7  
Old 08-22-2012
Correct, we need to encrypt the data so that nobody should be able to see the prod data in non-prod env. If you have any such scripts to achieve this,good if you can share.

Thanks,
Jayaprakash.

---------- Post updated at 11:25 AM ---------- Previous update was at 05:23 AM ----------

Any idea how to achieve this?
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problems with fetching data from Oracle database

Here's a database query which looks up the NAME column of PRODUCT table SELECT NAME FROM PRODUCT ; And this query retrieves me the following output SUGAR COCOA HONEY WHEAT CABBAGE CAULI FLOWER Please note the last record CAULI FLOWER contains TWO blank spaces between the two words. ... (4 Replies)
Discussion started by: kumarjt
4 Replies

2. Shell Programming and Scripting

why do we need UNIX shell script to load data into Oracle database

Hello everyone, I am new to shell scripting/ loading data into a database. I want to load data into Oracle database using SQL loader. Can some one please explain why do we need unix shell script to load the data into the database? Also can someone please explain what has to be in that script?... (5 Replies)
Discussion started by: new_prog
5 Replies

3. Shell Programming and Scripting

how to extract the data from database (oracle) and send the output as an .xls file?

Hi, How to extract the data from Oracle database and sent the output data to mails using mailx command with .xls attachement? Here i know how to connect the database using unix shell script and how to use the mailx command in UNIX script But i don't know how to use the .xls format file (i... (1 Reply)
Discussion started by: psiva_arul
1 Replies

4. Shell Programming and Scripting

Need shell script to extract data from oracle database

shell script (4 Replies)
Discussion started by: frns5
4 Replies

5. UNIX for Dummies Questions & Answers

Howto capture data from rs232port andpull data into oracle database-9i automatically

Hi, i willbe very much grateful to u if u help me out.. if i simply connect pbx machine to printer by serial port RS232 then we find this view: But i want to capture this data into database automatically when the pbx is running.The table in database will contain similar to this view inthe... (1 Reply)
Discussion started by: boss
1 Replies

6. Shell Programming and Scripting

Need Shell Script to upload data from Text file to Oracle database

Hi Does any one have any idea on uploading the data using Unix Shell script from text file to Oracle database. Requirement:- 1. Need to connect to Oracle database from Unix Shell script. 2. Need to pick Text file from some location on Unix Box. 3. Need to upload the data from text file to... (6 Replies)
Discussion started by: chandrashekharj
6 Replies

7. Shell Programming and Scripting

unix script to export data from csv file to oracle database

Hello people, Need favour. The problem I have is that, I need to develop a unix shell script that performs recurring exports of data from a csv file to an oracle database. Basically, the csv file contains just the first name and last name will be dumped to an Unix server. The data from these... (3 Replies)
Discussion started by: vinayagan
3 Replies
Login or Register to Ask a Question