You are on page 1of 2

how do u move the code from development to production?

Answer Hi, 0
#1
we can do this in two methods

A. if objects are limited, then


select all of them and
go for Export in Development box and
Import in the
Production box.

B. if objects are numerous then open


the both
repositories (Dev & Prod) in your
development / test server
and select the folder which contains all
the objects and
drag and drop to target Box.

Re: how do u move the code from development to production?


Answer whatever we develope the 0 Ghouse
coding(mapping),throgh import and
# 2 export option in repoitory,the maping
code can be placed in
the form of xml format on the desktop
and it is attached to
mail and will be sent to the teamlead or
reponsibile person

Is This Answer Correct ? 1 Yes 0 No

Re: how do u move the code from development to production?


Answer I support the Answer given by KAMAL, In
# 3 real time though
you have more number of objects, you can
not drag and drop
the forlder across the repositories as
far as I am
concernd. Every organisation will follow
certain deployment
proceures. I am not saying that will not
work, it will
certainly work but that may not be the
procude to follow
when you deploy code from DEV / UAT to
PROD
Re: source table have single column single
record having with single space. load that
source record into trg . trgt having two
columns and the SOURCE TABLE LIKE
COL1 BHANU PRASAD TRGT TABLE
COL1 COL2 IN THAT LOAD THE
RECORD IN THE trgt table LIKE COL1
COL2 BHANU PRASAD HOW ? TELL ME
PLZ
Answer Let our source table name is
# 1 "Name",which is having COL1 and
data in it is BHANU PRASAD (For
easier understanding instead
of space between bhanu and
prasad,lets take a underscore
i.e. BHANU_PRASAD.

Source ----> Exp t/r ---->


target
In the exp t/r take "name" as an
input port only and create
2 out put ports as COL1 and
COL2.
In COL1 give condition
substr(Name,1,instr(Name,'_',1)-
1)

In COL2 give condition


substr(Name,instr(Name,'_',1)+1)

now connect COL1 port form exp


to COL1 port in tgt and same
for COL2, than the out put in
the target table will be as
below:

COL1 COL2
BHANU PRASAD

You might also like