Thursday, May 20, 2010

Microsoft Dynamics CRM 4.0 Training cert exam

The Microsoft Dynamics CRM 4.0 Certification enables professionals to maximise the functional use of the latest version of the Dynamics CRM business solution. With the Microsoft Dynamics CRM Certification, you can easily distinguish yourself as an expert in CRM 4.0. After completing our course at Firebrand Training, you?l have more than just your certification. You?l have the academic, strategic and hands-on experience you need to successfully implement and manage the latest Dynamics CRM management system.

The goal of our 8 day accelerated Microsoft Dynamics CRM 4.0 Certification course is to provide IT professionals with the knowledge and skills necessary to install, configure and administer Microsoft?/sup> Dynamics CRM 4.0. This is an accelerated, fully immersed course, designed upon the job-related tasks of company environments.

Firebrand Training is unlike any other “boot camp”. With Firebrand Training, you will learn more. We offer accelerated training courses that ensure professionals will emerge with thorough knowledge of the products in the shortest possible timescale.Â

Instructors are available at all times to provide individual and group attention, lead lab exercises and practice sessions, and ensure the students’ success. Our attention to detail shows in our unsurpassed instruction and customer service, our classroom and testing facilities, and our individual and corporate success stories.

From the skilful crafting of our unique curriculum and careful selection of courseware to ensuring your comfort in the training environment, Firebrand Training is the best way to obtain Dynamics CRM 4.0 skills. Other training providers cannot match our commitment to quality instruction-led training and top-notch educational facilities.

CRM 4.0 Training Resources
Partners enrolled in a Partner Service Plan for Microsoft Dynamicsâ„¢ now have unlimited organizational access to online training for Microsoft Dynamics and related business products. If you are not enrolled in a Partner Service Plan, learn more at PartnerSource > Services & Service Plans > Partner Service Plans to choose the plan that is right for your organization!

Our first wave of training for Microsoft Dynamics CRM 4.0 is now available. Customers and partners enrolled in a service plan may download online training manuals for the following courses:

What’s New in Microsoft Dynamics CRM 4.0 Course Number 8910
This one-day training material provides individuals with the knowledge and skills to begin planning for Microsoft Dynamics CRM 4.0.
 Installation and Deployment in Microsoft Dynamics CRM 4.0 Course Number 8911
This three-day training material provides individuals with the tools to install and configure Microsoft Dynamics CRM 4.0. The training material focuses on the components used within a Microsoft Dynamics CRM deployment, the hardware and software requirements needed to successfully deploy Microsoft Dynamics CRM, and the installation instructions for the primary Microsoft Dynamics CRM components: the Microsoft Dynamics CRM Server, the E-Mail Router, and Microsoft Dynamics CRM for Office Outlook.Â
 Customization and Configuration in Microsoft Dynamics CRM 4.0 Course Number 8912
This three-day training material provides individuals with the tools to configure and customize Microsoft Dynamics CRM 4.0. Configuration topics include setting up business management functions such as:
 Business units
 Users Teams
 Security privileges and roles System Settings
 Multilingual User Interface Language Packs
 Currency Exchange Rates
 Multiple Organizations
The training material also focuses on using the Microsoft Dynamics CRM 4.0 Customization tools to customize the following system components: Forms, Views, Entities, Attributes, Relationships, and Entity Mappings.

Applications in Microsoft Dynamics CRM 4.0 Course Number 8913
This three-day training material explores the Microsoft Dynamics CRM application from a user’s perspective. Application functionality covered in the training material includes: Sales Management, Marketing Automation, Service Management and Service Scheduling.
E-learning and certification exams will also be available soon. All of these manuals will also be available in an e-learning format in February and certification exams will become available in the April/May timeframe.

Wednesday, April 21, 2010

Microsoft TestInside 70-643 v1 21 by cleitols 87q.vce

Microsoft TestInside 70-643 v1 21 by cleitols 87q.vce 70-643 14-Jun-2008

QUESTION 1
As a software develop at Certkiller Inc. you are creating an XML Web service named HousingService
that exposed two Web methods name SearchHouse and BuyHouses. Prior to deploying the service,
you want to customize the default template that is displayed when a customer makes a request
through the browser.
You create a Web Form named HousingServiceDescription.aspx that is a customized version of the
default template. You place the Web Form in the bin directory of the HousingService project.
The Web Form needs to override the default template when a request is made. You need to ensure
that customers who request HousingService though a browser view HousingServiceDescription.aspx.
What should you do?
A. Create a SOAP extension to redirect the user to HousingServiceDescription.aspx.
B. Set the Namespace property of the WebService attribute to the location of
HousingServiceDescription.aspx.
C. In the Web.config file, enable tracing and the set TraceMode node to
bin\HousingServiceDescription.aspx.
D. In the Web.config file, set the HRef property of the wsdlHelpGenerator node to
bin\HousingServiceDescription.aspx.
Answer: D
Explanation: The wsdlHelpGenerator element specifies the XML Web service Help page (an .aspx file)
that is displayed to a browser when the browser navigates directly to an ASMX XML Web services page


Incorrect Answers
A: Soap extensions are used to inspect or modify a message at specific stages in message processing on
either the client or the server. It is not useful here.
B: We are not interested in defining a name space.
C: We are not interested in enabling tracing.
Reference: .NET Framework General Reference, Element
QUESTION 2
You have a .NET Remoting object named Promotions. The Promotions class allows remote client
applications to add new product promotions to an online catalog application. The Promotions class is
an assembly file named Certkiller .dll.
You have an Internet Information Services (IIS) virtual directory named PromotionsObject. The
Certkiller .dll file is in the PromotionsObject\bin directory. You want to host the Promotions class in
IIS.
What should you do?
A. Create a Web.config file that includes the following code segment:


B. Create a Web.config file that includes the following code segment:

C. Create a Web.config file that includes the following code segment

D. Create a Web.config file that includes the following code segment:

Answer: C
Explanation: The HTTP channel does not require a custom-written listener because IIS provides the
listening functionality. Advantages of using IIS as the HTTP listener include: ease of configuration,
scalability, and process recycling.
Reference: Visual Studio Samples: Fitch and Mather 7.0, .NET Remoting
Incorrect Answers
A, B: These are inadequate since we want to host the application on the IIS server. We must, for example,
configure channels.
D: TCP channel would require development of an extra listener to process the request that enters the
TCP channel.
QUESTION 3
You are creating a .NET Remoting object named PropertyCache. PropertyCache will hold a
Hashtable object or name/value pairs.
A variety of remote client applications will communicate with PropertyCache to set and get property
values. You need to ensure that properties set by one client application are also accessible to other
client applications.
Which two actions should you take? (Each correct answer presents part of the solution. Choose two)
A. Configure PropertyCache to be a client-activated object.
B. Configure PropertyCache to be a server-activated Singleton object. Actualtests.org – The Power of Knowing
C. Configure PropertyCache to be a server-activated SingleCall object.
D. Derive the PropertyCache class from MarshalByRefObject and override InitializeLifetimeService()
to return null.
E. Mark the PropertyCache class with the Serializable attribute.
Implement the ISponsor interface in the PropertyCache class.
F. Implement the ISerializable and ILease interfaces in the PropertyCache class.
Implement ILease.CurrentLeaseTime to return Int32.MaxValue.
Answer: B, D
Explanation: Correct answer should be B, D. E is incorrect because it is not necessary to serialise a
Singleton object class. You only need to inherit it from MarshalByRefObject. Furthermore, D overrides
initializeLifetimeService() to return null to return an object with infinite lifetime. It will solve the object life
time issue that Answer E was trying to resolve through implementing ISponsor.

Tuesday, April 13, 2010

Common of by CCNP

As there are lots of jobs which are high-paid in the IT industry, lots of people who want job-hopping entered training courses in order to become certified computer professionals.Many people have mistaken ideas in CCNP certification because of the misleading of public opinions.

Misunderstanding 1: to achieve the IT certification is to enter into the IT industry.however, For the inadequate supervision of the involved Grovement Departments, certification exams like Cisco 642-901 increased sharply.So the the sharp increasing in the numbers caused The CCNP Certification lost their original objective certification standards and values.

Misunderstanding 2: Obtain a certification first, build up experience later.No matter how high the salary of your previous position is, you must realize that you may have to do from the beginning, entering the computer field at the cost of salary decrease.

Misunderstanding 3: the more certificates, the better.Too many certificates can not reflect the expertise of job-seekers, but confuse the employers because they have no idea of the job-seeker鈥檚 profession.

Mistakes Four : concentrating research, ignoring the market situation.The requirement of certifiation in the society is change constantly, if you do not grasp the accurate trend of the market, it could be futile.

Misundertanding 5: Only focus on import, not output.Certification examination is an education investment, especially for passing 642-901. Examinees should stress both the two aspects of investment benefits including economy and time benefits.It is a realistic problem for students to choose a right certification according to their economic power and time.

Other Popular Exam

Pass4sure 642-812 : 642-812 Value Pack HardCopy
Pass4sure 642-801 : CCNP's Building Scalable Cisco Internetworks (BSCI)
Pass4sure 642-901 : 642-901 Value Pack
Pass4sure 642-831 : CCNP's Cisco Internetwork Troubleshooting (CIT)

pass4sure HP0-A16 real braimdumps

NonStop Himalaya Problem Management and Resolution : HP0-A16 Exam
Product Description
Exam Number/Code: HP0-A16
Exam Name: NonStop Himalaya Problem Management and Resolution

“NonStop Himalaya Problem Management and Resolution”, also known as HP0-A16 exam, is a HP certification.
Preparing for the HP0-A16 exam? Searching HP0-A16 Test Questions, HP0-A16 Practice Exam, HP0-A16 Dumps?

With the complete collection of questions and answers, Pass4sure has assembled to take you through 156 Q&As to your HP0-A16 Exam preparation. In the HP0-A16 exam resources, you will cover every field and category in HP Certification helping to ready you for your successful HP Certification.

Questions and Answers : 156 Q&As
Updated: April 22nd , 2008
Question: 1
Which parameter follows the RDFCOM command for opening a specific RDF environment?

A. process name
B. extractor name
C. control subvolume name
D. primary system node name
Answer: C Question: 2
When monitoring TMF in a production environment, what is critical to normal operations?

A. transaction rate
B. audit trail usage
C. disk usage information
D. audit trail dump information
Answer: B Question: 3
Which tools are used by an operator to monitor processor load-balancing in real time? (Select two.)

A. GPA B. PEEK
C. Measure
D. Web ViewPoint E. VIEWSYS
Answer: D, E Question: 4
Which command is used to determine if the cartridge loaded on $TAPE0 is a 36-track cartridge?

A. TAPECOM STATUS $TAPE0
B. MEDIACOM INFO MEDIADEFS
C. SCF INFO TAPE $TAPE0, DETAIL
D. SCF STATUS TAPE $TAPE0, DETAIL
Answer: D Question: 5
What does the presence of a ZZSA file imply?

A. The process has failed.
B. The SQL cursor has failed.
C. The Pathway server has stopped. D. The TMF process was suspended.
Answer: A Question: 6
Which command is used to determine the MAC address of an ATM adapter?

A. SCF INFO SAC $

TK

Exam Name: NonStop Himalaya Problem Management and Resolution
Exam Type: HP
Exam Code: HP0-A16 Total Questions: 155

B. SCF INFO LINE $
C. SCF INFO SUBSYS $ZZATM D. SCF INFO ADAPTER $
Answer: B Question: 7
Which SCF STATUS command is used to determine the status of all ServerNet cluster-connected systems?

A. SUBNET $ZZSCL B. SUBSYS $ZZSCL
C. PROCESS $ZZSCL
D. SERVERNET $ZZSCL
Answer: A Question: 8
What does “DORMANT” state for a Spooler print process indicate?

A. This process is in an error state.
B. No print process has been configured.
C. This print process has not been started.
D. There are no jobs to be printed on the device configured for this process.
Answer: D Question: 9
Which file must be modified to allow disk volume $DATA1 to store OSS files?

A. zposfset B. zposserv C. zposparm
D. Storage-pool
Answer: D Question: 10
Which utility is used to determine the state of an OSS subsystem process?

A. SCF B. OSH
C. INSPECT D. SYSINFO
Answer: A Question: 11
There is a problem reported for a disk drive on a system that is not configured for dial-out. How
do you determine if an alarm file has been created for this incident?

A. Search the alarm file in the directory of TSM client software. B. Search the alarm file in the $SYSTEM.SYS subvolume. C. Search the scanstring file in the $SYSTEM.ZTSM subvolume. D. Search the alarm file in the $SYSTEM.ZSERVICE subvolume.

TK

Exam Name: NonStop Himalaya Problem Management and Resolution
Exam Type: HP
Exam Code: HP0-A16 Total Questions: 155

Answer: D

Question: 12
Which wait condition is indicated in the Pathmon WAIT status LOCK?

A. Linkmon is waiting for a locked server.
B. The server is waiting for a locked requester.
C. Pathmon is waiting for the LINKMON to release a link. D. The request is waiting for a locked object.
Answer: D Question: 13
The attached NSKCOM output shows the swapfile for CPU 0 to be almost full.

Which NSKCOM command is used to identify the process using the most swap space in this file?

A. INFO SWAPFILE *, CPU 0
B. STATUS SWAPFILE *, CPU 0
C. STATUS SWAP-USAGE, CPU 0
D. STATUS SWAPFILE $vol.subvol.CPU0,detail
Answer: C Question: 14
How would you determine the preferred path between \node1 and \node2 in an EXPAND
network?

A. SCF INFO PATH $
B. SCF PROBE PROCESS $NCP, AT \node1, TO \node2
C. SCF INFO PROCESS $NCP, NETMAP, AT \node1,TO \node2
D. SCF STATS PROCESS $NCP, NETFLOW, AT \node1,TO \node2
Answer: C Question: 15
Which single SCF command is used to get information for OSI/TS and its underlying subsystems?

A. STATUS SU B. CHECK SU
C. STATUS LINE
D. STATUS PROCESS

Thursday, March 25, 2010

Far out Pass 4 Sure Cisco 650-251 certification

To get an IT certification, you need lots of time and hard work.Since the demanded skills of each certification are different and hard to distinguish them one by one, today's topic focuses on their common steps.If you are going to get one Cisco certification, pay attention to the following steps.
The first step to take is choosing a certification. It is simple but at the same time very important. Make sure to choose the certifications that are respected in your industries.
Step two, estimate your experience. In this step, make an overview of your experience and then look for studying stuffs that Cisco certification requires.
Practice exams will enable you to assess your knowledge and also prepare you for the types of questions you might see so you aren't caught off-guard on test day. Many candidates found Pass 4 sure Cisco exam exam helpful.Many people may wonder whether their studies are correct and efficient. The quickest way to get the answer is to visit IT certification forums where hundreds of candidates like you gathering.Most training classes offer a more extended hands-on approach to learning. While they also tend to be expensive, you will likely get more out of this option than just a Cisco certification.Some are free and others cost money, but all of them will get you in the test-taking mode. Most online practice Passforsure Cisco question exams run from $30 to $100 and provide a solid way to test your knowledge.Most vendor sites provide resources such as mock tests and online forums to chat with others about important issues. Try them!
You can enroll your exams after you have finished all the above steps. Most exams can be registered in the Internet or by phone now.
Since there is no end for studying, there is no relaxation even after you have got your Cisco certification. Keep on moving to higher certifications.
You should always remember that your aim for getting the Cisco certification is to get more knowledge and experience, instead of the certification itself. Only if you have got ready for the exam, you can take it.

testking HP HP0-664 braindumps

Exam Preparation Guide: Exam #HP0- 664
NonStop???? Application Design and Development – Level 1

Check the web site for course descriptions and prerequisites at:
http://education.nonstop.compaq.com/us/cat/httoc.htm

You can also call (800) 621-9198 in North America, to speak with one of our education
consultants or register for courses.
Or, you can email us at: nonstop.training@compaq.com

Exam Status

The NonStop Application Design and Development – Level 1 exam has
completed beta testing and is now live. This exam is administered by Prometric Regional Service Centers in North America (other locations may have different delivery methods). Refer to the Prometric website http://www.2test.com

Exam Details

Number of test items: 79

Time allotted to take test: 75 minutes

Passing Score: 63% – 50 items correct

You are not allowed to refer to any books or reference material during the NonStop
Application Design and Development – Level 1 exam.

Exam Preparation Guide: Exam # HP0-664 1
NonStop? Application Design and Development – Level 1

Audience

This exam is targeted for the following personnel, with a minimum of one-year experience on
the Compaq S-Series platforms running the G-Series NonStop? Kernel Operating System:

Authorized Service and Support personnel (field support technicians), who perform installations, upgrades, troubleshooting and maintenance tasks.

Global Customer Support Center (GCSC) personnel, who may have specialized technical expertise in the operating system (e.g., security features, hardware, subsystems) and
serve as support for both field support technicians and customers.

Analyst SEs or Pre-SalesTechnical Support (PSTS) personnel, who perform pre-sales consulting and technical account support, including tasks such as assessment of customer needs, system sizing and configuration, installation consulting, and so forth.

NonStop? Kernel Software Developers, System Integrators and Consultant Partners, Application Designers and Developers, Authorized Service Channel Partners and Distributors, Customers authorized to service their own equipment.

Exam Preparation Guide: Exam # HP0-664 2
NonStop? Application Design and Development – Level 1

Exam Registration
The Compaq tests are delivered at Prometric Centers.
To register for the NonStop Application Design and Development – Level 1
(Exam #HP0-664):
? Call :

NA – 800-366-EXAM (3926)

APD – 61-2-9414-3663

Latin America – 410-843-4300

Japan – 81-3-3269-9620

EMEA – 31-320-239-800 OR

? Register online at Prometric Web Registration

? Due to high call volume on Mondays, Prometric recommends scheduling test appointments on Tuesday through Friday.

Note
Online registration cannot calculate discounted tests and is not available in all regions. To register for beta tests or to take advantage of discounts, you must register over the phone.

Have the following information ready when you register:

? Name

? Social security number, SSI number, or your assigned Compaq testing identification number 1
? Compaq student or ASE ID number 2

? Company or organization

? Mailing address (street, city, state, country, and ZIP)

? Test Series ID number NonStop Application Design and
Development – Level 1 (Exam #HP0-664)

? Compaq Reseller ID number (if applicable)

1 If you cannot provide a social security number or SSI number, Prometric will assign a unique Compaq testing identification number to you. You are responsible for using this number in all future Prometric testing transactions.
2 If the Student ID number is unknown or has never been assigned, please call Compaq Registration. In the U.S. call 800-732-5741 or in Canada call 800-392-7024.

Exam Preparation Guide: Exam # HP0-664 3
NonStop? Application Design and Development – Level 1

What Youll Be Tested On

Exam questions were written to evaluate your knowledge of the following objectives. The
percentage of items dedicated to each major category is included in parenthesis.

1) Application Design Lifecycle (10%)

1.1 Describe the major components of an application requirements specification

1.2 Describe the purpose of the technical specification

1.3 Discuss availability issues
Quality
SLA
Cost of downtime
Minimum accepted workload

1.4 Describe various security risks
Security policy
Authentication
Data integrity

1.5 Describe scalability issues
Future growth
Average peak data volume and transaction rate

1.6 Discuss performance-related issues
Response time
Workload
Resources

1.7 Describe the major components of the functional design
Describe the purpose of the business process
Describe the principles of logical database design
Describe the major properties of the transactions
Transaction Profiles/Volumes
Complexity

1.8 Describe the elements of technical design
Parameters needed for sizing
Transactions
Database
Number of users
1.9 Describe the variety of application architectures (Client/Network/Server)
Distributed Application (Monolithic)

Exam Preparation Guide: Exam # HP0-664 4
NonStop? Application Design and Development – Level 1

Distributed Database
Client/Server

1.10 Discuss the considerations for process design
Transaction grouping
Service grouping
Presentation services

1.11 Describe the process of physical database design
Table design
(De)normalization
Primary key/index
Foreign key
Partitioning/distribution
Access plans

1.12 Describe the security elements
Logon server
Protection views
Application level

1.13 Discuss the impact of different network protocols
Describe network protocol considerations
TCP/IP
OSI protocols
SNA protocols

1.14 Describe the components of application development
Discuss criteria for language choice
Discuss methodology

1.15 Discuss choice and use of different development tools
Identify program entities
Coding standards
Libraries
Error handling
Debugging methods
Code optimization
Documentation standards

1.16 Describe the testing process
Module testing
Path testing
Integration testing
System testing
Operations testing
Failure testing

Exam Preparation Guide: Exam # HP0-664 5
NonStop? Application Design and Development – Level 1

Stress/performance testing
User acceptance testing

2) Products and Tools (21%)

2.1 Describe the products and tools used to work with a database
Define the features and use of
SQLCI (Conversational I/F)
FUP
MXCI
ENABLE
ENFORM

2.2 Describe characteristics of the major NonStop? Himalaya Pathway subsystems
Describe the major components and functions of
Pathway/TS
TS/MP
Pathway/XM

2.3 Demonstrate knowledge of NonStop? Himalaya middleware components
Describe the major components and functions of NonStop? CORBA and
NonStop? JORB
Describe the major components and functions of NonStop? ODBC
Describe the major components and functions of RSC/MP
Describe the major components and functions of NonStop? DCE
(Distributed Computing Environment)
Describe the major components and functions of NonStop? DTE (Data Transformation Engine, Mercator) e.g. ETLs (Extract Transformation and Loads)
Describe the major components and functions of OSI/MHS (Message
Handling System)
Describe the major components and functions of NonStop? EAS
(Enterprise Java Beans)
Describe the major components and functions of TUXEDO
Describe the major components and functions of NonStop? Server Object
Gateway

2.4 Demonstrate knowledge of NonStop? Himalaya development tools
Define the features and use
DDL (Data Definition Language)
SCUP
SCOBOL
SQLCOMP
NonStop? Java
TAL/pTAL
COBOL85
C/C++

Exam Preparation Guide: Exam # HP0-664 6
NonStop? Application Design and Development – Level 1

Native mode compilers
AXCEL code accelerator
BIND/NLD/NOFT
TEMPL/TEMPLI
TACL
IDL (I/F Definition Language)
PATHMAKER
Himalaya Integrated Development Environment
JDB Java Debugger
INSPECT, VISUAL INSPECT, DEBUG

2.5 Demonstrate knowledge of NonStop? Himalaya transaction monitoring facility and related tools (TM/MP)
Describe the major stages of the TM/MP transaction lifecycle
BEGIN/END
COMMIT
ABORT
Describe the purpose and usage of transaction identifiers
Describe the relationship between TM/MP and OTS/JTS (Transaction
Services)
Identify the use of AutoTMF

2.6 Demonstrate knowledge of NonStop? Himalaya web interfaces and products
Describe the major components and functions of iTP WebServer
Pathway/CGI
Servelets
Java Server Pages
Active Transaction Pages
Describe the major components and functions of Pathway/iTS
Describe the functionality of
JDBC
JPATHSEND
JEnscribe

2.7 Demonstrate knowledge of instrumentation capabilities
Describe components of the EMS subsystem
Define the features and use of EMS/Faststart
Describe components of the SPI architecture
Describe the use of Measure

2.8 Demonstrate knowledge of data replication facilities
Describe the major components and functions of RDF
Describe the relationship between NonStop RDF and TM/MP

3) Application Architecture (16%)

3.1 Discuss the techniques used to optimize performance of a Himalaya application

Exam Preparation Guide: Exam # HP0-664 7
NonStop? Application Design and Development – Level 1

Describe how to recognize code that can be accelerated
Discuss the use of server classes versus named processes
Describe how to utilize memory efficiently
Discuss techniques to optimize disk I/O
Use of explain plan in SQL
Design for serial inserts
Optimal ratio of records/rows to blocks
Types of files suitable for different uses
Discuss use of waited and nowaited I/O
Discuss the use of process priorities
Describe how to minimize the number of process-to-process hops to process a transaction

3.2 Discuss the techniques to achieve required availability of a Himalaya application
Describe how named process pairs provide availability
Checkpointing
Active versus Passive backup processes
Describe how persistent processes provide availability (including management by persistent monitors such as PATHMON)

3.3 Discuss the techniques to achieve required scalability
Discuss use of PATHWAY serverclasses
Discuss transaction isolation (independence of this transaction from others)
Discuss how atomicity (context-free units of work) improves scalability
Discuss the use of application partitioning to achieve ultimate scalability

3.4 Discuss the ACID properties of well-designed transactions
Define Atomicity
(Changes are done completely or completely undone)
Define Consistency
(Effects of a transaction are preserved invariant properties of system)
Define Isolation
(Intermediate states are not visible to other transactions)
Define Durability

3.5 Discuss the benefits and uses of different application architecture models
Discuss the Requester/Server model
Discuss the Client/Server model
Discuss web application models
Define what is meant by context-free and context-sensitive servers
Discuss the use of shared memory

3.6 Discuss NonStop? Himalaya application limits
Discuss message system considerations and limitations
IPC size limitations
Number of opens

Exam Preparation Guide: Exam # HP0-664 8
NonStop? Application Design and Development – Level 1

Impact of network messages on TMF
Discuss transaction boundaries

3.7 Discuss application portability to a NonStop? Himalaya system
Define requirements for Java portability
Define requirements for porting UNIX programs to OSS

3.8 Discuss distributed application design
Define distributed transactions (multiple nodes)
Define distributed processes
Discuss heterogeneous applications
Message queuing
Message formatting and data conversion
Communications interfaces
File transfer methodology

3.9 Discuss considerations of the different operating system personalities
Define how to talk from OSS to Guardian
Describe how to define Guardian and OSS servers in TS/MP
Discuss file system differences, or relationships
Discuss functions of the /G and /E OSS directory interfaces
Describe how to invoke TACL commands from OSS shell

4) Database Design (10%)

4.1 Describe principles of logical database design
Demonstrate knowledge of Entity/Relationship analysis
Demonstrate knowledge of the normalization process

4.2 Describe principles of physical database design
Discuss the considerations for choosing file systems
Enscribe
OSS
NonStop SQL
Discuss the considerations for choosing specific file types
Discuss the following:
Primary key / index
De-normalization
Database sizing
Partitioning
File placement
Backup/recovery strategies
Selection of data types
Data compression
Cache management

4.3 Discuss the functions and use of catalogs

Exam Preparation Guide: Exam # HP0-664 9
NonStop? Application Design and Development – Level 1

Program validation
Statistics
Catalog (metadata)

4.4 Discuss considerations related to performance/availability
Key lengths
Locks and lock lengths
Query design
Control statements/control table
Parallel processing

4.5 Discuss file size considerations
Maximum partitions on an Enscribe file
Maximum blocksize in an Enscribe file
Maximum extents in a Enscribe file or SQL table
SQL table limitations
Use of format2 files

5) Security (5%)

5.1 Describe how and when to use encryption
Describe why encryption is necessary
Describe the NonStop? Himalaya facilities for encryption
Describe difference between hardware and software encryption
Identify encryption techniques
Symmetric versus asymmetric encryption
Private and public key encryption
Privacy
Non-repudiation
DES
PKI
Identify functionality (functional capability) of Atalla products
Identify NonStop? Kernel products used to implement SSL, PKI, VPN
(Web) technologies

5.2 Discuss the need for firewalls
Identify the purpose of a firewall
Describe when to use a firewall
Describe how presence of a firewall affects a NonStop? Himalaya design

5.3 Describe GUARDIAN security
Demonstrate knowledge of GUARDIAN users and groups
Describe the Guardian file security string (RWEP->AN,CG,UO-*)
Explain the use of REMOTEPASSWORDs for distributed applications
Describe how an application program can authenticate a user using
GUARDIAN system procedure calls
Describe features available for securing applications
Describe Safeguard security features for application programs

Exam Preparation Guide: Exam # HP0-664 10
NonStop? Application Design and Development – Level 1

5.4 Describe OSS security
Describe OSS security features available to applications programmers
Describe the differences between GUARDIAN and OSS Security

6) Designing for Change: Best Practices (5%)

6.1 Describe best practices for future change
Discuss considerations for portability
Describe isolating data from the application
Demonstrate how to use a modular design
Discuss the use of version-labeled interfaces for intermodule communication (message versioning)
Identify implementation support techniques
Discuss handling changes in the initialization information
Describe server-based client executable code management
Demonstrate knowledge of avoiding hard coding the names of physical objects
Describe best practices for changing a NonStop? SQL/MP program or database

6.2 Describe migration information sources available to application developers

7) Application Development on NSK (16%)

7.1 Identify the development environments available for the NonStop? Kernel
(Guardian and OSS)

7.2 Explain the techniques of fault tolerant programming
Describe process pairs
Describe persistent processes
Describe Checkpointing

7.3 Describe the usage of information sources/resources available to developers

7.4 Describe the functions of code generators
Describe the features of Pathmaker
Describe the functions of SCUP
Describe the normal use of ENABLE

7.5 Discuss source code management
Describe the purpose of source code management
Describe the usage of VPROC for an application

7.6 Describe the different methods of object code creation
Describe the differences between non-native, native and accelerated object code
Describe the static vs dynamic SQL/MP compilation process

Exam Preparation Guide: Exam # HP0-664 11
NonStop? Application Design and Development – Level 1

Describe the steps to compile a program containing embedded SQL/MP
statements
Demonstrate knowledge of the bind (BIND and NLD) process

7.7 Identify the available debugging tools
Describe the differences between INSPECT and VISUAL INSPECT
Describe when you would use DEBUG
Explain the use of the IMON process
Define the naming convention of Saveabend files

7.8 Demonstrate knowledge of DEFINES, ASSIGNS, PARAMS and late binding
Describe the difference between DEFINES and ASSIGNS
Describe the purpose of PARAM
Describe the purpose of environment variables (OSS)
Identify when Late Binding is required
Describe the relationship between DEFINES and Pathway server classes

7.9 Demonstrate knowledge of Pathway and Tuxedo Transaction Services
Describe the function of PATHSEND
Discuss the proper implementation of TS/MP server protocol
Describe how to invoke a TUXEDO service

7.10 Discuss EMS logging
Define the elements of a tokenized message
Describe how to create a tokenized message
Describe the usage of EMS templates
Identify tools used to create EMS templates (EMS Fast Start)
Describe how to activate EMS templates
Describe EMS collectors

7.11 Demonstrate knowledge of batch processing techniques
Identify considerations associated with batch processing and TM/MP
Describe the advantages of using DataLoader/MP

8) Application Management (11%)

8.1 Describe the tools/utilities used in performance and tuning
Describe the types of data available from MEASURE
Describe the output of GPA
Describe the use of the statistics provided by Pathway
Describe method for obtaining statistics for an SQLCI query

8.2 Demonstrate knowledge of capacity planning
Describe the features of TCM
Describe the features of TPDC

8.3 Describe the main configurable components of an application

Exam Preparation Guide: Exam # HP0-664 12
NonStop? Application Design and Development – Level 1

Describe the attributes of the PATHWAY environment
Describe the attributes in a Pathway server class
Describe the attributes in a TCP
Describe the configurable attributes of Tuxedo
Describe the configurable attributes of batch suites, such as NetBatch

8.4 Demonstrate knowledge of backup and recovery utilities
Describe the function of
BACKUP
RESTORE
TMF DUMP FILES
TMF RECOVER FILES
PAX

8.5 Identify the tools available for manageability
Describe the use of
VHS
OMF
EMS
MEASURE
NetBatch
SQLCI
ENFORM
ASAP

8.6 Demonstrate knowledge of TACL (Tandem Advanced Command Language)
Describe the use of TACL Macros and Obey Files
Describe the function of the PMSEARCHLIST
Describe the function of the DEFINE =_DEFAULTS

8.7 Demonstrate knowledge of ViewPoint and Web ViewPoint
Identify the TACL Macro to start ViewPoint
Describe the purpose of FILTERS
Describe the advantage of using Web Viewpoint

9) Error Handling and Recovery (6%)

9.1 Demonstrate knowledge of runtime errors
Demonstrate knowledge of file system error documentation
Define file system errors
Define file system warnings
Explain some common file system errors
Demonstrate knowledge of programming techniques for capturing and recovering from file system errors
Demonstrate coding to detect file system errors
Demonstrate ability to recover from file system errors

Exam Preparation Guide: Exam # HP0-664 13
NonStop? Application Design and Development – Level 1

9.2 Demonstrate knowledge of programming techniques for capturing and recovering from SQL errors
Demonstrate knowledge of SQL errors
Demonstrate knowledge of SQL error documentation
Define SQL errors
Define SQL warnings
Explain some common SQL errors
Explain the difference in error reporting in SQL and file system errors
Demonstrate differences in SQL error checking for NonStop?
SQL/MX

9.3 Demonstrate knowledge of programming techniques for capturing and recovering from various subsystem errors
Demonstrate knowledge of subsystem errors
Demonstrate knowledge of subsystem error documentation
Define subsystem errors
Explain some common subsystem errors
Demonstrate knowledge of programming techniques for capturing and recovering from subsystem errors
Describe coding to detect subsystem errors
Demonstrate the ability to recover from subsystem errors
Demonstrate knowledge of subsystem error documentation
Demonstrate the ability to test for SPI errors
Demonstrate knowledge of aborting a transaction

Exam Preparation Guide: Exam # HP0-664 14
NonStop? Application Design and Development – Level 1

Related Training and Study References

The Compaq Accredited Professional Program (Level 1) includes references to a variety of
materials that provide information included on this certification exam. Completion of courses and review of materials is recommended, but not required, for success on this exam.

Recommended Minimum Courses

Course Title Part Number Type Length
Concepts and Facilities 522601-001 ILT 4 days
NonStop? SQL/MP Essentials 522603-001 ILT 4 days
NonStop? SQL/MP Overview 101477 ISP 8 hours
Object-Oriented Analysis – Dynamic Modeling (C and C++) CBTEG168 ISP 6 hours
Open System Services (OSS) Operations and Management 522637-001 ILT 5 days
Pathway Application Programming Education Series 86273 ISP 35 hours
NonStop? TUXEDO System Administration 424370-001 ISP 8-10 hours

Additional Highly Recommended Courses
Check web site course descriptions for prerequisites
Course Title Part Number Type Length
DataLoader/MP 126396 ISP 8 hours
Introduction to NonStop? Distributed Object Manager/MP 141097 ILT 4 days
NonStop? ODBC Server Product Overview 108544 ISP 1 hour
NonStop? SQL/MP Conversational Interface 101478 ISP 18 hours
NonStop? SQL/MP Physical Database Design 16280 ILT 2 days
NonStop? SQL/MP Programmatic Interface 113451 ISP 18 hours
NonStop? SQL/MP Query Design for Performance 522621-001 ILT 4 days
Object-Oriented Analysis – Objects and Classes (C and C++) CBTEG169 ISP 5 hours
Object-Oriented Design – (C and C++) CBTEG170 ISP 3 hours
Pathway System Management 522588-001 ILT 3 days

ILT = Instructor-Led Training
ISP = Independent Study Program

Check web site course descriptions for prerequisites at:
http://education.nonstop.compaq.com/us/cat/httoc.htm

Additional Recommended Reference Materials for This Exam
Go to the link for the Application Design chapter and review it for this exam:
http://education.nonstop.compaq.com/us/cert/appdes.pdf

References to the majority of questions found in this exam can be found in manuals
contained in the Online TIM (Total Information Manager) collections (This guide typically references the latest release available in the TIM Document Collection). TIM is a single interface to all NonStop? Systems documentation and support information. External users must subscribe to the TIM CD collection. See your Compaq Representative for more information.

NOTE: TIM must be installed on your system before using the following default access settings. http://tex.tandem.com/cgi-bin/timcfg.exe

Exam Preparation Guide: Exam # HP0-664 15
NonStop? Application Design and Development – Level 1

Documentation
The references below are based on information available as of May 2001. Information nested ( ) and in quotation marks (”) indicates subsections emphasized in the document.

Accelerator Manual, (108428), Introduction and Using the C Run-Time Library
Application Design (54179)
Life Cycle and Methodology
What is Application Availability?
Designing Applications for Change Application Architecture
Availability Guide for Application Design (124511)
What is Application Availability?
Overview of Server and Network Fault Tolerance
Data Protection and Recovery
Increasing the Availability of Open Applications
Availability in the Pathway Transaction-Processing Environment
Availability through Process-Pairs and Monitors
Instrumenting an Application Availability
Minimizing Programming Errors
Development Methodology Specify and Review the Requirements
What is Application Availability
Cobol 85 for NonStop? Himalaya Systems Manual (429297-001) Using COBOL85 in the
Open System Services (OSS) Environment
Data Definition Language (DDL) Reference Manual (426798-001), Introduction to DDL
DataLoader/MP Reference Manual (142887) Intro to Data/Loader/MP
Debug Manual, (421921-001) Introduction
DSM Template Services Manual (427187-001) Introduction and Installing Templates
EMS FastStart Manual, (133701) Introduction
EMS Manual (426909-001)
Introduction to EMS
Configuring EMS
Web ViewPoint documentation
ENABLE Reference Manual, (082560) Introduction
ENABLE Users Guide (082571)
ENFORM Users Guide (058058) Developing an ENFORM Query
Enscribe Programmers Guide (137692) General File Creation and Access Information
File Utility Program [FUP] Reference Manual (425742-001), FUP Commands
GPA Manual (135081)
Getting Started with Visual Inspect (131794)
Guardian Disk and Tape Utilities Reference Manual (426958-001)
Guardian Procedure Calls Reference Manual (427702-001) Guardian Procedure Calls (C)
Guardian Procedure Errors and Messages Manual (420035-001)
Guardian Programmers Guide (421922-001) Creating and Managing Processes
Guardian Users Guide (425266-001)
Himalaya S-Series Server Description Manual (425160-001)
Inspect Manual (118810) Debugging Processes and Save Files
Introduction to Data Management (015873) Managing Data on the Tandem Systems
Introduction to NonStop? Operations Management (125507)

Exam Preparation Guide: Exam # HP0-664 16
NonStop? Application Design and Development – Level 1

Introduction to NonStop? Transaction Manager/MP (TM/MP) (124757) Application
Programming for the TMF Subsystem
Introduction to Tandem Himalaya S-Series Servers (130961)
Online Transaction Processing Systems
The Transaction Processing Environments
iTP Active Transaction Pages (424331-001) ATP Web Page and Script Structure
iTP Secure WebServer System Administration Guide (425144-001) Using Common Gateway
Interface (CGI) Programs
Measure Reference Manual (425077-001)
NLD and NOFT Manual (427686-00) Introduction to the Utilities
NetBatch Manual (142530) Job Planning, Submission, and Management
NonStop AutoTMF User’s Guide (427642-001) Preparing Programs
NonStop JOLT for TUXEDO User’s Guide CSS/Security Client User Guide
NonStop JTS/OTS: User’s Guide (142999) An Overview of the Transaction Service
NonStop RSC/MP 6.1 Installation and Configuration Guide (425709-001) Configuring and
Managing the RSC/MP TDP Process
NonStop RSC/MP Programming Manual (425711-001) Introduction to Remote Server Call
(RSC/MP)
NonStop Server for JAVA (NSJ) Programmer’s Guide (426947-001) Introduction to NonStop
Server for JAVA
NonStop Server for Java (NSJ) Tools Reference (426948-001) Java Debugger
NonStop Server for JAVA 1.5 (422097-001) Accessing NonStop SQL/MP Databases
NonStop SQL/MP Installation and Management (424912-001) Managing Database
Applications
NonStop SQL/MP Query Guide (429826-001)
Cancel Command
Data Dictionary
FC Command
Generalized Owner
Icompress File Attribute
Left_Margin Option
Page_Count Option
NonStop SQL/MP Programming Manual For C (427071-001) Explicit Program Compilation
NonStop SQL/MP Reference Manual (429320-001)
Cancel Command
Data Dictionary
FC Command
Icompress File Attribute
Left_Margin Option
Page_Count Option
NonStop (TM) CORBA 2.3 (see Independent Product User Documentation in TIM)
CORBA 2.3 Architecture
NonStop TM/MP Application Programmers Guide (136586) TMF Programming Environment
NonStop TM/MP Reference Manual (137445) NonStop TM/MP Limits
NonStop TS/MP Pathsend and Server Programming Manual (132500-001)
Intro to Pathway Application Programming
Designing Your Application

Exam Preparation Guide: Exam # HP0-664 17
NonStop? Application Design and Development – Level 1

Writing Pathsend Requesters
Writing Pathway Servers
NonStop TS/MP System Management Manual (135027)
Overview of PATHCOM
PATHCOM Operation Commands
PATHMON Environment Control Commands
Server Commands
NonStop TUXEDO System Application Development Guide (125218) Application
Development Environment Overview
NonStop V i r t u a l H o m e t e r m Subsystem (VHS) Manual (140607)
Introduction to VHS
VHS Limits
ODBC Server Reference Manual (429151-001) Architecture Overview
Object Monitoring Facility OMF Manual (422666-001)
Open System Services Management and Operations Guide (425683-001)
Open System Services Porting Guide (425278-001) Porting UNIX Applications to the OSS Environment
Open System Services Programmer’s Guide (128186)
Managing Files
Overview of the OSS Programming Environment
UNIX common knowledge
Open System Services Shell and Utilities Reference Manual (425122-001), User
Commands
Open System Services User’s Guide (420292-001)
Intro to Open System Services
Running the OSS Shell
Operator Messages Manual (427190-001)
OSF DCE Application Development Guide (124246) Introduction to DCE Application
Programming
Pathmaker Programming Guide (067868)
Pathway SCREEN COBOL Utility Program (SCUP) Reference Manual (109425) Introduction
to SCUP
Pathway/TS SCREEN SCOBOL Reference Manual (139453)
Introduction to SCREEN COBOL
Procedure Division
Pathway/TS System Management Manual (120040)
Pathway/TS TCP and Terminal Programming Guide (121308)
Programming for Specific Terminals
Introduction to TCP and Terminal
Pathway/XM System Management Manual (426761-001)
Configuring servers
Pathway/XM Benefits and Features
Pathway/iTS Web Client Programming Manual (426746-001) Introduction to Pathway/iTS Web Clients
Pathway/iTS SCUP Reference Manual (426747-001)
RDF/MP and IMPX System Management, (424123-001)
Introducing RDF

Exam Preparation Guide: Exam # HP0-664 18
NonStop? Application Design and Development – Level 1

RDF Command Summary
Security Management Guide (118610)
Software Release Document T8628D40 (427169-001)
SPI Programming Manual (427506-001) SPI Concepts and Protocols
TACL Reference Manual (109462)
Built-In Functions and Variables
UTILS: TACL Commands and Functions
Tandem Capacity Model (TCM) Manual (424093-001)
Tandem Performance Data Collector (TPDC) Manual (425647-001)
TM/MP Application Programmer’s Guide (136586)
TMF Programming Environment
Procedure Call Syntax
TNS/R Native Application Migration Guide (136525)
Introduction to Native Mode
Developing a Migration Strategy
TS/MP Pathsend and Server Programming Manual (132500)
Glossary
Designing your Application
Writing Pathsend Requesters
TS/MP System Management Manual (135027)
Overview of PATHCOM
Managing the Pathsend Environment
Configuring Objects in a PATHMON Environment
SERVER Commands
ViewPoint Manual using ViewPoint (426801-001)

Thursday, February 25, 2010

CompTIA isn't so utility as it supposed to be

Many persons who participated in the CompTIA certification exam holding unrealistic expectations usually got a frustrated ending. Before taking part in the exam, many people will hold the following expectations:

  • CompTIA Security+ certification is the only way to get a job successfully in the IT industry;
  • CompTIA Security+ certification is my golden key to success;
  • Achieving CompTIA Security+ certification, I will obtain the job I have dreamed;
  • CompTIA Security+ is the rule of IT industry;
  • CompTIA Security+ certification is a big golden mine....

Does CompTIA Security+ certification really play a such big role? Perhaps misinterpreted what is certification would have unrealistic expectations.

In the fact, certification exam is designed to assess candidate's knowledge about a certain software, logical thinking ability, as well as a problem-solving ability, such as the CompTIA sy0-101 test. however, the rich skills and experiences are also needed for the customers and employers. You should know that, the certification exam could bring you the rich working skills and experiences .

Besides, sy0-101 is mainly concerned with technical skills, and you won't be able to succeed in the IT industry with skills. Therefore, if you want to get somewhere in IT industry, apart from the proficiency in a certain skill, you also need other knowledge such as interpersonal relationships, contacting skills, team work and so on.

In short, you should consider carefully before applying for cerfication exam. In addition, you must guarantee yourself enough time and resource to complete the exam. You can also get more useful experience from the media, the Internet or even from your boss.