Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us

 Home

 Search

Latest Brain Dumps

 BrainDump List

 Certifications Dumps

 Microsoft

 CompTIA

 Oracle

  Cisco
  CIW
  Novell
  Linux
  Sun
  Certs Notes
  How-Tos & Practices 
  Free Online Demos
  Free Online Quizzes
  Free Study Guides
  Free Online Sims
  Material Submission
  Test Vouchers
  Users Submissions
  Site Links
  Submit Site

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Online Training Demos and Learning Tutorials for Windows XP, 2000, 2003.

 

 

 

 





Braindumps for "000-415" Exam

IBM Web Sphere IIS Data Stage Enterprise Edition v7.5

 Question 1.
Which three stages support the dynamic (runtime) definition of the physical column metadata? (Choose three.)

A. the Sequential stage
B. the Column Export stage
C. the CFF stage
D. the DRS stage
E. the Column Import stage

Answer: A, B, E

Question 2.
A Varchar (10) field named Source Column is mapped to a Char(25) field named Target Column in a Transformer stage. The APT_STRING_PADCHAR environment variable is set in Administrator to its default value. 

Which technique describes how to write the derivation so that values in Source Column are padded with spaces in Target Column?

A. Include APT_STRING_PADCHAR in your job as a job parameter. Specify the C/C++ end of 
    string character (0x0) as its value.
B. Map Source Column to Target Column. The Transformer stage will automatically pad with 
    spaces.
C. Include APT_STRING_PADCHAR in your job as a job parameter. Specify a space as its value.
D. Concatenate a string of 25 spaces to Source Column in the derivation for Target Column.

Answer: C

Question 3.
Which three privileges must the user possess when running a parallel job? (Choose three.)

A. read access to APT_ORCHHOME
B. execute permissions on local copies of programs and scripts
C. read/write permissions to the UNIX/etc directory
D. read/write permissions to APT_ORCHHOME
E. read/write access to disk and scratch disk resources

Answer: A, B, E

Question 4.
In a Teradata environment, which stage invokes Teradata supplied utilities?

A. Teradata API
B. DRS Teradata
C. Teradata Enterprise
D. Teradata Multi load

Answer: D

Question 5.
When importing a COBOL file definition, which two are required? (Choose two.)

A. The file you are importing is accessible from your client workstation.
B. The file you are importing contains level 01 items.
C. The column definitions are in a COBOL copybook file and not, for example, in a COBOL 
     source file.
D. The file does not contain any OCCURS DEPENDING ON clauses.

Answer: A, B

Question 6.
Which two tasks will create Data Stage projects? (Choose two.)

A. Export and import a Data Stage project from Data Stage Manager.
B. Add new projects from Data Stage Administrator.
C. Install the Data Stage engine.
D. Copy a project in Data Stage Administrator.

Answer: B, C

Question 7.
Which three defaults are set in Data Stage Administrator? (Choose three.)

A. default prompting options, such as Auto save job before compile
B. default SMTP mail server name
C. project level default for Runtime Column Propagation
D. project level defaults for environment variables
E. project level default for Auto-purge of job log entries

Answer: C, D, E

Question 8.
Which three are keyless partitioning methods? (Choose three.)

A. Entire
B. Modulus
C. Round Robin
D. Random
E. Hash

Answer: A, C, D

Question 9.
Which two must be specified to manage Runtime Column Propagation? (Choose two.)

A. enabled in Data Stage Administrator
B. attached to a table definition in Data Stage Manager
C. enabled at the stage level
D. enabled with environmental parameters set at runtime

Answer: A, C

Question 10.
Which three are valid ways within a Job Sequence to pass parameters to Activity stages?
(Choose three.)

A. Exec Command Activity stage
B. User Variables Activity stage
C. Sequencer Activity stage
D. Routine Activity stage
E. Nested Condition Activity stage

Answer: A, B, D

Question 11.
A client requires that a database table be done using two jobs. The first job writes to a dataset. The second job reads the dataset and loads the table. The two jobs are connected in a Job Sequence. 

What are three benefits of this approach? (Choose three.)

A. The time it takes to load the table is reduced.
B. The database table can be reloaded after a failure without re-reading the source data.
C. The dataset can be used by other jobs even if the database load fails.
D. The dataset can be read if the database is not available.
E. The data in the dataset can be archived and shared with other external applications.

Answer: B, C, D

Question 12.
You are reading customer data using a Sequential File stage and transforming it using the Transformer stage. The Transformer is used to cleanse the data by trimming spaces from character fields in the input. The cleansed data is to be written to a target DB2 table. 

Which partitioning method would yield optimal performance without violating the business requirements?

A. Hash on the customer ID field
B. Round Robin
C. Random
D. Entire

Answer: B

Question 13.
Which three are valid trigger expressions in a stage in a Job Sequence? (Choose three.)

A. Equality (Conditional)
B. Unconditional
C. Return Value (Conditional)
D. Difference (Conditional)
E. Custom (Conditional)

Answer: B, C, E

Question 14.
An Aggregator stage using a Hash technique processes a very large number of rows during month end processing. The job occasionally aborts during these large runs with an obscure memory error. When the job is rerun, processing the data in smaller amounts corrects the problem. 

Which change would correct the problem?

A. Set the Combinability option on the Stage Advanced tab to Combinable allowing the 
    Aggregator to use the memory associated with other operators.
B. Change the partitioning keys to produce more data partitions.
C. Add a Sort stage prior to the Aggregator and change to a sort technique on the Stage 
    Properties tab of the Aggregator stage.
D. Set the environment variable APT_AGG_MAXMEMORY to a larger value.

Answer: C

Question 15.
Which three actions are performed using stage variables in a parallel Transformer stage?
(Choose three.)

A. A function can be executed once per record.
B. A function can be executed once per run.
C. Identify the first row of an input group.
D. Identify the last row of an input group.
E. Lookup up a value from a reference dataset.

Answer: A, B, C

Question 16.
The source stream contains customer records. Each record is identified by a CUSTID field. It is known that the stream contains duplicate records, that is, multiple records with the same CUSTID value. The business requirement is to add a field named NUMDUPS to each record that contains the number of duplicates and write the results to a target DB2 table.

Which job design would accomplish this?

A. Send the incoming records to a Transformer stage. Use a Hash partitioning method with 
     CUSTID as the key and sort by CUSTID. Use stage variables to keep a running count of the 
     number of each new CUSTID. Add this count to a new output field named NUMDUPS then 
     load the results into the DB2 table.
B. Use a Modify stage to add the NUMDUPS field to the input stream then process the data via 
    an Aggregator stage Group and Count Rows options on CUSTID with the result of the sum 
    operation sent to the NUMDUPS column in the Mapping tab for load into the DB2 table.
C. Use a Copy stage to split the incoming records into two streams. One stream goes to an 
    Aggregator stage that groups the records by CUSTID and counts the number of records in 
    each group and outputs the results to the NUMDUPS field. The output from the Aggregator 
    stage is then joined to the other stream using a Join stage on CUSTID and the results are then 
     loaded into the DB2 table.
D. Use an Aggregator stage to group the incoming records by CUSTID and to count the number 
    of records in each group then load the results into the DB2 table.

Answer: C


Google
 
Web www.certsbraindumps.com


Braindumps: Dumps for 642-426 Exam Brain Dump

Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us





Braindumps for "642-426" Exam

Troubleshooting Cisco Unified Communications Systems (TUC)

 Question 1.
LSC validation is failing on a new SCCP IP phone that you have just added to the Cisco Unified CallManager 5.0 cluster. No other IP phones are experiencing any problems with LSC validation. 

What can you do to help pinpoint the problem?

A. Check for security alarms
B. Verify that the authentication string is correct in the Cisco Unified CallManager device 
    configuration screen
C. View the SDI trace output
D. Use the Security configuration menu on the IP phone to verify that an LSC has been 
    downloaded to the IP phone

Answer: D

Question 2.
Which three capabilities can't be configured if the default dial peer is matched? (Choose three.)

A. Set preference to 1
B. Invoke a Tcl application
C. Enable dtmf-relay
D. Set codec to G.711
E. Disable DID
F. Disable VAD

Answer: B, C, F

Question 3.
When using trace output to troubleshooting a Cisco Unified CallManager 5.0 problem, how can you collect and view the trace files?

A. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    then use the embedded RTMT tool to view the trace files
B. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    download the RTMT plug-in from the CallManager Administration page to view the trace output
C. Download the RTMT plug-in from the Cisco Unified CallManager Serviceability page to view 
    the preconfigured trace files
D. Configure the proper alarms and traces on the Cisco Unified CallManager Administration page 
    and view the output with the RTMT plug-in

Answer: B

Question 4.
You are troubleshooting why a user can't make calls to the PSTN. You are reviewing trace files and you found where the user's IP phone initiates the call but you never see the call go out the gateway. 

What is the next step in troubleshooting this issue?

A. Look in the SDL trace file to see if there is a signal to another Cisco Unified CallManager node 
    with the same time-stamp
B. Look in the MGCP trace file to determine which MGCP gateway the call was sent to
C. Look in the IP Voice Media Streaming APP trace file to see if an MTP was invoked
D. Look in the SDL trace file to see if there is a signal to anther Cisco Unified CallManager node 
    with the same TCP handle

Answer: A

Question 5.
Exhibit:
 

Your work as a network engineer at ITCertKeys.com. Please study the exhibit carefully. 

Voice bearer traffic is mapped to which queue in FastEthernet0/2?

A. Queue 2
B. Queue 3
C. Queue 1
D. Queue 4

Answer: A

Question 6.
Exhibit:
 
Your work as a network engineer at ITCertKeys.com. Please study the exhibit carefully. You have received a trouble ticket stating that calls to international numbers are failing. To place an international call, users dial the access code, "9," followed by "011", the country code and the destination number. After entering the debug isdn 1931 command on the MGCP gateway, you have the user attempt the call again.

Base on the debug output, what is the most likely cause of this problem?

A. The TON in incorrect
B. The circuit is not configured correctly or has a physical layer issue
C. Cisco Unified CallManaager is not stripping the access code before sending the call to the 
    gateway
D. The gateway dial peer needs to prefix "011" to the called number so the PSTN knows this is 
    an internation call
E. The user's CSS does not permit international calls

Answer: A

Question 7.
You have developed a dial plan for Cisco Unified CallManager 5.0 solution. All the route patterns, partitions, calling search spaces and translation rules have been configured. Before starting up the system you wish to test the dial plan for errors. 

Which Cisco Unified CallManager tool will simplify this testing?

A. Route Plan Report
B. Dial Plan Installer
C. Dialed Number Analyzer
D. RTMT Traces and Alarms

Answer: C

Question 8.
You have just obtained a list of the following options: 
all patterns
unassigned DN
Call Park
Conference
Directory Number
Translation Pattern
Call pickup group
Route pattern
Message waiting
Voice mail
Attendant console

What have you selected in order to produce this list?

A. Route Plan > External Route Plan Wizard
B. Control Center > Feature Services
C. Route Plan > Route Plan Report
D. Dialed Number Analyzer

Answer: C

Question 9.
You have configured the Enable Keep Alive check under Trace Filter settings. 

How does this change the trace output?

A. It adds the IP address of the endpoint in hex
B. It maps the unique TCP handle for the endpoint to the MAC address of the endpoint in the 
    trace output
C. It adds the SCCP messages and all fields sent as part of that message
D. It adds TCP socket numbers between the endpoint and Cisco Unified CallManager for the 
    session

Answer: B

Question 10.
When using trace output to troubleshooting a Cisco Unified CallManager 5.0 problem, how can you collect and view the trace files? 

A. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    download the RTMT plug-in from the CallManager Administration page to view the trace output
B. Configure the proper alarms and traces on the Cisco Unified CallManager Administration page 
    and view the output with the RTMT plug-in
C. Download the RTMT plug-in from the Cisco Unified CallManager Serviceability page to view 
    the preconfigured trace files
D. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    then use the embedded RTMT tool to view the trace files

Answer: A



Google
 
Web www.certsbraindumps.com


Study Guides and Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA





              Privacy Policy                   Disclaimer                    Feedback                    Term & Conditions

www.helpline4IT.com

ITCertKeys.com

Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.