Sei sulla pagina 1di 2

1)look for functions of DS in pdf page10 or 11

2)look for upgrading DS version in page15


3)look for performance tuning steps page16

7. I developed 1 job with 50 stages, at the run time one stage is


missed how can uidentify which stage is missing?
A)By using usage analysis tool, which is available in DS manager, we
can find out the what r
the items r used in job.

3. I have some jobs every month automatically delete the log details
what r the stepsu have to take for that
A)We have to set the option autopurge in DS Adminstrator.

4. I want to run the multiple jobs in the single job. How can u handle.
In job properties
A)set the option ALLOW MULTIPLE INSTANCES.

10. If a job locked by some user, how can you unlock the particular
job in DS?
We can unlock the job by using clean up resources option which is
available in DS Director.
Other wise we can find PID (process id) and kill the process in UNIX
server.

4)cdc change data capture done by


Ans)1.timestamp on rows
2.version numbers on rows
3.status indicator on rows
why cdc is done?
Ans) to replicate in DB,storage
comparision with target
full rebuild of target
Stage in DS called DATASTAGE CDC for SQL server

Ans) CRC32 is a C function in the Transformer function list.


It takes an input string and returns a signed 32 bit number that acts
as a digital signature of the input data

When a row is processed and becomes existing data a CRC32 code is


generated and saved to a lookup along with the primary key of the
row. When a new data row comes through a primary key lookup
determines if the row already exists and if it does comparing the
CRC32 of the new row to the existing row determines whether the
data has changed.

CRC32 change capture using a text file source:

 Read each row as a single long string. Do not specify a valid


delimiter.
 In a transformer find the key fields using the FIELD command
and generate a CRC32 code for the entire record. Output all
fields.
 In a transformer lookup the existing records using the key fields
to join and compare the new and existing CRC32 codes. Output
new and updated records.
 The output records have concatenated fields. Either write the
output records to a staging sequential file, where they can be
processed by insert and update jobs, or split the records into
individual fields using the row splitter stage.

CRC32 change capture using a database source:

 To concatenate fields together use the Row Merge stage.

Potrebbero piacerti anche