Oracle administrator
Top sales list oracle administrator
Hyderabad (Andhra Pradesh)
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry's only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Database design Target Audience Business Intelligence Developer Data Warehouse Administrator Business Analysts Data Warehouse Analyst Data Modelers Reports Developer Data Warehouse Developer Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10,Flat No: 102,
See product
Hyderabad (Andhra Pradesh)
sadguru technologies 8179736190 Course name : WEBLOGIC11G 24*7 technical support faculty : Realtime experience Rs Trainings:is a brand and providing quality online and offline trainings to students in world wide. We are giving best online training on WEBLOGIC Highlights in our training service: Every faculty has Real Time experiance .Trained Resources placed in countries like Australia, USA, UK, JAPAN, SWEDEN etc.Any critical issues faced by resource resolved using Teamviewer, webex.Supporting the resource with Top 100 Interview questions. Résumé built in best corporate standards according to the job description. We will market the resume for top technolgy countries.After each week a status exam is conducted. Offline online trainings are conducted everyday.Weekend trainings for job goers.flexible timings in accordance with the resource comfortability.If version related to any Tool is upgraded. We will send the upgraded information via email.we will develop the Aquintance with Production,development and testing environments.Real time scenarios covered accross Software Development Life Cycle.for every 10 hours One hour catered to resolve the doubts.Explaining bugs and critical issues and development activities 24*7 technical supports sevices. Course content: WEBLOGIC ADMINISTRATION 11G ( on Linux Environment ) Description An enterprise application consists of various components and resources such as Enterprise JavaBeans, Servlets, JSPs, Database Connections, HTML files, XML files, etc. After application developers finish developing the various components, it is the system administrator's job to put everything together into the WebLogic Server environment and make it available to users at Web browsers. As a WebLogic Server Administrator, you are responsible for, among other things: • Starting and stopping servers • Balancing the load on servers or connection pools • Selecting and monitoring the configuration of resources • Detecting and correcting problems • Monitoring and evaluating system performance • Deploying Enterprise JavaBeans, Web Applicatio
See product
Delhi (Delhi)
We, VirtualNuggets are one of the best institute providing quality level of training in E-learning process. This is Oracle DBA online training. A database administrator (DBA) is an IT professional responsible for the installation, configuration, upgrading, administration, monitoring, maintenance, and security of databases in an organization. The role includes the development and design of database strategies, system monitoring and improving database performance and capacity, and planning for future expansion requirements. They may also plan, co-ordinate and implement security measures to safeguard the database. About VirtualNuggets VirtualNuggets is progressive online education assistance team related to software programming and other IT services. VirtualNuggets offer you efficient yet affordable services with quality as the main objective. Our experts’ team assists you in every phase of your duration of the course. VirtualNuggets help you explore every in the competent job market. In this competitive world of IT, every professional needs multi-tasking efficiency to curb down the global crisis and to enhance the job security. We have enormous list of courses which can make you fit for any challenge at your job side. Without losing your valuable time, online education courses make it easy to learn necessary courses at your home or at work place. Contact us for detailed course content & register for a free demo. India: +91-8885560202; USA: +1-7076668949 Email : info@virtualnuggets(dot)com web URL : http://www.virtualnuggets.com/online-training.html Follow us : http://bestoracledbaonlinetraining.blogspot.in/
See product
Hyderabad (Andhra Pradesh)
Prerequisites
• Dimensional modeling
• Basic SQL
• Data warehouse design
• Database design
Target Audience
• Business Intelligence Developer
• Data Warehouse Administrator
• Business Analysts
• Data Warehouse Analyst
• Data Modelers
• Reports Developer
• Data Warehouse Developer
• Application Developers
See product
Hyderabad (Andhra Pradesh)
I often get mails from people asking what are the questions generally asked in Weblogic by interviewers. Generally for an Administrator’s positions, in addition to Weblogic questions, there are a lot of Unix questions and a few questions related to process and case handling. These are the important questions that I cover while interviewing. 1. How do you differentiate between a server hang and server crash issue? When a Server crahes, the JAVA process no longer exists. When the Server is hung, it stops responding. We can use the weblogic.ADMIN utilty to ping the server. In case of a hang situation we can take multiple thread dumps and analyze the cause of hang. 2. What can be the various reasons for a server crash? a) Native IO b) SSL Native Libraries c) JVM d) Supported Configuration e) JDBC Driver issue 3. How do you troubleshoot a crash? JVM crash generates a hs_err_pid file. We need to look into the stack trace of the hs_err_pid file . If the thread is from a native io, we need to disable native io. if the stack trace is from the driver, we need to get in touch with the drive team. Quite possibly its a problem with driver. Changing the type of driver can be a workaround. If the thread shows it coming from an optimzed code, we can turn of optimization. If the stack is from native calls of application, its a bug with the application and it has to b modified. 4. Ho do you troubleshoot Server Hang? We can use java weblogic.Admin PING to check if we get a normal response. We need to take multiple thread dumps with kill -3 pid on unix and CTLR Break on Windows. Analyze the thread dump to find the root cause. 5. What can be the reasons of Server hang? Memory leak, databse query taking a long time to return, Deadlock. 6. What is memory leak? Memory leak is when objects are not romved from the heap even when they are not required. 7. What are the various causes for OUT OF MEMORY? a) Insufficient heap size, not able to match the extra load. b) Objects licing too long, like HTTP Sessions. c) Memory leak in application code. d) Full GC not happening due to JVM Bug. 8. How to troubleshoot and overcome such issues? Gather memory data by enabling GC verbose. If its due to Http Session, timing out http session after certain interval might help. Look into the code for jdbc connection handling. Optimizing the heap size according to the load. 9. When does High CPU Usage occur? It occurs when one process or one thread utilizes unexpectedly high proportion of CPU. 10. How to troubleshoot it? In Solaris environment, we need to take pstack and prstack and see what the threads are doing. In Windows we need to use pslist and process explorer. 11. What is Clustering and what is achieved through it? Clustering is the grouping together of servers for the purpose of high availability and scalability. Load balancing and Failover is achieved. 12. How does Cluster Communication Happen? Members of the Cluster communicate over the Cluster Multicast IP and Port by sending periodic heart beat messages. 13. What is the difference between the Sun JVM and BEA JRockit JVM? The most well know JVM is the implementation from Sun. The Sun JVM is called HotSpot. The Sun JVM is shipped in the Java Developer’s Kit (JDK) and Java Runtime Environment (JRE) from Sun. The BEA JRockit JVM from BEA systems is optimized for reliability and performance for server side applications. To achieve this, BEA JRockit JVM uses technologies such as code generation, hot spot detection, code optimization, advanced garbage collection algorithms and tight operating system integration. 14. TUning JVM Parameters. If you have a single processor, single thread machine then you should use the serial collector (default for some configurations, can be enabled explicitly for with -XX:+UseSerialGC). For multiprocessor machines where your workload is basically CPU bound, use the parallel collector. This is enabled by default if you use the -server flag, or you can enable it explicitly with -XX:+UseParallelGC. If you’d rather keep the GC pauses shorter at the expense of using more total CPU time for GC, and you have more than one CPU, you can use the concurrent collector (-XX:+UseConcMarkSweepGC). Note that the concurrent collector tends to require more RAM allocated to the JVM than the serial or parallel collectors for a given workload because some memory fragmentation can occur.
See product
Hyderabad (Andhra Pradesh)
sadguru technologies 8179736190 Web logic Server Basics Understanding TCP/IP and HTTP Web logic Application server Web logic 10.3 Features Web logic system administrator Infrastructure J2EE Components
See product
Hyderabad (Andhra Pradesh)
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry's only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Database design Target Audience Business Intelligence Developer Data Warehouse Administrator Business Analysts Data Warehouse Analyst Data Modelers Reports Developer Data Warehouse Developer Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10,Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Landmark: Beside Umesh Chandra Statue, Hyderabad-500038, Mob:91-8179736190,Ph:040-40154733.
See product
Hyderabad (Andhra Pradesh)
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry's only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Database design Target Audience Business Intelligence Developer Data Warehouse Administrator Business Analysts Data Warehouse Analyst Data Modelers Reports Developer Data Warehouse Developer Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10,Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Landmark: Beside Umesh Chandra Statue, Hyderabad-500038, Mob:91-8179736190,Ph:040-40154733. Contact advertiser
See product
Chennai (Tamil Nadu)
Our Oracle training in Chennai is the best place to enhance knowledge skills from IT professional experts and offer 100% Placement Guarantee.Oracle training handled from basics to advanced level. Oracle Course syllabus is customized based on student needs to meet the goal.Learn Oracle with real time scenarios and this leads the students to apply the concept in practical environment. Before you go for Oracle training course, it is necessary to know whether this profession decision has great demand in IT Marketing Filed. The upcoming news is that few organizations are looking for good Oracle skilled candidates. Our Oracle Courses are prepared with recent technologies topic and it will be update.Classroom based Oracle training in Chennai Courses developed in a more intensive way over a short period of time and this type of training is flexible for learners who wants to finish the course as quick. Database administrator ought to be skilled. Database executives ought to likewise keep themselves overhauled with the most recent innovation. There are Certify courses offered by Microsoft and Oracle which one can concentrate on after a degree in software engineering or data innovation. Here we provide separate training for slow learners and definitely everyone get satisfied after in our institute.Our Oracle Course in Chennai offered IT training and obtained additional supports by enrolling with us. To know more details of Course fee and duration, just give a call to 9566293201 or drop queries to shanmugapriya.mohan@peridotsystems.in. Make your career future towards Oracle and always Our Oracle training in Chennai ready to provide best services.
See product
Chennai (Tamil Nadu)
Our Oracle training in Chennai is the best platform for people to build knowledge skills in Oracle.100% Placement Guarantee Offered and give technical guidance for life long. Here at Peridot,We have 8+ years of experienced professional trainer and they are handled the oracle topics with real time scenarios. There are some courses with certification provided by Oracle and Microsoft which one can get on after a graduate degree in software engineering or data innovation. Oracle Modules Oracle DBA Oracle SQL/PL SQL Database executives ought to likewise keep themselves overhauled with the most latest innovation.Database administrator ought to be skilled.Many of the organizations looking for skilled candidates in oracle and most of the companies hired our oracle students. Make your career towards Success by learning oracle training course from our professional experts.All the modules will be taken from basics to most advanced technology concept. Our Fringe Benefits Unlimited Lab Facility Support LCD Equipped classroom System provided for each and every individuals Interactive sessions Free demo class for two days Help in Professional Resume preparation Provide study material in soft copy Free mock interview preparation Incase if you want to get more details about the training course, then just give me a call to 9566293201 or else send your details to shanmugapriya.mohan@peridotsystems.in. Classroom and Online based training offered at IT Standard level.Affordable price offered for every candidate. Duration:45hrs Available Batches:Fast track classes,Weekday and Weekend Timing:Student Flexible Timing
See product
India
Overview: The Blue Coat Certified ProxySG Administrator (BCCPA) training course is intended for IT professionals who wish to master the fundamentals of the Blue Coat ProxySG. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
India
The Adobe CQ5 System Administrator training focuses on how to install, configure, maintain, and troubleshoot CQ5.Introduced to the basic philosophy and concepts of the CQ5 architecture and learn how to integrate CQ5 in a production-level environment.ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. Contact: Ecorptrainings Email: training@ecorptrainings.com USA: +1-703-445-4802 UK : +44 20 3287 2021 India: 040-64643304/06,+91-8143-111-555 Gtalk ID : ecorptrainings Skype ID : ecorptrainings
See product
Hyderabad (Andhra Pradesh)
Oracle SOA Suite 11g Administration @SADGURU Technologies-8179736190 The course describes how Oracle SOA Suite 11g, a Middleware component of Oracle Fusion Middleware, provides a complete set of service infrastructure components. These components include Mediator, BPEL, Human Workflow, Business Rules and Business Process Management for designing, deploying and managing SOA composite applications. We are providing Oracle Fusion ADMINISTRATION(Web Logic & SOA ADMIN) under Yashwanth, MTech, and Technical Manager in CMMI Level 5 Company with 9+ years of middleware experience, successfully placed above 800+ members in 1 year. We provide sufficient lab facility and also 24/7 online Lab facility, Student can connect from home to do the LAB practical’s Learn To: Install Oracle SOA Suite 11g. Deploy SOA Composite Applications. Configure and administer Oracle SOA Suite 11g and its components. Monitor, troubleshoot and tune Oracle SOA Suite 11g components. Troubleshoot SOA composite applications by performing corrective actions, like fault recovery. Configure Security Policies for SOA Composite applications. Backup and recover Oracle SOA Suite 11g. Tune and configure the Oracle SOA Suite 11g environment for high availability (through a brief introduction). Prerequisite Skills & Knowledge You're required to understand essential Oracle WebLogic Server administration tasks before taking this course. You'll learn how to install and configure Oracle SOA Suite 11g components in Oracle WebLogic Server domains. Oracle Enterprise Manager Fusion Middleware Control Expert instructors will also teach you how to use the Oracle Enterprise Manager Fusion Middleware Control Console. You'll use this console to perform the following administrative tasks: deploy SOA composite applications, configure SOA composite application resources, monitor SOA composite applications, manage and monitor service engines and update the state of SOA composite applications. Skills Gained ·Describe the Oracle SOA Suite 11g Architecture ·Discuss Service Component Architecture (SCA) ·Discuss Service Oriented Architecture (SOA) concepts ·Install Oracle SOA Suite 11g ·Deploy SOA Composite Applications ·Backing up and recovering Oracle SOA Suite 11g ·Overview of high availability with Oracle SOA Suite 11g ·Configure Security Policies for SOA Composite applications ·Configure and Administer Oracle SOA Suite 11g and its components ·Monitor, troubleshoot, and tune Oracle SOA Suite 11g components Who Can Benefit ·Administrator ·SOA Architect ·Security Administrators ·System Administrator ·System Integrator ·Technical Administrator Prerequisites
See product
India
Oracle Fusion Middleware 11g SOA Administrator Training - Contents
We are glad to announce our newly launched Online Oracle Fusion
Middleware 11g SOA
The Oracle SOA Suite 11g: Administration course describes how Oracle SOA Suite 11g, a Middleware component of Oracle Fusion Middleware, provides a complete set of service infrastructure components (such as Mediator, BPEL, Human Workflow, Business Rules, and Business Process Management components) for designing, deploying, and managing SOA composite applications. The participant is therefore required to have knowledge about essential Oracle WebLogic Server administration tasks. They learn how to install and configure Oracle SOA Suite 11g components in Oracle WebLogic Server domains. They learn to use the Oracle Enterprise Manager Fusion Middleware Control Console to perform administrative tasks such as deploying SOA composite applications, configuring SOA composite application resources, monitoring SOA composite applications, managing and monitoring service engines, and updating the state of SOA composite applications. They also learn how to troubleshoot SOA composite applications by performing corrective actions such as fault recovery. They are given a brief introduction to tuning and configuring Oracle SOA Suite 11g environment for high availability.
See product
India
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry’s only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Sadguru Technologies Education is a fast growing Oracle Training company in India, run by a team of well experienced IT Professionals who have worked for years in IT MNCs. Sadguru Technologies Team focuses on delivering High Quality Trainings based on real time expertise especially for Working professionals. Our trainings simulate a live corporate training environment with latest technologies being used in delivering the sessions. Prerequisites • Dimensional modeling • Basic SQL • Data warehouse design • Database design Target Audience • Business Intelligence Developer • Data Warehouse Administrator • Business Analysts • Data Warehouse Analyst • Data Modelers • Reports Developer • Data Warehouse Developer • Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Landmark: Beside Umesh Chandra Statue, Hyderabad-500038, Mob: 91-8179736190,Ph: 040-40154733.
₹ 15.000
See product
India
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry’s only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Sadguru Technologies Education is a fast growing Oracle Training company in India, run by a team of well experienced IT Professionals who have worked for years in IT MNCs. Sadguru Technologies Team focuses on delivering High Quality Trainings based on real time expertise especially for Working professionals. Our trainings simulate a live corporate training environment with latest technologies being used in delivering the sessions. Prerequisites • Dimensional modeling • Basic SQL • Data warehouse design • Database design Target Audience • Business Intelligence Developer • Data Warehouse Administrator • Business Analysts • Data Warehouse Analyst • Data Modelers • Reports Developer • Data Warehouse Developer • Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Landmark: Beside Umesh Chandra Statue, Hyderabad-500038, Mob: 91-8179736190,Ph: 040-40154733.
₹ 15.000
See product
India
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry’s only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Sadguru Technologies Education is a fast growing Oracle Training company in India, run by a team of well experienced IT Professionals who have worked for years in IT MNCs. Sadguru Technologies Team focuses on delivering High Quality Trainings based on real time expertise especially for Working professionals. Our trainings simulate a live corporate training environment with latest technologies being used in delivering the sessions. Prerequisites • Dimensional modeling • Basic SQL • Data warehouse design • Database design Target Audience • Business Intelligence Developer • Data Warehouse Administrator • Business Analysts • Data Warehouse Analyst • Data Modelers • Reports Developer • Data Warehouse Developer • Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Landmark: Beside Umesh Chandra Statue, Hyderabad-500038, Mob: 91-8179736190,Ph: 040-40154733.
See product
India
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry’s only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Sadguru Technologies Education is a fast growing Oracle Training company in India, run by a team of well experienced IT Professionals who have worked for years in IT MNCs. Sadguru Technologies Team focuses on delivering High Quality Trainings based on real time expertise especially for Working professionals. Our trainings simulate a live corporate training environment with latest technologies being used in delivering the sessions. Prerequisites • Dimensional modeling • Basic SQL • Data warehouse design • Database design Target Audience • Business Intelligence Developer • Data Warehouse Administrator • Business Analysts • Data Warehouse Analyst • Data Modelers • Reports Developer • Data Warehouse Developer • Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM
See product
India
Oracle Business Intelligence Enterprise Edition@Sadguru technologies Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organisation, resulting in improved decision-making, better-informed actions, and more efficient business processes. Oracle also provides the industry’s only multi-sourced BI applications, as well as market-leading performance management applications that are powered by this BI platform. Sadguru Technologies Education is a fast growing Oracle Training company in India, run by a team of well experienced IT Professionals who have worked for years in IT MNCs. Sadguru Technologies Team focuses on delivering High Quality Trainings based on real time expertise especially for Working professionals. Our trainings simulate a live corporate training environment with latest technologies being used in delivering the sessions. Prerequisites • Dimensional modeling • Basic SQL • Data warehouse design • Database design Target Audience • Business Intelligence Developer • Data Warehouse Administrator • Business Analysts • Data Warehouse Analyst • Data Modelers • Reports Developer • Data Warehouse Developer • Application Developers For New Batch Contact Us: Mob: 08179736190 (OR) Mail: SDTECH.SOA@GMAIL.COM Address: SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Landmark: Beside Umesh Chandra Statue, Hyderabad-500038, Mob: 91-8179736190,Ph: 040-40154733.
₹ 15.000
See product
India (All cities)
Duration: 10.5 hours Size: 1.63 GB 1. Database Basics 1. Oracle Database Introduction & Basics of Tables. 2. Setting Up the SQL Development Environment (Mac & Windows). 3. IMPORTANT Prepare the Data in the Database. 3.1 course_data.txt.txt 2. Single Table Queries (Exercises & Solutions in the Lectures) 1. Oracle Exams and Certification Information.html 2. Retrieving Data Using the SELECT Clause. 3. Using the WHERE Clause in a Query. 4. Using Operators in the WHERE Clause. 5. Combining WHERE, AND & OR with Operators. 6. Query Filtering Continued BETWEEN, IN and NULL. 7. Query Filtering Conditions & Operator Precedence. 8. Ordering, Concatenating & Aliasing Query Results. 3. Single Row Functions (Exercises and Solutions In the Lectures) 1. Single Row Functions (SRF) & Using The Dual Table. 2. Using Functions in WHERE And Character Based SRFs. 3. Numeric and Date Data type SRFs. 4. Conversion SRFs & Date Formatting. 5. Some More Date Functions.html 6. Concluding SRFs & NULL NULLIF Functions. 4. Grouping Functions (Exercises and Solutions In the Lectures) 1. Grouping Functions MIN, MAX, AVG, COUNT etc.. 2. GROUP BY Clause & HAVING Clause. 3. More Practice With The GROUP BY Clause. 5. Multi-Table Queries and Joins (Exercises and Solutions In the Lectures) 1. SELECT within SELECT (Subqueries). 2. Relating Tables Together Using JOINs. 3. Joins Continued INNER & OUTER Joins. 4. Correlated Subqueries with EXISTS & NOT EXIST operators. 6. Creating, Altering, and Updating Objects Using SQL (Exercises in Lectures) 1. Creating Your Own Tables & Design Considerations. 10. Views and Other Objects and Commands (Newly Added). 11. SQL could be tricky, check this out!.html 12. Granting and Revoking Privileges. 2. Inserting Data Into Our Table. 3. Create Table With a Primary Key Constraint. 4. Using ALTER to modify the table structure. 5. Create Table with SELECT + UPDATE Data. 7. DELETE, TRUNCATE, and DROP Commands. 8. Working With Database Indexes. 9. System Tables, Pseudo Columns & Deleting Duplicates (Newly Added). Guides PDF Advanced Oracle PL_SQL Developer’s Guide.pdf Beginning Oracle SQL for Oracle Database 12c, 3 edition.pdf.pdf OCA Oracle Database 12c_ SQL Fundamentals I Exam Guide (Exam 1Z0-061).pdf OCA_ Oracle Database 12c Administrator Certified Associate Study Guide_ Exams 1Z0-061 and 1Z0-062.pdf OCP_ Oracle Database 12c Administrator Certified Professional Study Guide_ Exam 1Z0-063.pdf Oracle 12c SQL.pdf creating_other_schema_objects_questions.pdf e47689.pdf subqueries_to_solve_queries_questions.pdf
₹ 234
See product
India
WEBLOGIC ADMIN TRAINING IN HYDERABAD@Sadguru Technologies We are glad to announce our newly launched Online Oracle Fusion Middleware 11g SOA The Oracle SOA Suite 11g: Administration course describes how Oracle SOA Suite 11g, a Middleware component of Oracle Fusion Middleware, provides a complete set of service infrastructure components (such as Mediator, BPEL, Human Workflow, Business Rules, and Business Process Management components) for designing, deploying, and managing SOA composite applications. The participant is therefore required to have knowledge about essential Oracle WebLogic Server administration tasks. They learn how to install and configure Oracle SOA Suite 11g components in Oracle WebLogic Server domains. They learn to use the Oracle Enterprise Manager Fusion Middleware Control Console to perform administrative tasks such as deploying SOA composite applications, configuring SOA composite application resources, monitoring SOA composite applications, managing and monitoring service engines, and updating the state of SOA composite applications. They also learn how to troubleshoot SOA composite applications by performing corrective actions such as fault recovery. They are given a brief introduction to tuning and configuring Oracle SOA Suite 11g environment for high availability. Course Contents: I. Introduction to Oracle Fusion Middleware 11g • Fusion Middleware concepts • Introduction to WebLogic Server • WebLogic Server Domain, Administration Server and Managed Server • Oracle Instance , Oracle Home, Metadata Repository • File System and Directory Structure in Fusion Middleware II. Installation & configuration of Fusion Middleware (DB, WebLogic & SOA Suite) • Installing Oracle Database • Installing Metadata Repository for Fusion Middleware • Installing WebLogic Server • Installing Additional Fusion Middleware component (SOA Suite) • Configuring Fusion Middleware component (SOA Suite) • Start/Stop Services Oracle Fusion Middleware 11g SOA Administrator Training - Contents • Start/Stop WebLogic Administration Server • Start/Stop Managed Server • Start/Stop Middleware Control III. Node Manager and Deploying Application • Introduction to Node Manager • Configuring Node Manager and starting Managed Servers using Node Manager • Overview of Deploying Applications • Understanding Data Sources • Deploying and Undeploying Java EE Applications IV. Monitoring Oracle Fusion Middleware • Overview of Monitoring Oracle Fusion Middleware • Monitoring the Status of Oracle Fusion Middleware • Monitoring an Oracle WebLogic Server Domain • Monitoring an Oracle WebLogic Server Administration Server or Managed Server • Monitoring a Component • Monitoring Applications • Monitoring the Performance of Oracle Fusion Middleware Components V. Configuring Security and High Availability for SOA • Creating Additional Administrative Users • Creating Additional Users with Specific Roles • Changing the Administrative User Password • Defining Virtual Hosts for SOA Cluster • Installation and Configuration of SOA in Active Cluster. Thanks & Regards, SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Hyderabad-500038, Landmark: Beside Umesh Chandra Statue, Approach Road Parallel to Main Road Mob: 91-8179736190, Ph: 040-40154733 Web site: http://www.sadgurutechnologies.com/ Blog:http://easyoraclefusionlessions.blogspot.in/ http://oraclesoasuite11gtraining.hpage.com/ …………………………………………………………………… …………………………………………………………….. Oracle WebLogic Server 11g Administration@ 8179736190 Duration: 25hours What you will learn This course trains Web administrators on techniques for installing and configuring Oracle WebLogic Server 11g. It alsotrains Web administrators to deploy Java EE applications to Oracle WebLogic Server 11g using Administration Consoleand command-line and scripting tools like WLST. Course Objectives: • Describe the architecture of WebLogic Server including domains, servers and machines • Install, configure and use WebLogic Server • Perform routine Oracle WebLogic Server administration functions • Set up a cluster of servers and distribute applications and resources to the cluster • Configure Oracle HTTP Server as the Web-tier front end for Oracle WebLogic Server instances and clusters • Deploy different types of Java EE applications to Oracle WebLogic Server • Deploy and manage large-scale Java EE applications to servers or clusters through the entire development andproduction lifecycle • Configure basic resource and application security • Backup and recover from various failures • Monitor application server using GUI and command-line tools such as automation scripts Thanks & Regards, SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Hyderabad-500038, Landmark: Beside Umesh Chandra Statue, Approach Road Parallel to Main Road Mob: 91-8179736190, Ph: 040-40154733 Web site: http://www.sadgurutechnologies.com/ Blog:http://easyoraclefusionlessions.blogspot.in/ http://oraclesoasuite11gtraining.hpage.com/
See product
India
WEBLOGIC ADMIN TRAINING IN HYDERABAD@Sadguru Technologies We are glad to announce our newly launched Online Oracle Fusion Middleware 11g SOA The Oracle SOA Suite 11g: Administration course describes how Oracle SOA Suite 11g, a Middleware component of Oracle Fusion Middleware, provides a complete set of service infrastructure components (such as Mediator, BPEL, Human Workflow, Business Rules, and Business Process Management components) for designing, deploying, and managing SOA composite applications. The participant is therefore required to have knowledge about essential Oracle WebLogic Server administration tasks. They learn how to install and configure Oracle SOA Suite 11g components in Oracle WebLogic Server domains. They learn to use the Oracle Enterprise Manager Fusion Middleware Control Console to perform administrative tasks such as deploying SOA composite applications, configuring SOA composite application resources, monitoring SOA composite applications, managing and monitoring service engines, and updating the state of SOA composite applications. They also learn how to troubleshoot SOA composite applications by performing corrective actions such as fault recovery. They are given a brief introduction to tuning and configuring Oracle SOA Suite 11g environment for high availability. Course Contents: I. Introduction to Oracle Fusion Middleware 11g • Fusion Middleware concepts • Introduction to WebLogic Server • WebLogic Server Domain, Administration Server and Managed Server • Oracle Instance , Oracle Home, Metadata Repository • File System and Directory Structure in Fusion Middleware II. Installation & configuration of Fusion Middleware (DB, WebLogic & SOA Suite) • Installing Oracle Database • Installing Metadata Repository for Fusion Middleware • Installing WebLogic Server • Installing Additional Fusion Middleware component (SOA Suite) • Configuring Fusion Middleware component (SOA Suite) • Start/Stop Services Oracle Fusion Middleware 11g SOA Administrator Training - Contents • Start/Stop WebLogic Administration Server • Start/Stop Managed Server • Start/Stop Middleware Control III. Node Manager and Deploying Application • Introduction to Node Manager • Configuring Node Manager and starting Managed Servers using Node Manager • Overview of Deploying Applications • Understanding Data Sources • Deploying and Undeploying Java EE Applications IV. Monitoring Oracle Fusion Middleware • Overview of Monitoring Oracle Fusion Middleware • Monitoring the Status of Oracle Fusion Middleware • Monitoring an Oracle WebLogic Server Domain • Monitoring an Oracle WebLogic Server Administration Server or Managed Server • Monitoring a Component • Monitoring Applications • Monitoring the Performance of Oracle Fusion Middleware Components V. Configuring Security and High Availability for SOA • Creating Additional Administrative Users • Creating Additional Users with Specific Roles • Changing the Administrative User Password • Defining Virtual Hosts for SOA Cluster • Installation and Configuration of SOA in Active Cluster. Thanks & Regards, SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar Main Road, Hyderabad-500038, Landmark: Beside Umesh Chandra Statue, Approach Road Parallel to Main Road Mob: 91-8179736190, Ph: 040-40154733 Web site: http://www.sadgurutechnologies.com/ Blog:http://easyoraclefusionlessions.blogspot.in/ http://oraclesoasuite11gtraining.hpage.com/
See product
India
Overview: Network security consists of the provisions and policies adopted by a network administrator to prevent and monitor unauthorized access, misuse, modification, or denial of a computer network and network-accessible resources. Network security involves the authorization of access to data in a network, which is controlled by the network administrator. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
India
Overview: The Network Node Manager (NNM) is a program that helps a network administrator view and manage the conditions in a computer network. NNM is part of the OpenView suite of enterprise system management applications from Hewlett-Packard (HP). Using the Network Node Manager, an administrator can view the network in an easy-to-see graphical format. NNM "discovers" the devices that are in the network and shows their relative location and their status. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
Achalpur (Maharashtra)
Module: SAP Basis SAP BASIS is a complete administration of the SAP system. SAP BASIS consultant mostly works on SAP administration. From The Installation of the software, maintaining the efficient database, optimizing the system, security of the system etc. is the role of the BASIS consultant. There is always a demand for Good BASIS consultant who understands the System in and out from administration perspective. Prerequisite for training Bachelor degree in engineering and computer application (BCA) Postgraduate degree/diploma (MCA, MCS etc.) Working experience in related field (Database, UNIX, etc.) would be an added advantage Training Course Content Introduction Introduction to SAP R/3 SAP R/3 Architecture Central System Distributed Presentation 2-Tier Configuration 3-Tier Configuration System Landscape & Flow Single System Landscape Two System Landscape Three System Landscape Multi System Landscape Installation of SAP Installation Concepts on Windows & UNIX and Quick Sizing Naming Convention, Software Kit, SAP Licensing Installation Procedure - Windows Application Server for UNIX SAP System R/3 Directory Structure, Kernel GUI Administrator Optimization Security Operation Modes Manual Switching of OP Modes Exceptional Mode Monitoring Profile Maintenance & Parameter Setting System Profile Transport Profile Client Profile Authorization Profile User Administration Creating and Maintaining Master Records, Architecture Logon and Password Security, Protecting Special Users Creating and Maintaining Single and Mass Users and User Groups Copying, Deleting, Locking/Unlocking Users Explanation of Terms Object Class, Authorization Object, Authorization, Profile Create/Maintaining Authorization/Profile Manually Create/Maintaining Roles/Generating Profiles by using PFCG Client Administration Client Maintenance Copying Client within R/3 System (Local) Copying client between R/3 Systems (Remote) Export/Import Protecting Client Monitoring and Verifying a Client Copy Deleting Client Tips and Troubleshooting Transport Management System TMS Terminology and Concepts Configuring TMS and Checking Transport Directory Configuring Transport Domain, Domain Controller and Group Configuring Virtual SAP System and Displaying Configuration Including SAP systems in the Transport Domain Creating Consolidation and Delivery Routes Maintaining SAP Systems without Common Transport Directory Configuring External Systems Locking and Unlocking TMS for a SAP System Deleting SAP System from the Transport Domain Deleting TMS Configuration Change and Transport System Releasing and Transporting Change Request and Tasks Customizing, Workbench, Transport Organizer Importing Change Requests Spool Administration Print related Terminology in OS/SAP Level Setting Local, Remote and Front-End Printing Logical and Real Spool Server Managing Spool Requests using Output Controller Connecting Output Devices to Window System SAPLPD, TemSE, Authorization Patch and Kernel Administration Checking the Patch, Spam, Kernel levels Downloading Installing Patches, Kernel Applying at OS Level, SAPNET, Front-End Troubleshooting Various Issues CCMS Introduction to CCMS CCMS Monitors Alert Monitors Analyzing Alerts and Performance Tuning Background Processing Background Dialogs Concept Defining Jobs Analyzing Jobs Maintenance Jobs Distributed R/3 System Creating Regular Instance Creating Logon Groups for Load Balancing OSS and SNote Concepts How to Use for Different Purposes Manually Applying OSS note on SAP Standard Program SAP Router Installation of SAP Router Creating Route Permission Table Setting Route String Entry for SAP Router Using Various Administrative Options Database Management Introduction to Oracle Oracle Architecture Introduction to SAPDBA Creating Tables and Table Space Adjustment Database Backup, Restore and Recovery Performance Tuning OS, H/W Performance Considerations Memory, Management R/3 Buffers, Page Buffers, Extended and Heap Memory, PRIV Mode System Monitoring Daily, Weekly, Monthly Tasks SAP Implementation Strategy Connectivity between R/3 and BW BW Architecture Defining and Assigning Logical Systems Workbench Administration SAP NetWeaver Trainer’s Profile Working consultants, Module Leads and Project Managers with CMM level 5 companies Freelancers Extensive exposure on various projects covering end-to-end implementation, upgrades, rollouts, enhancements, supports etc. Excellent flair of consulting and training Course Duration Flexible training schedule 60+ hours of class room training Weekdays & Weekend batches Course Fee Rs. 30,000 (INR) System Access 24X7 access to SAP software via internet across globe. Additional Features: Fully comprehensive and practical approach in transferring knowledge Provision of configuration steps Provision of study material strictly from interview point of view Comprehensive test towards the end of the course Preparation for interview Reformatting of CV Contact detail +91-9325793756 (info@learninghub.co.in)
₹ 25
See product
Chennai (Tamil Nadu)
Peridot systems
Peridot Systems is one of the best training institutes for Software Testing, Oracle 10g/11gDBA, Dot Net 4.0, Salesforce.com, Core Java, J2EE, DB2, Solaris Admin, Websphere, WebLogic, Solaris, LINUX commands in Chennai with placement.
We give Job oriented training apart from the theoretical topics. We give 100% Placement assistance and guide the students during their Interview sessions and on their Communication Skills
Initiated by a crew of highly competent and expert professionals with an unique objective to bridge the gap between the field of education and IT industry. Peridot is proud to introduce job oriented IT Training courses with globally accredited certification on all platforms that have wider scope in the existing IT Job Market. These platforms are picked after a thorough research and analysis based upon the existing and prospective IT industry in mind.
Weblogic Server
Web logic Server Basics
• Understanding TCP/IP and HTTP
• Web logic Application server
• Web logic 10.3 Features
• Web logic system administrator Infrastructure
• J2EE Components
• Servlets
• JSP
• EJB
Weblogic Application Server Installation and configurations
• WLS domain Server
• Machine
• Cluster
• Directory structure
• Starting WLS
• Configuring Domain attributes
• Configuring server, cluster
• Service configurations
• Configuring JMS options
• Configuring Database Connectivity
• Connection Pools, Data Sources and Multi Pools
Application Deployment
• Auto Deployment
• Deployment tools
• Cluster Deployment Load balancing and session replication
• Setting up a Cluster across multiple machines
• Weblogic Virtual Hosting
• Configuring Node Manager, Weblogic Server Logging
• Weblogic Server threading model and creating own execute queue
Weblogic and J2EE
• JMS application
• Configuring JMS
• Weblogic JNDI
WLS and HTTP servers
• WLS HTTP server
• Plug-in
Weblogic Performance Tuning Basics
• Reduce the application down time OS ,Network tuning Basics
• Techniques to troubleshoot and fix the OOM, Memory leak, Server Hang, Server Crash problems
Administration Tools
• Web logic java utilities
• Licenses,Architecture,Configurations
• Monitoring alls the domain resources, Servers, Clusters, JMS, Connection pools etc
Application Security
• Managing Web Logic Security and Security providers Authorization framework
Venue:
PeridotSystems
#84/8 Venkatarathinam Main Street, Venkatarathinam Nagar,Adyar, Chennai - 600 020.(Near Adyar BSNL Telephone Exchange)
Contact: 9952954654
See product
Chennai (Tamil Nadu)
Peridot systems
Peridot Systems is one of the best training institutes for Software Testing, Oracle 10g/11gDBA, Dot Net 4.0, Salesforce.com, Core Java, J2EE, DB2, Solaris Admin, Websphere, WebLogic, Solaris, LINUX commands in Chennai with placement.
We give Job oriented training apart from the theoretical topics. We give 100% Placement assistance and guide the students during their Interview sessions and on their Communication Skills
Initiated by a crew of highly competent and expert professionals with an unique objective to bridge the gap between the field of education and IT industry. Peridot is proud to introduce job oriented IT Training courses with globally accredited certification on all platforms that have wider scope in the existing IT Job Market. These platforms are picked after a thorough research and analysis based upon the existing and prospective IT industry in mind.
Weblogic Server
Web logic Server Basics
• Understanding TCP/IP and HTTP
• Web logic Application server
• Web logic 10.3 Features
• Web logic system administrator Infrastructure
• J2EE Components
• Servlets
• JSP
• EJB
Weblogic Application Server Installation and configurations
• WLS domain Server
• Machine
• Cluster
• Directory structure
• Starting WLS
• Configuring Domain attributes
• Configuring server, cluster
• Service configurations
• Configuring JMS options
• Configuring Database Connectivity
• Connection Pools, Data Sources and Multi Pools
Application Deployment
• Auto Deployment
• Deployment tools
• Cluster Deployment Load balancing and session replication
• Setting up a Cluster across multiple machines
• Weblogic Virtual Hosting
• Configuring Node Manager, Weblogic Server Logging
• Weblogic Server threading model and creating own execute queue
Weblogic and J2EE
• JMS application
• Configuring JMS
• Weblogic JNDI
WLS and HTTP servers
• WLS HTTP server
• Plug-in
Weblogic Performance Tuning Basics
• Reduce the application down time OS ,Network tuning Basics
• Techniques to troubleshoot and fix the OOM, Memory leak, Server Hang, Server Crash problems
Administration Tools
• Web logic java utilities
• Licenses,Architecture,Configurations
• Monitoring alls the domain resources, Servers, Clusters, JMS, Connection pools etc
Application Security
• Managing Web Logic Security and Security providers Authorization framework
Venue:
PeridotSystems
#84/8 Venkatarathinam Main Street, Venkatarathinam Nagar,Adyar, Chennai - 600 020.(Near Adyar BSNL Telephone Exchange)
Contact: 9952954654
See product
Chennai (Tamil Nadu)
Peridot systems
Peridot Systems is one of the best training institutes for Software Testing, Oracle 10g/11gDBA, Dot Net 4.0, Salesforce.com, Core Java, J2EE, DB2, Solaris Admin, Websphere, WebLogic, Solaris, LINUX commands in Chennai with placement.
We give Job oriented training apart from the theoretical topics. We give 100% Placement assistance and guide the students during their Interview sessions and on their Communication Skills
Initiated by a crew of highly competent and expert professionals with an unique objective to bridge the gap between the field of education and IT industry. Peridot is proud to introduce job oriented IT Training courses with globally accredited certification on all platforms that have wider scope in the existing IT Job Market. These platforms are picked after a thorough research and analysis based upon the existing and prospective IT industry in mind.
Salesforce
Salesforce.com Administrator Essentials & Advanced Administration
• Introduction to SalesForce
• Security and Identity Confirmation
• Salesforce CRM Ideas
• Customizing Your Display
• Customizing Salesforce CRM Ideas
• Enabling Custom Fiscal Years
• Managing Salesforce CRM Ideas
• Managing Email Templates
• Salesforce CRM Content
• Managing Record Types
• Uploading and Publishing Content
• Setting Field-Level Security
• Customizing Salesforce CRM Content
• Custom Field Types
• Custom Button Considerations
• Mapping Custom Lead Fields
• Managing Workflow Rules
• Labeling of a Standard Object
• About Archived ActivitiesUser Fields
• Defining Custom Report Types
• Transferring Records
• Setting Up Custom Report Types
• Setting Up Web-to-Lead
• Salesforce Connect for Microsoft Outlook
• Exporting Backup Data
• Installing Salesforce Offline
• Refreshing Dashboard Data
• Managing Your Developer Sandboxes
• Scheduling a Dashboard Refresh
• Development as a Service
• General Permissions
• Updating Campaign History
• Search Fields
• Defining Custom Report Types
• Displaying and Editing Campaigns
• Deleting Cases
• Categorizing Solutions
• Creating Custom Object Tabs
• Creating Events
• Creating Custom List Views
• Enabling Territory Management
• Google AdWords
• Creating and Modifying Presentations in Salesforce CRM Content
Course Duration : 24 Hrs
SalesForce Development (Certified Force.com Developer)
• Creating an App with Point-and-Click Tools
• Creating Custom Objects
• Creating Custom fields
• Creating a Tab
• Creating an Application
• Creating an App with the Force.com IDE
• Creating a project in IDE
• Creating Custom Objects in IDE
• Creating Custom fields in IDE
• Creating a Tab in IDE
• Creating an Application in IDE
• Testing Application
• Using Formulas and Validation
• Creating field validation
• Creating Formula fields
• Creating address field using Formula field
• Using Workflow and Approvals
• Creating Users
• Creating Email Templates
• Creating Workflow Testing Workflow
• Creating an Approval Process
• Testing Approval Process
• Apex
• Creating an Apex Class
• Creating an Apex Trigger
• Testing the Trigger
• Visualforce
• Visualforce Developer Mode
• Creating Visualforce Page
• Creating custom view
• Creating Visualforce Controller
• Displaying data table on Visualforce Page
• Adding Tests to Your Application
• Working with Force.com Sites
• Registering Force.com domain name
• Creating Force.com site
• Testing site
• Adding Email Services
• Downloading and Deploying an App Using Code Share
• Packaging and Distributing an Application
• Create a Package
• Add components to your package
• Uploading Package
• Installing package
Venue:
PeridotSystems
#84/8 Venkatarathinam Main Street, Venkatarathinam Nagar,Adyar, Chennai - 600 020.(Near Adyar BSNL Telephone Exchange)
Contact: 9952954654
See product
Achalpur (Maharashtra)
Data Stage Course Content at Traning at learning hub Magarpatta city /FC Road Pune (+91-93257-93756) www.learninghub.co.in Data Stage Data Stage Course Content at Learning Hub Contents • Introduction about Data Stage • Difference between Server Jobs and Parallel Jobs • Difference between Pipeline Parallelisms • Partition techniques (Round Robin, Random, Hash, Entire, Same, Modules,Range,DB2,Auto) • Configuration File • Difference between SMP/MPD architecture • Data Stage Components (Server components/Client Components) • Package Installer Data Stage Administrator • Creating project, Editing project and Deleting project • Permissions to user • .Apt Config file • Environment variable creation, permission Data stage director • Introduction to Data stage Director • Job status View • View logs • Scheduling • Batches Creation Designer • Introduction about Designer • Repository • Palatte • Types of Links • File Stages • Sequential File • Data set File • Lookup file set • Difference between Sequential file/Dataset/File set • Database stages • Dynamic RDBMS • Oracle Enterprise • ODBC Enterprise • Stored Procedure Processing stages • Change Capture (Caption) • Compare stage • Difference Stage • Aggregate Stage • Transformer Stage • Surrogate Generator Stage • Join Generator Stage • Merge Generator Stage • Lookup Generator Stage • Difference between join/Lookup/Merge • Difference between join/Lookup • Remove Duplicates • Switch • Pivot • Modify • Funnel Debugging stage • Head • Tail • Pea • Row Generator • Column Generator • Sample • Job Parameters Manager • Introduction About Data stage Manager • Importing the Job • Exporting the Job • Importing Table Definition • Importing Flat File Definition • Routines Containers • Difference between Local Container and Shared Container • Local Container • Shared Container Please Contact- Learning Hub, S-12,Destination Centre, 2nd Floor, Above HDFC Bank, Next to Noble Polyclinic, MAGARPATTA CITY, PUNE – 411013, PH: +91- 93257-93756. Skype id : learning.hub01 Email: learninghub01@gmail.com www.learninghub.co.in Data Stage Online Training, Data Stage Class Room Training, Data Stage Training in Magarpatta City, Data Stage Jobs and Placement, Data Stage Remote Support, Data Stage Online Help,Data Stage Videos training, Data Stage training by Learning Hub, Fast track classes in Data Stage, Best Data Stage training institutes in Pune, Best Faculty in Data Stage, Best online Faculty in Data Stage, Professional classroom training in Data Stage, Professional online training in Data Stage,Data Stage Certification, Data Stage training in Dubai, Data StageTraining in Melbourne, Data Stage Training in Dubai, Data Stage Training, Data Stage Training,Data Stage Training, Data StageOnline Training, Data Stage certfication and suppor
Free
See product