-
loading
Ads with pictures

Admin session


Top sales list admin session

Pune (Maharashtra)
ORACLE DATABASE ADMIN COURSE CONTENT Traning at learning hub Magarpatta city /FC Road Pune (+91-93257-93756) www.learninghub.co.in ORACLE DATABASE ADMIN COURSE CONTENT 1: Creating the Database 2: Starting Up and Shutting Down • Viewing the Quiesce State of an Instance • Suspending and Resuming a Database 3: Managing Oracle Database Processes • Terminating Sessions • Identifying Which Session to Terminate • Terminating an Active Session • Terminating an Inactive Session 4: Monitoring the Operation of Your Database • Server-Generated Alerts • Monitoring the Database Using Trace Files and the Alert Log • Monitoring Locks • Monitoring Wait Events • Process and Session Views 5: Oracle Database Structure and Storage • Managing Control Files • Managing the Redo Log • Managing Archived Redo Logs 6: Managing Table spaces Transportable Table spaces 7: Managing Data files and Temp files 8: Managing the Undo Table space undo retention, switching undo table space 9: User management creation of users and roles, assign privileges 10:Automatic Storage Management create ASM instance, create disk groups 11:Managing Schema Objects • Tables, indexes, views, synonyms and sequence generator • Space management • Managing resumable space allocation, reclaiming wasted space • Managing Tables • adding, renaming and dropping of table columns • Managing Indexes • B*tree, bitmap • Managing Partitioned Tables and Indexes • Range, hash,list and composit partitioning • Managing Clusters • creation and altering of clusters • Managing Views, Sequences, and Synonyms • Oracle Network • Listener and tnsnames • Distributed Database Concepts • Utilities • Data pump , SQL*Loader • Backup and Recovery • Rman • Performance Tuning • Data Guard • configuring physical standby database • Miscellaneous 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 ORACLE DATABASE ADMI Online Training, ORACLE DATABASE ADMIN Class Room Training, ORACLE DATABASE ADMIN Training in Magarpatta City, ORACLE DATABASE ADMIN Jobs and Placement, ORACLE DATABASE ADMIN Remote Support, ORACLE DATABASE ADMIN Online Help, ORACLE DATABASE ADMIN Videos training, ORACLE DATABASE ADMIN Training by Learning Hub, Fast track classes in ORACLE DATABASE ADMIN, Best ORACLE DATABASE ADMIN Training institutes in Pune, Best Faculty in ORACLE DATABASE ADMIN, Best online Faculty in ORACLE DATABASE ADMIN, Professional classroom training in ORACLE DATABASE ADMIN, Professional online training ORACLE DATABASE ADMIN, ORACLE DATABASE ADMIN Certification , ORACLE DATABASE ADMIN training in Dubai, ORACLE DATABASE ADMINTraining in Melbourne, ORACLE DATABASE ADMIN Training in Dubai, ORACLE DATABASE ADMIN Training, ORACLE DATABASE ADMIN Workflow Training ORACLE DATABASE ADMI Training, ORACLE DATABASE ADMI Online Training, ORACLE DATABASE ADMIN certfication and support
Free
See product
India
WAS ADMIN trainers Required in elegant it services good salary in partime • What is WAS and its functionality • Some key differences between the Version 5,6 and 6.1 • Product packaging • Express / Base / Network Deployment – Overview • Edge Component - Load Balancer 2. WAS Installation and Fix Pack Upgrades • Hardware and Software pre-requisites • Installation overview • Installation Environments • Profile Types and their details • Creating Profiles using command line tool • Pre-install tasks • Installation verification • Silent Installation – Profiles • V6 Install - Network deployment and express • WAS Directory Structure • Backup Config task • Restore Config task • Uninstall • Installing fix packs, cumulative fixes using update installer • Silent installation of Fix packs using response files • Trouble shooting the fix packs installation problems 3. Architectural Overview and System Management • Standalone and Distributed server overview • Express / Base / ND • WAS basics • Repository Directory Structure • JDBC providers • Data Sources • JAAS Configuration • Application Data Files • Build cell - add / remove nodes • Cell, deployment manager, node and node agent • Manage generic servers and node groups • Enhanced EAR • Managed Nodes Vs Un managed Nodes • File Synchronization • Defining Virtual hosts • Command line tools • Server Commands 4. Administrative Console • Starting the Admin Console • Logging in to the Admin Console • Administrative console areas • Administrative Console Preferences and Filters • Finding the items in the Console • Updating the existing objects • Adding new objects • Removing objects • Starting and Stopping objects • Saving to master repository 5. Working with Standalone Application Server • Managing the Application Server Profile • Application Server Configuration • Viewing the status of the application Server • Starting and Stopping of an application Server • Viewing runtime attributes of an application Server • Customizing application Servers 6. Application Install • Installing Enterprise applications • Installation tasks • Creating J2C authentication alias • Virtual hosts creation and configuration • Creating JDBC resources • Creating data sources • Managing applications • Start and stop applications • Application auto start • Viewing installed Apps • Configuration JVM Logs • Enabling Traces • Viewing the EJB modules • Viewing the WEB modules • Updating the applications • J2EE Application Flow 7. Managing Web Server with WAS • IBM HTTP Server as unmanaged node • IBM HTTP Server on a managed Node • IBM HTTP Server administration overview • IBM HTTP Server log files overview • Web Server instance start/stop • Web servers Custom plugin-cfg.xml • Managing plugin-cfg.xml files • Managing Web server plug-in properties • Propagating the plug-in configurations • Web server configuration file details (httpd.conf) 8. Work Load Management and High Availability • What is clustering • Horizontal and vertical clustering • Distributed Server Configuration • Creating and configuring the cluster • Basic WLM request routing mechanism • Configure Virtual Host and Host aliases • Federation Of nodes in ND • Viewing the status of the cluster • Starting and Stopping cluster and node agent. • Edge Components, Http Server, Web container Failover • HTTP Session management, session affinity and session and database Thanks&Regards Elegant IT Services, #nd Floor,Aswath Nagar Varthur main road,Near Railway Fly Over Maratha halli,Land mark: Chemmunar Jewellers,
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)
Oracle Fusion Middleware Admin(100% job guarantee) Course Contents Introducing Oracle Fusion Middleware Platform •Describing the Oracle Fusion Middleware Environment •Describing How WebLogic Server Supports Various Fusion Middleware Suites •Describing How Various Fusion Middleware Suites Augment the Functions of WebLogic Server Defining Java Enterprise Edition Terminology •Explaining the Motivation behind Distributed Systems •The Major Components of the Java Platform Enterprise Edition 5 (Java EE) Specification Installing Oracle WebLogic Server •Explaining Oracle WebLogic Server Installation Steps •Installing WebLogic Server Using Both the Graphical User Interface (GUI) and Command Line •Describing the Organization and Contents of the WebLogic Server Directory Structure •Navigating the WebLogic Server Online and Offline Documentation Configuring a Simple Domain •Describing the Common Elements in a WebLogic Server Domain •Describing how Domains are Used in the Enterprise •Comparing Administration and Managed Servers •Configuring a Domain •Describing the Organization and Contents of the WLS Directory Structure •Describing the use of WLST Offline to Manage Domains •Creating a Simple Domain with One Managed Server •Checking the Port Numbers that are used for Components Configuring a Domain Using Templates •Describing the Internal Process Used to Create or Update a Domain Using a Template •Describing the Process of Extending a Domain Template •Explaining the Domain Templates Provided for Setting up JDeveloper, SOA, and WebCenter Using Administration Console and WLST •Identifying Dynamic and Nondynamic Attribute Changes in the Administration Console •Customizing Monitoring Tables Within the Administration Console •Using the WebLogic Scripting Tool (WLST) Command-line Utility •Invoking WLST and Navigate Through the Domain Structure •Describing How Change Management is Performed Internally Using Java Management Extension (JMX) and Mbeans Configuring Managed Servers •Configuring Managed Servers Using the Administrative Console •Configuring Managed Servers Using WebLogic Scripting Tool (WLST) •Starting Managed Servers •Shutting Down a Server or an Entire Domain Using WLST or the Administrative Console •Configuring Managed Servers on a Computer Separate from the Sdministration Server •Explaining Administration and Managed Server Independence (MSI) Configuring Node Managers •Defining the Oracle WebLogic Server Machine •Configuring a Machine and Assign Servers to it by Using the Console and WebLogic Scripting Tool (WLST) •Explaining the Node Manager Architecture •Describing the Organization and Contents of a Node Manager Directory Structure •Configuring, Starting, and Stopping Node Managers •Describing How to Start and Stop Procedures Viewing and Managing Logs in Oracle WLS Environment •Defining and Configuring Server and Domain Logs •Viewing and Interpreting the Format of Domain and Server Log Files Using the Administration Console •Configuring Server Standard Output Settings Using the Console •Describing How Applications Can Integrate With WLS Logging Infrastructure (Apache commons, log4j) •Accessing Online Log Message Catalogs •Creating and Applying a Log Filter Using the Console •Configuring Log Filter Expressions Deployment Concepts •Contrasting Autodeploy With Manual Deployment •Configuring and Deploying Web Applications Via the Administration Console, Command Line, and WLST •Configuring Deployment Descriptors •Testing Deployed Applications •Describing the Role of Web Servers •Tracing a Typical Web Interaction Flow •Contrasting Static and Dynamic Content and Deployment •Front-end Deployed Applications With a Web Server Deploying Java EE Applications •Describing Java EE Web Applications •Describing Enterprise Deployment Architectures •Packaging Web Applications in Several Forms •Defining Web Application Structure and Web Application Archive •Explaining Why WebLogic Augments Standard Java EE Deployment Descriptors With weblogic*.xml Files •Looking at Deployment Descriptors web.xml and weblogic.xml •Describing URLs and Web Applications Advanced Deployment •Configuring an Application for Multiple Development Environments •Creating a Deployment Plan •Staging a Deployment Plan •Using Production Redeployment Understanding JDBC and Configuring Data Sources •Configuring JDBC and JDBC Data Sources •Configuring Data Source Scope •Contrasting Two-tier and Multi-tier JDBC Architecture •Configuring a Connection Pool •Describing How Data Sources are Used •Deploying JDBC Resources to a Target •Explaining the Components of JDBC URLs •Monitoring and Testing a Data Source Setting Up Java Message Service (JMS) Resources •Describing JMS •Describing How Oracle WebLogic Server JMS is Implemented •Configuring JMS Server •Configuring Connection Factories •Configuring Queues and Topics •Configuring Persistent Messages •Deploying an Application that Uses JMS •Monitoring JMS Resources and Messages Introduction to Clustering •The Benefits of Oracle WebLogic Cluster •Basic Cluster Architecture •Multitier Cluster Architecture •Communication Among Clustered Server Instances •The Key Criteria for Selecting Suitable Cluster Architecture Configuring a Cluster •Preparing Your Environment for a Cluster •Creating and Configuring a Cluster •Adding Servers to a Cluster •Starting Up and Shutting Down Clustered Servers Managing Clusters •Deploying Applications to a Cluster •Describing the Replication of a Session State in a Cluster •Configuring Replication Groups •Configuring In-memory Replication •Configuring Java Database Connectivity (JDBC) Replication •Configuring File Replication •Configuring a Multitier Cluster for Enterprise JavaBeans (EJB) Applications Security Concepts and Configuration •Using the WebLogic Server (WLS) Security Architecture •Configuring Security Realms •Configuring Users and Groups •Configuring Roles •Configuring Policies •Configuring Protection for Web Application Resources and EJBs Protecting Against Attacks •Describing the Process of Configuring Secure Sockets Layer (SSL) •Using the Keytool Utility to Configure Keys and Obtain Digital Certificates •Configuring SSL for the WLS Server •Configuring Countermeasures for Some Web-based Attacks Backup and Recovery Operations •Recommending a Backup and Recovery Strategy •Performing a Full Offline Backup and Recovery •Performing an Online and Offline Domain Backup •Performing an Offline Domain Recovery •Performing an Instance Home Backup and Recovery SSL Messaging Horizontal clustering Thread dumps etc
See product
India
Training Provided: Hadoop Developer & Hadoop Admin TOPIC COVERED: 1. Introduction of Big Data & Hadoop 2. HDFS Architecture 3. Single Node Cluster Setup 4. Multi Node cluster Setup 5. MapReduce Concept & Advance MapReduce 6.PIg 7. HIVE 8. IMPALA 9. HBASE 10.SQOOP 11 Zookeeper 12.FLUME 13 YARN 14. Commissioning & Decommissioning 15. Rack Setup 16.Job Scheduling 17.OOzie Session Mode: Online / Classroom Training in (Weekdays / Weekends / /Fast track) SERVICES: 1.Soft copy / 2.Technical notes 3. Study material (soft copy /Hard copy) 4. POC 5. Assignment 6.Online Technical support 7. After course completion you can reschedule your batch 8.Software Installation Guidelines. We are more focused on Practical Implementation. ADDRESS: #th main 1st cross, BTM 1st Stage, Bangalore- India.
See product
India
1. ARCHITECTURE OF PEOPLESOFT HRMS/HCM PeopleSoft Internet Architecture PeopleSoft Database Architecture PeopleSoft Portal Architecture. 2. PEOPLE TOOLS & DEVELOPMENT TOOLS I) Application Designer Developing and Customization of Records, Views, Pages Building Components 2) Application Engine Fundamentals of App Engine AE Program Elements State Records Temporary Tables & Parallel Processing 3. REPORTING TOOLS 1)People Soft Query Types of Queries Creation and Navigation thru PIA 2)SQR  Basics of SQR 4. ADMINISTRATION TOOLS Security, Definition Security Portal Security Data Mover 5. PEOPLE CODE Events Types, Built in Functions People Code Language People Code, Application Process Debugging People Code Classes 6. Component Interface Defining and validating CI Access Permission to CI CI with App Engine 7. FileLayout Creation of File Layout in App Designer Basic Functions FileLayout with App Engine 8. SQR Reporting Developing SQR Defining SQC’s,SQR Flow Error Handling Debugging [PeopleSoft HRMS Functional Course Content] [] Content for People Soft HRMS Functional Chapter 1: Introduction to People Soft  Objective and HR Functionality  History of the People soft  HCM Process flow and integrations  Basic Key Terms and definitions  Recall Session & Testing Practice (Introduction, Users, Effective Date, Effective Sequence, Rows, Action Buttons, Employee Type & Pay Frequency) Chapter 2: Employee Self Service Module  Personal Information Update/Modify/Delete (1.1 Email Update, 1.2 Phone Update 1.3 Blood Groups, 1.4 Dependent Info 1.5 Language & Passport Detail Etc)  Learning Development  Performance Management  Compensation – Bank info update  Benefits  Recall Session & Testing Practice Chapter 3: Manager Self Service Module  Associate Job &Personal Information (1.View Employee Personal Info 2.Request/Approve Reporting Change 3.View Reporting change Status 4.Transfer Employee 5. Approve Transfer Employee 6. View Transfer Status 7.Promote Employee 8.Approve Promotion)  Learning Development (1.Training Summary 2. Request Training Enrollment 3.Approve Training Request 4.View Training Request Status 5.Approve Competency)  Performance Management [PeopleSoft HRMS Functional Course Content] [.Performance Document - Create/Current /History/Admin stack 2.Admin Task -Transfer/Delete/Cancel document 3.Approve Document 4.View Approval Status 5.Maintain Performance Notes)  Recall Session & Testing Practice Chapter 4: Core HR Module  Terminology (1. Business Unit 2. Set ID 3.Company Table 4.Establishment Table 5.Location Table 6.Department Table)  Foundation & Transaction Table (1.Foundation - Eg: Job code, Department, Location 2. Transaction - Eg: Personal Data, Job Data)  Prompt Table & Translate Values (1. Prompt - Eg: Department, Job code 2. Translate Values - Eg: Job data)  Compensation Table (1. Salary Plan/Grade/Step 2.Comp Rate Codes)  JOB Table (1.Job Code 2.Job Family 3. Job Profile 4. Job Function)  Recall Session & Testing Practice Chapter 5: Position Management Module  Create / Copy and View the Position  View Position Data Summary  View Position Vacant Budget  Hiring a person to Position  Recall Session & Testing Practice Chapter 6: Administer Workforce Management [PeopleSoft HRMS Functional Course Content] []  HR Transactions from Hire to Exit (1. Hire/Transfer/Promotion/ Termination etc 2. Global Assignment)  Separations (Or) Self Service Transactions (1.To Approve/Deny Name Change request & Marital Status 2. To Approve/Deny Resignation 3. To Transfer Performance Document 4. Exit Interview)  Associate Personal/Job Info (1.Modify a Person 2. Person Organizational Summary 3. Additional Names 4. Person Checklist 5. To View Employee Provident Fund Number 6. To View Employee Job Summary)  Recall Session & Testing Practice Chapter 7: E-Performance Management Module  Performance Doc Creation by Employee  Performance Doc Creation by Manager  Performance Evaluation by Employee  Performance Evaluation by Manager  HR Performance document Creation  HR Performance Admin Task and Others (1.Performance Document - Create/Current /History/Admin stack 2.Admin Task -Transfer/Delete/Cancel document 3.Approve Document 4.View Approval Status 5.Maintain Performance Notes)  Recall Session & Testing Practice Chapter 8: Enterprise Absence Management  Employee Apply/Cancel/Comp Off Leave [PeopleSoft HRMS Functional Course Content] []  Manager Apply /Cancel / Comp Off Leave/ Leave Balance  HR Leave Management  Time Sheet Submission  Recall Session & Testing Practice Chapter 9: Benefits Module  Enroll in Benefits  Dependent Beneficiary  Recall Session & Testing Practice Chapter 10: NA Payroll Workflow
See product
India
Oracle Identity and Access Management 11g R1 Complete practical approach, right from installation to configuration and admin(Hands on approach) All configuration documents, so that you can implement on your own. Topic Explanation followed by practical demonstration. Complete Suite Implementation (OAM, OIM, OID), RCU, Webgate, OHS, BI Publisher, ODSEE, Custom Applications. 1) OAM 11g - Around 30+ hours •Oracle Identity and Access Management Suite 11g Component Overview (OAM, OIM, OID, OVD, ODSM, OAAM) •Installation and configuration of Oracle Access Manager(DB, RCU, Weblogic, OAM, OID) •OHS 11g installation •Configuration of OHS 11g Instances •Installation of OAM 11g WebGate11gR2 •Create a New Domain and Configure the OAM Server •Configuring Database Security Store for the Domain •Register the OAM 11g R2 WebGate with OAM 11g R2 Server •Working with WLS Embedded LDAP Directory and Default OAM User Identity Store •Configuring and working with OID as the New Identity Store for OAM •Creating OID Authenticator •Making Use of OID as the User Store for OAM Authentication •Deploying Custom Application •Unprotect and protect the application •Configuring Single Sign On for the deployed application. •Managing resources, Authentication Policies, Authorization Policies. •Managing constraint. •Single Sign-On and Session Management •Customizing the login page. •Demonstrating the Single Sign on •Observing Cookies. •Working with Identity Constraint, Authentication Schemes •Session Management •Customize Login Page 2) OIM 11g - Around 30+ Hours •OIM 11g Overview •Will cover all latest topic of OIM11gR2 with practical demonstration(Application Instance, Sandboxes(Sandbox import/Export) and Checkout/Cart,Scheduled Jobs, Lookup Configuration, Creating Entitlement, Password Policy) •Installation of Oracle Identity Manager Suite/ SOA Suite / OUD Server(As sample application). •Configuring Oracle Identity Manager. •Working with OIM Design Console, Administrative and User Console •create and manage records for organizations, roles, and users •Installing Oracle Directory Server EE, Configuring ODSEE/OUD(creating prefixes, loading sample data) •Importing and using a predefined connector (ODSEE/OUD) for OIM. •Working with Connector •Direct provisioning •Working with auto membership rules and access policies (Auto Provisioning or Criteria Based Provisioning) •Modifying provisioning process. •Working with provisioning process. •Working with workflow approvals, creating/modifying approval policies, request templates and managing requests created by a user. •Working with JDeveloper - Deploy and Register Custom SOA Composites •Working with requests. •Implementing authoritative and account reconciliation workflows for OIM. •Managing user access in OIM. •Working with authorization policies. •OIM - Admin and troubleshooting. Approach for both OIM and OAM is, take sample applications and demonstrate how things work in an enterprise. Dear Friend, Sadguru Technologies is a Leading IT training center for Oracle Fusion Middleware courses. We are providing all below listed courses in both format CLASS ROOM as well as ONLINE and as per your convenient timings. We also provide Corporate Training and work support. Courses Offered by Sadguru Technologies: 1. Oracle Service Oriented Architecture(SOA) suite11g Development 2. WebLogic & SOA Administration(Fusion Admin) 3. Oracle Service Bus(OSB) 4. Oracle Application Integration Architecture (AIA) 5. Oracle Business Process Management (BPM) 6. Oracle Application Development Framework (ADF) 7. Oracle Identity & Access Management (IDM) 8. Oracle Application Framework(OAF) 9. OBIEE, Informatica & DAC 10. Oracle Data Integrator (ODI) 11. Oracle Hyperion 12. Oracle Apps (Functional, Technical,SCM) 13. Business Analyst (BA) 14. Sales Force CRM & Siebel CRM 15. JAVA 16. HADOOP 17. Micro Soft Dynamics AX(MSDAX) 18. Testing Tools 19. TIBCO 20. Unix & Linux Contact Us: SADGURU TECHNOLOGIES H. No: , Flat No: 102, SaiManor Apartment, S.R. Nagar Main Road, Hyderabad-, Landmark: Beside Umesh Chandra Statue,Mob: 91-, Ph: 040-
See product
India
Oracle Identity and Access Management 11g R1 Complete practical approach, right from installation to configuration and admin(Hands on approach) All configuration documents, so that you can implement on your own. Topic Explanation followed by practical demonstration. Complete Suite Implementation (OAM, OIM, OID), RCU, Webgate, OHS, BI Publisher, ODSEE, Custom Applications. 1) OAM 11g - Around 30+ hours •Oracle Identity and Access Management Suite 11g Component Overview (OAM, OIM, OID, OVD, ODSM, OAAM) •Installation and configuration of Oracle Access Manager(DB, RCU, Weblogic, OAM, OID) •OHS 11g installation •Configuration of OHS 11g Instances •Installation of OAM 11g WebGate11gR2 •Create a New Domain and Configure the OAM Server •Configuring Database Security Store for the Domain •Register the OAM 11g R2 WebGate with OAM 11g R2 Server •Working with WLS Embedded LDAP Directory and Default OAM User Identity Store •Configuring and working with OID as the New Identity Store for OAM •Creating OID Authenticator •Making Use of OID as the User Store for OAM Authentication •Deploying Custom Application •Unprotect and protect the application •Configuring Single Sign On for the deployed application. •Managing resources, Authentication Policies, Authorization Policies. •Managing constraint. •Single Sign-On and Session Management •Customizing the login page. •Demonstrating the Single Sign on •Observing Cookies. •Working with Identity Constraint, Authentication Schemes •Session Management •Customize Login Page 2) OIM 11g - Around 30+ Hours •OIM 11g Overview •Will cover all latest topic of OIM11gR2 with practical demonstration(Application Instance, Sandboxes(Sandbox import/Export) and Checkout/Cart,Scheduled Jobs, Lookup Configuration, Creating Entitlement, Password Policy) •Installation of Oracle Identity Manager Suite/ SOA Suite / OUD Server(As sample application). •Configuring Oracle Identity Manager. •Working with OIM Design Console, Administrative and User Console •create and manage records for organizations, roles, and users •Installing Oracle Directory Server EE, Configuring ODSEE/OUD(creating prefixes, loading sample data) •Importing and using a predefined connector (ODSEE/OUD) for OIM. •Working with Connector •Direct provisioning •Working with auto membership rules and access policies (Auto Provisioning or Criteria Based Provisioning) •Modifying provisioning process. •Working with provisioning process. •Working with workflow approvals, creating/modifying approval policies, request templates and managing requests created by a user. •Working with JDeveloper - Deploy and Register Custom SOA Composites •Working with requests. •Implementing authoritative and account reconciliation workflows for OIM. •Managing user access in OIM. •Working with authorization policies. •OIM - Admin and troubleshooting. Approach for both OIM and OAM is, take sample applications and demonstrate how things work in an enterprise. Dear Friend, Sadguru Technologies is a Leading IT training center for Oracle Fusion Middleware courses. We are providing all below listed courses in both format CLASS ROOM as well as ONLINE and as per your convenient timings. We also provide Corporate Training and work support. Courses Offered by Sadguru Technologies: 1. Oracle Service Oriented Architecture(SOA) suite11g Development 2. WebLogic & SOA Administration(Fusion Admin) 3. Oracle Service Bus(OSB) 4. Oracle Application Integration Architecture (AIA) 5. Oracle Business Process Management (BPM) 6. Oracle Application Development Framework (ADF) 7. Oracle Identity & Access Management (IDM) 8. Oracle Application Framework(OAF) 9. OBIEE, Informatica & DAC 10. Oracle Data Integrator (ODI) 11. Oracle Hyperion 12. Oracle Apps (Functional, Technical,SCM) 13. Business Analyst (BA) 14. Sales Force CRM & Siebel CRM 15. JAVA 16. HADOOP 17. Micro Soft Dynamics AX(MSDAX) 18. Testing Tools 19. TIBCO 20. Unix & Linux Contact Us: SADGURU TECHNOLOGIES H. No: , Flat No: 102, SaiManor Apartment, S.R. Nagar Main Road, Hyderabad-, Landmark: Beside Umesh Chandra Statue,Mob: 91-, Ph: 040-, Email: www.sadgurutechnologies.com
See product
India
Oracle Identity and Access Management 11g R1 Complete practical approach, right from installation to configuration and admin(Hands on approach) All configuration documents, so that you can implement on your own. Topic Explanation followed by practical demonstration. Complete Suite Implementation (OAM, OIM, OID), RCU, Webgate, OHS, BI Publisher, ODSEE, Custom Applications. 1) OAM 11g - Around 30+ hours •Oracle Identity and Access Management Suite 11g Component Overview (OAM, OIM, OID, OVD, ODSM, OAAM) •Installation and configuration of Oracle Access Manager(DB, RCU, Weblogic, OAM, OID) •OHS 11g installation •Configuration of OHS 11g Instances •Installation of OAM 11g WebGate11gR2 •Create a New Domain and Configure the OAM Server •Configuring Database Security Store for the Domain •Register the OAM 11g R2 WebGate with OAM 11g R2 Server •Working with WLS Embedded LDAP Directory and Default OAM User Identity Store •Configuring and working with OID as the New Identity Store for OAM •Creating OID Authenticator •Making Use of OID as the User Store for OAM Authentication •Deploying Custom Application •Unprotect and protect the application •Configuring Single Sign On for the deployed application. •Managing resources, Authentication Policies, Authorization Policies. •Managing constraint. •Single Sign-On and Session Management •Customizing the login page. •Demonstrating the Single Sign on •Observing Cookies. •Working with Identity Constraint, Authentication Schemes •Session Management •Customize Login Page 2) OIM 11g - Around 30+ Hours •OIM 11g Overview •Will cover all latest topic of OIM11gR2 with practical demonstration(Application Instance, Sandboxes(Sandbox import/Export) and Checkout/Cart,Scheduled Jobs, Lookup Configuration, Creating Entitlement, Password Policy) •Installation of Oracle Identity Manager Suite/ SOA Suite / OUD Server(As sample application). •Configuring Oracle Identity Manager. •Working with OIM Design Console, Administrative and User Console •create and manage records for organizations, roles, and users •Installing Oracle Directory Server EE, Configuring ODSEE/OUD(creating prefixes, loading sample data) •Importing and using a predefined connector (ODSEE/OUD) for OIM. •Working with Connector •Direct provisioning •Working with auto membership rules and access policies (Auto Provisioning or Criteria Based Provisioning) •Modifying provisioning process. •Working with provisioning process. •Working with workflow approvals, creating/modifying approval policies, request templates and managing requests created by a user. •Working with JDeveloper - Deploy and Register Custom SOA Composites •Working with requests. •Implementing authoritative and account reconciliation workflows for OIM. •Managing user access in OIM. •Working with authorization policies. •OIM - Admin and troubleshooting. Approach for both OIM and OAM is, take sample applications and demonstrate how things work in an enterprise. Dear Friend, Sadguru Technologies is a Leading IT training center for Oracle Fusion Middleware courses. We are providing all below listed courses in both format CLASS ROOM as well as ONLINE and as per your convenient timings. We also provide Corporate Training and work support. Courses Offered by Sadguru Technologies: 1. Oracle Service Oriented Architecture(SOA) suite11g Development 2. WebLogic & SOA Administration(Fusion Admin) 3. Oracle Service Bus(OSB) 4. Oracle Application Integration Architecture (AIA) 5. Oracle Business Process Management (BPM) 6. Oracle Application Development Framework (ADF) 7. Oracle Identity & Access Management (IDM) 8. Oracle Application Framework(OAF) 9. OBIEE, Informatica & DAC 10. Oracle Data Integrator (ODI) 11. Oracle Hyperion 12. Oracle Apps (Functional, Technical,SCM) 13. Business Analyst (BA) 14. Sales Force CRM & Siebel CRM 15. JAVA 16. HADOOP 17. Micro Soft Dynamics AX(MSDAX) 18. Testing Tools 19. TIBCO 20. Unix & Linux Contact Us: SADGURU TECHNOLOGIES H. No: , Flat No: 102, SaiManor Apartment, S.R. Nagar Main Road, Hyderabad-, Landmark: Beside Umesh Chandra Statue,Mob: 91-, Ph: 040-, Email:
See product
India
WAS Administration 1. WAS product Family overview •What is WAS and its functionality •Some key differences between the Version •Product packaging •Express / Base / Network Deployment – Overview •Edge Component - Load Balancer 2. WAS Installation and Fix Pack Upgrades •Hardware and Software pre-requisites •Pre-install tasks •Installation verification •Silent Installation – Profiles •Uninstall •Installing fix packs, cumulative fixes using update installer •Silent installation of Fix packs using response files •Trouble shooting the fix packs installation problems 3. Architectural Overview and System Management •Standalone and Distributed server overview •Express / Base / ND •WAS basics •Repository Directory Structure •JDBC providers •Data Sources •JAAS Configuration •Application Data Files •Build cell - add / remove nodes •Cell, deployment manager, node and node agent •File Synchronization •Defining Virtual hosts •Command line tools •Server Commands 4. Administrative Console •Starting the Admin Console •Logging in to the Admin Console •Administrative console areas •Administrative Console Preferences and Filters •Starting and Stopping objects •Saving to master repository 5. Working with Standalone Application Server •Managing the Application Server Profile •Application Server Configuration •Viewing the status of the application Server •Starting and Stopping of an application Server •Viewing runtime attributes of an application Server •Customizing application Servers 6. Application Install •Installing Enterprise applications •Installation tasks •Creating J2C authentication alias •Virtual hosts creation and configuration •Creating JDBC resources •Creating data sources •Managing applications •Start and stop applications •Viewing the EJB modules •Viewing the WEB modules •Updating the applications •J2EE Application Flow 7. Managing Web Server with WAS •IBM HTTP Server as unmanaged node •IBM HTTP Server on a managed Node •IBM HTTP Server administration overview •IBM HTTP Server log files overview •Propagating the plug-in configurations •Web server configuration file details (httpd.conf) 8. Work Load Management and High Availability •What is clustering •Horizontal and vertical clustering •Distributed Server Configuration •Creating and configuring the cluster •Basic WLM request routing mechanism •Configure Virtual Host and Host aliases •HTTP Session management, session affinity and session and database persistence 9. WAS Security Mechanisms •WAS Security Overview •Java 2 security for applications •JAAS •User registries •SSL 10 Troubleshooting •WebSphere Application Server logs •Log File types and locations •Generating heap dumps and core dumps •Installation related trouble shooting / Tips •Enabling Verbose Garbage Collection 11. Performance Monitoring •PMI Overview •PMI data modules and counters •Enabling Performance monitoring infrastructure •Performance Advisor 12 WSADMIN scripting •wsadmin vs. Administration Console •wsadmin functions and its connection type For More Details contact us: Elegant It Services contact no:
See product
India
We co trainings are committed to provide high quality training and below are highlights of our curriculum >>Excellent Training. >>Reputed and well known for Placements history. >>Project Oriented Training. Real-time / Live Project scenarios will be provided during the training. Batches with limited number. >>Will assist you with Technical screening, Resume guidance,interview orientation sessions and mock-interviews. >>100% success rate for motivated and hard-working trainees. >>We get most of our candidates through referrals by satisfied candidates from previous batches. whatsapp: 9502434001 Batches will be scheduled as per the convenience of the students.We also support Weekend batches. Tibco spotfire admin course content 1)Installation Server and configurations 2)Spotfire client& web player installation and configurations 3)Creating bootstrap files 4)Configuring LDAP 5)Manage configuration tool 6)Creating Users and Groups 7)Providing access 8)Types of accesses 9)Setting the licenses and privileges 10)Moving contents to different environments like(DEV-----QA----PRODUCTION) 11)Migrations Moving analysis from (DEV --- QA ---PRODUCTION) 12)Types of logs a)Server logs b)Web player logs c)Event logs 13)Schedule updates 14)Scheduling the reports in different ways using schedule updates 15)Hotfixes 16)Upgrade the tool from lower version to higher versions 17)web config file changes 18)Managing library 19)Creating folders in library 20)Creating the Datasources and modifying the existing data sources 21)Improving the server performance 22)Advanced topics like Automation Services Tibco BE Course Content 1. Introduction to Complex Event Processing 2. Components of CEP 3. Introducing to TIBCO'S Business Events 4. BE Platform details. 5. Core product functionality and Installation 6. Events and Channels 7. Concepts and Score cards 8. Rules 9. Rule inference Engine 10.Rules as WebService 11.Object Management 12.Deployment Tibco_BW course content >Session 1 Installation of TIBCO Platform Components in TIBCO Business Works Palettes >session 2 Working with Transitions Working with Variables >Session 3 Business Works Designing Business Processes using palettes >Session 4 TIBCO EMS JMS messaging overview Overview of TIBCO Enterprise Message Service >Session 5 Rendezvous Certified Distributed Queue >Session 6 Overview of SOA, SOAP Drawbacks of CORBA, RMI and COM Service >Session 7 Overview of Adapters Types of Adapters >Session 8 Overview of ADB Adapter Configuring ADB Adapter >Session 9 Business Works Administrator Overview of Administrator >Session 10 Deployment, Management and Monitoring Objectives
See product
Hyderabad (Andhra Pradesh)
Oracle Identity and Access Management 11g R1  Complete practical approach, right from installation to configuration and admin(Hands on approach)  All configuration documents, so that you can implement on your own.  Topic Explanation followed by practical demonstration.  Complete Suite Implementation (OAM, OIM, OID), RCU, Webgate, OHS, BI Publisher, ODSEE, Custom Applications. 1) OAM 11g - Around 30+ hours • Oracle Identity and Access Management Suite 11g Component Overview (OAM, OIM, OID, OVD, ODSM, OAAM) • Installation and configuration of Oracle Access Manager(DB, RCU, Weblogic, OAM, OID) • OHS 11g installation • Configuration of OHS 11g Instances • Installation of OAM 11g WebGate11gR2 • Create a New Domain and Configure the OAM Server • Configuring Database Security Store for the Domain • Register the OAM 11g R2 WebGate with OAM 11g R2 Server • Working with WLS Embedded LDAP Directory and Default OAM User Identity Store • Configuring and working with OID as the New Identity Store for OAM • Creating OID Authenticator • Making Use of OID as the User Store for OAM Authentication • Deploying Custom Application • Unprotect and protect the application • Configuring Single Sign On for the deployed application. • Managing resources, Authentication Policies, Authorization Policies. • Managing constraint. • Single Sign-On and Session Management • Customizing the login page. • Demonstrating the Single Sign on • Observing Cookies. • Working with Identity Constraint, Authentication Schemes • Session Management • Customize Login Page 2) OIM 11g - Around 30+ Hours • OIM 11g Overview • Will cover all latest topic of OIM11gR2 with practical demonstration(Application Instance, Sandboxes(Sandbox import/Export) and Checkout/Cart,Scheduled Jobs, Lookup Configuration, Creating Entitlement, Password Policy) • Installation of Oracle Identity Manager Suite/ SOA Suite / OUD Server(As sample application). • Configuring Oracle Identity Manager. • Working with OIM Design Console, Administrative and User Console • create and manage records for organizations, roles, and users • Installing Oracle Directory Server EE, Configuring ODSEE/OUD(creating prefixes, loading sample data) • Importing and using a predefined connector (ODSEE/OUD) for OIM. • Working with Connector • Direct provisioning • Working with auto membership rules and access policies (Auto Provisioning or Criteria Based Provisioning) • Modifying provisioning process. • Working with provisioning process. • Working with workflow approvals, creating/modifying approval policies, request templates and managing requests created by a user. • Working with JDeveloper - Deploy and Register Custom SOA Composites • Working with requests. • Implementing authoritative and account reconciliation workflows for OIM. • Managing user access in OIM. • Working with authorization policies. • OIM - Admin and troubleshooting. Approach for both OIM and OAM is, take sample applications and demonstrate how things work in an enterprise.
See product
Chennai (Tamil Nadu)
We are providing the training for all the cloud technologies with this SALESFORCE is at peak. So learn the most emerging technology with our real time working experts from Industries. We are providing this training based on placement aspects with the syllabus that covers all the basics to advanced concepts which provides 100% technical knowledge that will support you throughout your career. SALESFORCE Modules: Admin Developer These are the modules that comes under the SALESFORCE training that we are providing in PERIDOT SYSTEMS, ADYAR. The Admin portion does not requires any coding or programming knowledge but the developers need the basic coding knowledge. Reasons to choose us: 100% practical based training Certification Guidance Lab Facilities available for free Free demo session before registration Placement based training Basic to advanced topics included in syllabus Training with certified experts Training material soft copy will be provided These are the few benefits with us visit us to get more information about the course and attend a free demo session to know about my faculties. Don’t delay we are available at 9566183028 or www.peridotsystems.in
₹ 15.000
See product
Alandur (Tamil Nadu)
Our Hadoop Training in Chennai will be highly supported with the guidance of certified and working professionals from top companies. Also we will provide you the Free software installation so that you can practice at home also we are holding lab facilities with us for free practice. Modules with Hadoop: Admin Developer Architech These are the modules with Hadoop technology. Java is the prerequisite to learn hadoop. Admin is the most basic with hadoop. Developer is the next level with admin. All the students are advised to learn developer part with admin which help for getting placement very easily. About us: 100% job based training Instructors working with top companies More practical classes Free software installation Training material soft copy will be provided flexible timing with minimum batch strength Different time slots available These are all about our institute. Attend a free demo session contact us at 9566183028 or www.peridotsystems.in
₹ 15.000
See product
Chennai (Tamil Nadu)
About Sharepoint: Most of the organizations are using this sharepoint to create and develop the website also the organizations can use it as an secured place to store, share, organize and access information from any device in most secured manner. Its only requirement is chrome, opera or internet explorer. There are two different parts with Sharepoint as listed below, Sharepoint admin training in chennai Sharepoint developer training in chennai We Peridot systems located at adyar is offering the best training for both admin and developer with sharepoint. Our training contains more practical session which offers you more technical knowledge. All my trainers are working professional also certified. Our training can guarantee 100% technical knowledge. Our syllabus will be customized in such a way that it offers all the basic to advanced knowledge. Moreover we will provide you free software installation also we are holding excellent lab facilities with us for practice available at free of cost. Don’t delay come and attend a free demo session with my faculty which can provide you more idea about my institute and about my faculty. We are available at 9566183028 or www.peridotsystems.in
₹ 15.000
See product
India
Robotics internship syllabus session 1: Introduction to Robotics Overview of electronic components Lookup at some of the advanced robots session 2: Making of come in my way Robot Developing White Tracker Robot Hands-on Training Doubts,queries, and additional information session 3: Wiring up solar Tracking Robot Building Follow Me Robot Testing the Robot Doubts,queries, and additional information session 4: Hands-on Training on pit Robot Connecting up take Diversion Robot Checking the Output Doubts,queries, and additional information session 5: Developing Mobile Controlled Robot Building Robot Shuttler Doubts,queries, and additional information For more Details: Admin & Registered office: VLSA IT Training - VADAPALANI Door No: 17, Basement, No. 172, Raahat Plaza, (Shopping Mall) Arcot Road, Vadapalani, Chennai, Tamin Nadu, INDIA - Landline: + Mobile No: + /
See product
India
TekSlate’s syndicate of online trainers are experienced experts in knowledge transfer. The best place for learning, if you are aiming to learn the crux of any technology Big Data Green Plum DBA Online Training Course Content: Greenplum Architecture Greenplum Master Greenplum Segments Greenplum Interconnect Greenplum Concepts, Features and Benefits Redundancy and Failover in Greenplum Database Segment Mirroring Master Mirroring Data Distribution in greenplum Checking for Uneven Data Distribution Database Installation and Configuration Lab – Database Installation and Configuration Access Control and Security Managing Roles and Privileges Security Best Practices for Roles and Privileges Creating New Roles (Users) Altering Role Attributes Creating Groups (Role Membership) Managing Object Privileges Configuring Client Authentication Allowing Connections to Greenplum Database Editing the pg_hba.conf File Limiting Concurrent Connections Accessing the Database Establishing a Database Session Supported Client Applications Greenplum Database Client Applications PgAdmin III for Greenplum Database Database Application Interfaces Third-Party Client Tools Troubleshooting Connection Problems Lab Managing Workload and Resources Overview of Greenplum Workload Management How Resource Queues Work in Greenplum Database Steps to Enable Workload Management Configuring Workload Management Resource Queues Database Administration Defining Database Objects (databases, schema, table, sequence etc) Creating and using databaseso Creating and using schemas Creating and Using Sequences Indexes in Greenplum Database Creating and Managing Views Managing Data Vacuuming the Database Querying Data Query Performance EXPLAIN Output, EXPLAIN ANALYZE Output Partitioning Large Tables Understanding Table Partitioning in Greenplum Database Deciding on a Table Partitioning Strategy Creating Partitioned Tables Loading Partitioned Tables Maintaining Partitioned Tables Lab Greenplum Database Loading Tools Overview About External Tables About gpload About COPY Using the Greenplum Parallel File Server (gpfdist) System Administration Starting and Stopping Greenplum Routine admin tasks Uploading Configuration File Changes Only Configuring Your Greenplum System About Greenplum Master and Local Parameters Setting Configuration Parameters Setting a Local Configuration Parameter Setting a Master Configuration Parameter Enabling Alerts and Notifications Checking for Failed Segments Recovering a Failed Segment Recovering a Failed Master Backing up and Restoring Databases Backup and Restore Operations Expanding a Greenplum System Lab Monitoring a Greenplum System Monitoring Database Activity and Performance Monitoring System State Enabling System Alerts and Notifications Checking System Stateo Checking Disk Space Usage Routine System Maintenance Tasks Routine Vacuum and Analyze System Catalog Maintenance Managing Greenplum Database Log Files Performance Tuning Common Causes of Performance Issues Identifying Hardware and Segment Failures Managing Workload Maintaining Database Statistics Identifying Statistics Problems in Query Plans Tuning Statistics Collection Optimizing Data Distribution Optimizing Your Database Design Lab GP-development Functions Basic shell scripts Investigating a Performance Problem Checking System State Checking Database Activity Checking for Active Sessions (Workload) Checking for Locks (Contention) Checking Query Status and System Utilization Troubleshooting Problem Queries gp_toolkit administration schema System catalog Performance issues and tips Automation scripts for GPDB administration Lab Materials/tools used 1. Training ppts 2. Greenplum admin guide. 3. Greenplum installation guide. 4. Pg admin installer for windows. (Greenplum client for windows) 5. Greenplum community edition. 6. Putty 7. GP connectivity tools. Expected from audience (for Lab) 1. Laptop or desktop with centos installed. 2. Internet.
See product
India
For - Oracle OIM Admin, Fusion Architect, Security Consultant Complete practical approach, right from installation to configuration and thorough OIM admin All recorded session with pre-developed codes for current learning and future references. Topic Explanationfollowed by practical demonstration. Complete Suite Implementation (OIM, SOA,OID),DB, RCU,Weblogic using custom JDK, OUD, Custom Applications for OIM, SOA Composites with use cases. Out of Context: No Practical environment or Pre-Configured OIM Image will be provided for practice. Objective of Course: At the end of the course trainee will be able to bring any application(with pre-built connector) into OIM, to do Trusted & Target Reconciliation, all 3 kinds of Provisioning (Direct/Manual, Auto/Criteria, Request Based), Attestation OIM 11gR2 - Around 30+ Hours •OIM 11g Overview(Identity Governance Context) •Install, Configure and integrate IAM Suite(OIM), IDM Suite(OID), SOA, DB(Creation, Tuning for OIM), RCU, OUD, and Weblogic using custom JDK, Pre-developed SOA Composites. •Create OIM Domain, Security Store for IAM. •Working with OIM consoles – Identity, Sysadmin&Design •Create and manage records for organizations, roles, and users •Using Bulk Load to load sample data in OIM. •Creating alternate OIM Administrator •Installing pre-built Connector, Creating IT resources, Sandbox, Application Instance. •Installing, Configuring 2 light weight sample applications as Trusted Application(Simulating HRMS [PSFT/Ebiz/SAP]) and Target Application(Simulating SAP, Hyperion etc.) •Working With Provisioning& Reconciliation •Configuring Scheduled Job for Trusted Reconciliation, fetching sample users from Trusted Application (HRMS Simulator App) to OIM. •Creating IT Resources for Trusted and Target App. •Creating Configuration for Direct Provisioning –Working with Lookup Configuration, Sandbox, Application Instance, Form Creation. •Demonstrating Direct Provisioning with practical Use cases •Creating Configuration for Auto or Criteria Based Provisioning – Membership Rule, Access Policies. •Demonstrating Auto or Criteria based Provisioning with practical use cases •Creating Configuration for Request Based Provisioning – Deploying 2 SOA Composites(with Overview) from JDeveloper to SOA Server, Creating Approval Policies •Demonstrating Request Based Provisioning with practical use cases - Working with Requests, workflow approvals, creating/modifying approval policies, request templates and managing requests created by a user. •Configuring, Demonstrating Account Reconciliation. •OIM Logging, Auditing, troubleshooting and Monitoring •Exporting and Importing Oracle Identity Manager Configurations •Attestation Process and Configuration and overview of the attestation flow. Approach for OIM is to, take sample applications and demonstrate how things work in real environment with challenges and solutions. Dear Friend, Sadguru Technologies is a Leading IT training center for Oracle Fusion Middleware courses. We are providing all below listed courses in both format CLASS ROOM as well as ONLINE and as per your convenient timings. We also provide Corporate Training and work support. Courses Offered by Sadguru Technologies: 1. Oracle Service Oriented Architecture(SOA) suite11g Development 2. WebLogic & SOA Administration(Fusion Admin) 3. Oracle Service Bus(OSB) 4. Oracle Application Integration Architecture (AIA) 5. Oracle Business Process Management (BPM) 6. Oracle Application Development Framework (ADF) 7. Oracle Identity & Access Management (IDM) 8. Oracle Application Framework(OAF) 9. OBIEE, Informatica & DAC 10. Oracle Data Integrator (ODI) 11. Oracle Hyperion 12. Oracle Apps (Functional, Technical,SCM) 13. Business Analyst (BA) 14. Sales Force CRM & Siebel CRM 15. JAVA 16. HADOOP 17. Micro Soft Dynamics AX(MSDAX) 18. Testing Tools 19. TIBCO 20. Unix & Linux Contact Us: SADGURU TECHNOLOGIES H. No: , Flat No: 102, SaiManor Apartment, S.R. Nagar Main Road, Hyderabad-, Landmark: Beside Umesh Chandra Statue,Mob: 91-, Ph: 040-
See product
India
Welcome to TS Technologies We are offering Online IBM File Net training by our REAL TIME EXPERT having 10 years of experience working with TOP MNC. Course Duration: 1 month Timings: 6am,7am,10pm 1) Overview of ECM Platform features 2) Overview of main applications of Platform Install Platform Applications on VMware Configure and integrate platform applications 3) Verify Installation Content Management Overview of Content Management Features with Demos 4) Understanding of Important API packages and typical usage scenarios Setup API Usage Environment Create Session with CMS Store Local file in CMS using default CMS classes Create document classes with ALL data types Get Information about properties created using API Save document and set/get all data type values using self created document classes 5) Enable Content Based Search on CMS 6) Search/Retrieve documents added based on CBR and Metadata values Set Security on document classes using Platform Applications Use Security API to get the privileges for different users Set Audit configurations on document classes using Platform Applications Retrieve and set Auditing data using API Configure events in CMS Write code in events to set some extra properties 7) Create Folders and Custom Objects and set security and audit 8) Business Process Management Overview of Business Process Management Features with Demos Understanding of Important API packages and typical usage scenarios Setup API Usage Environment Create Session with BPM Create KYC Workflow with Maker and Checker Steps Initiate Workflow using CMS events and Using OOTB Applications Create BPM properties with ALL data types in KYC Workflow Get Information about properties created using API Save workflow properties with all datatype values of the launched workflow and dispatch Search/Retrieve Work items Metadata values Set Security on step using Platform Applications Use Security API to get the priviledges for different users Set Audit configurations on step using Platform Applications Retrieve and set Auditing data using API Configure Component Integrator Create and configure component integrator and use in KYC process 9) Attach a custom UI with a workflow step Search work items using Admin applications Handling any malfunctions in process 10) Web UI Development Overview of Web UI Features with Demos Understanding of Important API packages and typical usage scenarios Setup API Usage Environment Create Session with BPM Understand the existing preferences and impact on UI - Session Hands on for Preferences Understand the concept of search templates and stored searches Hands on stored searches and search templates Understand the concept of entry templates Hands on entry templates Understanding concept of BPF Create and configure BPF and use it /file-net.html For further details please contact TS Technologies (+-,) Thanks & regards Shobhana
See product
India
About Hadoop: Hadoop is a framework based on JAVA programming language, the main advantage with hadoop is its ability to process a large set of database over a wide range of network. Hadoop: Admin Developer Consultant These are the modules with Hadoop and my instructors is capable of handling all the three modules as mentioned above. Our customized syllabus will covers all the basic to advanced topics which provides you the full technical knowledge. Our training is a real time working professional and certified with hadoop which can provide you the more practical sessions with live examples so that it will be very easy while appearing for interviews. Our training will starts with software installation and guide you will all the basic to advanced topics. We are providing a free demo session with my faculty. Come and attend a demo session before going for registration. We are available at 9566183028 contact us immediately and enroll for free demo session.
See product
Pune (Maharashtra)
Informatica Course Content Traning at learning hub Magarpatta city /FC Road Pune (+91-93257-93756) www.learninghub.co.in Informatica Course Content Informatica Training Course A. Informatica PowerCenter Designer B. Informatica PowerCenter Workflow Manager C. Informatica Power Center Workflow Monitor D. Informatica PowerCenter Workflow Repository Manager E. Informatica Admin Console A. Informatica PowerCenter Designer • Understanding Source and Target - Create new connection(ODBC, Oracle etc) - Create and import Source and Target - Understanding the use of Shortcut • Understanding the Transformation - Understanding Passive and Active Transformation - Create and use of below transformation • Expression • Lookup(Connected and Unconnected) •Aggregrator,Sorter,SQ,Union,Joiner,Filter,Router,update startegy etc • Understanding of use of Mapping - Design new mapping - Use transformation in the mapping -Debugg the mapping • Understanding of use of Mapplet - Design new mapplet - Use mapplet in the mapping -Advantage of the mapplet B. Informatica PowerCenter Workflow Manager - Understanding of workflow - create and execute new workflow - Create new Task to execute the mapping - Understanding use of connection at Source and Target - Understanding of task Session,event wait,email,Assigmnet etc - understanding how to Schedule the workflow C. Informatica PowerCenter Workflow Monitor - Monitor the job - understanding of run statistics of each job -understanding of Stop/Abort of running job D. Informatica PowerCenter Workflow Repository Manager - Understanding use of Repository Manager - understanding migrate the job from environment to another environment - Check in check out a workflow - Understanding of creating new DG E. Informatica Admin Console -Understanding how to create a new user -Understating how to create a new folder -Understating how to provide a Role to a User. 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 Informatica Online Training, Informatica Class Room Training, Informatica Training in Magarpatta City, Informatica Jobs and Placement, Informatica Remote Support, Informatica Online Help, Informatica Videos training, Informatica training by Learning Hub, Fast track classes in, Best SAP ABAP training institutes in Pune, Best Faculty in Informatica , Best online Faculty in Informatica, Professional classroom training in Informatica, Professional online training in Informatica, Informatica Certification, Informatica training in Dubai, Informatica Training in Melbourne, Informatica Training in Dubai, Informatica Training Informatica Workflow Training Informatica Training, Informatica Online Training, Informati cacertfication and support
₹ 25
See product
India
Online trainings provided by Sphereinfotech [Real Time Experts] ---------------------------------------------------------------------------------------------- We are providing online IBM Websphere trainings [WAS Admin, MQ & MB, Data Power Development & Admin] Our Online Training Highlights -------------------------------------- 1. Depth course Material with real time Knowledge. 2. We are providing online classes with highly qualified professional trainers. 3. We will provide online classes and online demo session at student flexible timings. 4. In training case studies and real time scenarios covered. 5. We will give 24*7 technical supports. 6. We are providing normal track, weekend online trainings, fast track online classes. 7. We will provide every recorded sessions. 8. We will give full support while attending the interviews and contact me any time after completion of the course. If any one interest, please contact us Best Regards, sphereinfotech.com [M]: +91-
See product
India
What we offer: KITS Online Trainings understand the need for a quality training curriculum along with real-time implementation exposure as it forms the very essence of your future career in Packaging. Our well-structured online training course in APPLICATION PACKAGING, extensively covers all the core aspects of APPLICATION PACKAGING,Msi Tables,Custom Actions and Admin studio with an emphasis on live scenarios. Users get the complete flexibility in choosing their batch timings from weekend or weekday slots. Access to expert trainers and instructor led training sessions ensure that you can easily clear your doubts and get the exact guidance that is expected from a classroom training session. Application Packaging Online Training Course Content Explanation of Application Packaging / repackaging Basic Knowledge of Windows Operating system Application Packaging Minimum Hardware & Software Requirements Client Application Pre-Validation Analysis Admin Studio Tools Re-Packaging Tools Installation Designer Tab: Functionality of the Project Working With MSI Tables Working With Transforms (.MST). Working with Application Installation User Interface Wizard Customizations Working with Active Setup Working with Install-shield Silent Setup or Response File Creation. Working With Custom Actions and Sequences Working with Add-Ins. Working with Customization Products Installation Process of Packaged Application Working with MSI Features Working with in initial Level of Troubleshooting Working With Merge Modules Testing of Packaged Application Working With ODBC Data Source Administrator Working with Vendor Application Tasks Working with Property Manager Working with Troubleshooting Tools Overview of Wise Script & VB Scripting. Working with Complex Applications. Working with Deployment: SCCM Please open below link for complete course content The Advantage you get with KITS Online Application Packaging Course: Flexibility in choosing training sessions as per your existing schedule Advantage of completing the course at your own place and convenience Training resources are prepared by Industry Experts in Packaging with rich real-time experience Interactive training sessions with 24/7 access to support and training resources Focus on building interview skills with extensive interview questions and resume writing tips Real-time implementation projects, course exercises, assignments and complete access to expert faculty Please contact for more details KITS Online Technologies Ph: +91 Website: kitsonlinetrainings.com
See product
India
For - Oracle OIM Admin, Fusion Architect, Security Consultant  Complete practical approach, right from installation to configuration and thorough OIM admin  All recorded session with pre-developed codes for current learning and future references.  Topic Explanationfollowed by practical demonstration.  Complete Suite Implementation (OIM, SOA,OID),DB, RCU,Weblogic using custom JDK, OUD, Custom Applications for OIM, SOA Composites with use cases. Out of Context:  No Practical environment or Pre-Configured OIM Image will be provided for practice. Objective of Course:  At the end of the course trainee will be able to bring any application(with pre-built connector) into OIM, to do Trusted & Target Reconciliation, all 3 kinds of Provisioning (Direct/Manual, Auto/Criteria, Request Based), Attestation OIM 11gR2 - Around 30+ Hours • OIM 11g Overview(Identity Governance Context) • Install, Configure and integrate IAM Suite(OIM), IDM Suite(OID), SOA, DB(Creation, Tuning for OIM), RCU, OUD, and Weblogic using custom JDK, Pre-developed SOA Composites. • Create OIM Domain, Security Store for IAM. • Working with OIM consoles – Identity, Sysadmin&Design • Create and manage records for organizations, roles, and users • Using Bulk Load to load sample data in OIM. • Creating alternate OIM Administrator • Installing pre-built Connector, Creating IT resources, Sandbox, Application Instance. • Installing, Configuring 2 light weight sample applications as Trusted Application(Simulating HRMS [PSFT/Ebiz/SAP]) and Target Application(Simulating SAP, Hyperion etc.) • Working With Provisioning& Reconciliation
See product
India
Sadgurutechnologies- 040- mail us @ For - Oracle OIM Admin, Fusion Architect, Security Consultant Complete practical approach, right from installation to configuration and thorough OIM admin All recorded session with pre-developed codes for current learning and future references. Topic Explanationfollowed by practical demonstration. Complete Suite Implementation (OIM, SOA,OID),DB, RCU,Weblogic using custom JDK, OUD, Custom Applications for OIM, SOA Composites with use cases. Out of Context: No Practical environment or Pre-Configured OIM Image will be provided for practice. Objective of Course: At the end of the course trainee will be able to bring any application(with pre-built connector) into OIM, to do Trusted & Target Reconciliation, all 3 kinds of Provisioning (Direct/Manual, Auto/Criteria, Request Based), Attestation OIM 11gR2 - Around 30+ Hours •OIM 11g Overview(Identity Governance Context) •Install, Configure and integrate IAM Suite(OIM), IDM Suite(OID), SOA, DB(Creation, Tuning for OIM), RCU, OUD, and Weblogic using custom JDK, Pre-developed SOA Composites. •Create OIM Domain, Security Store for IAM. •Working with OIM consoles – Identity, Sysadmin&Design •Create and manage records for organizations, roles, and users •Using Bulk Load to load sample data in OIM. •Creating alternate OIM Administrator •Installing pre-built Connector, Creating IT resources, Sandbox, Application Instance. •Installing, Configuring 2 light weight sample applications as Trusted Application(Simulating HRMS [PSFT/Ebiz/SAP]) and Target Application(Simulating SAP, Hyperion etc.) •Working With Provisioning& Reconciliation
See product
India
What we offer: KITS Online Trainings understand the need for a quality training curriculum along with real-time implementation exposure as it forms the very essence of your future career in Packaging. Our well-structured online training course in APPLICATION PACKAGING, extensively covers all the core aspects of APPLICATION PACKAGING,Msi Tables,Custom Actions and Admin studio with an emphasis on live scenarios. Users get the complete flexibility in choosing their batch timings from weekend or weekday slots. Access to expert trainers and instructor led training sessions ensure that you can easily clear your doubts and get the exact guidance that is expected from a classroom training session. Application Packaging Online Training Course Content Explanation of Application Packaging / repackaging Basic Knowledge of Windows Operating system Application Packaging Minimum Hardware & Software Requirements Client Application Pre-Validation Analysis Admin Studio Tools Re-Packaging Tools Installation Designer Tab: Functionality of the Project Working With MSI Tables Working With Transforms (.MST). Working with Application Installation User Interface Wizard Customizations Working with Active Setup Working with Install-shield Silent Setup or Response File Creation. Working With Custom Actions and Sequences Working with Add-Ins. Working with Customization Products Installation Process of Packaged Application Working with MSI Features Working with in initial Level of Troubleshooting Working With Merge Modules Testing of Packaged Application Working With ODBC Data Source Administrator Working with Vendor Application Tasks Working with Property Manager Working with Troubleshooting Tools Overview of Wise Script & VB Scripting. Working with Complex Applications. Working with Deployment: SCCM Please open below link for complete course content http://kitsonlinetrainings.com/application-packaging-online-training-2.html The Advantage you get with KITS Online Application Packaging Course: Flexibility in choosing training sessions as per your existing schedule Advantage of completing the course at your own place and convenience Training resources are prepared by Industry Experts in Packaging with rich real-time experience Interactive training sessions with 24/7 access to support and training resources Focus on building interview skills with extensive interview questions and resume writing tips Real-time implementation projects, course exercises, assignments and complete access to expert faculty Please contact for more details KITS Online Technologies Mail: India Ph: +91 Website: kitsonlinetrainings.com
See product
Chennai (Tamil Nadu)
We PERIDOT SYSTEMS located at ADYAR is offering the best Sharepoint Training in Chennai with the faculties from top companies and certified professionals. We are offering both admin as well us developer training in sharepoint. Join with us and get benefited. Modules with Sharepoint: Sharepoint Admin Sharepoint Developer These are the two modules with Sharepoint and we are handling both in our institute. Getting 100% knowledge will supports you a lot during placement. This technical knowledge will support you in your career. About us: Practical based training Certification guidance Free Software support Training material will be provided Flexible timing Minimum number of students in a batch Different time slots available These are the few things about us, Join us and get more placement opportunity. Attend a free demo session we are available at 9566183028 or www.peridotsystems.in
₹ 15.000
See product
Coimbatore (Tamil Nadu)
Our training program is very much mixed both practical and interview point of questions. It will helpful for the companies and students who are willing to learn PHP with live projects. We always schedule a demo class for the new enquired students. It is completely FREE. It takes your 30mins of time. Once you attended the demo session you got the idea about what you are going to learn in PHP with us. PHP is used to create web applications like Face Book, Flickr,Yahoo, Mailchimp, Flipkart. Using PHP we can create both Static and Dynamic Websites. Static Web Pages Static Web pages display the exact same information whenever anyone visits it. Static Web pages do not have to be simple plain text. They can feature detailed multimedia design and even videos. However, every visitor to that page will be greeted by the exact same text, multimedia design or video every time he visits the page until you alter that page's source code. We can create Static Web Pages Using HTML and CSS Dynamic Web Pages Dynamic Web pages are capable of producing different content for different visitors from the same source code file. The website can display different content based on what operating system or browser the visitor is using, whether she is using a PC or a mobile device, or even the source that referred the visitor. We can create Dynamic Web Pages Using PHP, MYSQL, JavaScript Frameworks like Laraval, Cake PHP, Codeigniter PHP Training Details HTML and CSS HTML (the Hypertext Markup Language) and CSS (Cascading Style Sheets) are two of the core technologies for building Static Web pages. HTML provides the structure of the page, CSS the (visual and aural) layout, for a variety of devices. Project 1 Once you learned all the details mentioned above we will make you to work with Real Time static Projects in HTML and CSS. In this Project you are going to create a complete static website design like Home, About, Service, Product and Contact pages. Once you created your static website we will make you to host the static website in Online. Bootstrap Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. Our Boostrap course is packaged in such a way that it is packed with easy to understand explanations, practice examples. Project 2 Once you learned all the details mentioned above we will make you to create Responsive Website Which Means the website will have fixed width in iphon, ipad, desktop etc.Once you created your responsive website we will make you to host the responsive website in Online. JavaScript JavaScript is a Client-side scripting language using JS you can create Sliders, you can validate password and confirm password like we can do all form element validates. It can be used to control web pages on the client side of the browser, server-side programs, and even mobile applications. In this part you are going to learn about following details Project 3 We will make you to create Sliders, Client and Server side form validates in both static and Dynamic Websites PHP and MYSQL PHP is used to create dynamic websites here your PHP code act as a front end and MYSQL act as a Backend which mean MYSQL is your Database Management System. In this part we will teach you how to create a complete dynamic website using PHP and MYSQL like Login Form, Register Form, Profile Page, and Admin Panel and how the user will post their article in Websites like Blog Pages and Visitors count etc. Popular sites using PHP • Facebook.com • Baidu.com • Wikipedia.org Project 3 Project 3.1: Creating a Dynamic Website and Admin Panel. Project 3.2: Register Form, Login Form and Profile Page. Project 3.3: Dynamic insert, Update, Delete, Edit Pages. Project3.4: inserting and updating images and video files. Project3.5: User Posting Articles like Blog pages. Drupal Drupal is a Content Management System (CMS) which is used to build to Web Portals and Enterprise applications. About this Drupal Course This course will help you learn Drupal from the basics. Even if you are new to drupal or cms or programming, this course will teach you what is a cms, what is drupal and how to use drupal to build websites. If you are looking for a Beginners' level Drupal tutorial or Drupal training, this course is right for you. Who can join this Drupal Course? Freshers / Job Seekers looking for a job in MNCs Web professionals looking to offer Drupal to their clients PHP Developers who want to learn Drupal Entrepreneurs who want to build advanced, powerful Drupal websites. Candidates will learn how to: • Basic Site configuration • Drupal Basic • Drupal Termonology • Drupal Workflow • Getting Started • User Management • Layout in Drupal • Adding Content Types • Creating a view with the views user interface Contact Us Address #108, Nehru Street, Near Senthil Kumaran Theatre, Ramnagar, Coimbatore-641009, Tamil Nadu. Mobile no: 8681962227
See product
Coimbatore (Tamil Nadu)
Our training program is very much mixed both practical and interview point of questions. It will helpful for the companies and students who are willing to learn PHP with live projects. We always schedule a demo class for the new enquired students. It is completely FREE. It takes your 30mins of time. Once you attended the demo session you got the idea about what you are going to learn in PHP with us. PHP is used to create web applications like Face Book, Flickr,Yahoo, Mailchimp, Flipkart. Using PHP we can create both Static and Dynamic Websites. Static Web Pages Static Web pages display the exact same information whenever anyone visits it. Static Web pages do not have to be simple plain text. They can feature detailed multimedia design and even videos. However, every visitor to that page will be greeted by the exact same text, multimedia design or video every time he visits the page until you alter that page's source code. We can create Static Web Pages Using HTML and CSS Dynamic Web Pages Dynamic Web pages are capable of producing different content for different visitors from the same source code file. The website can display different content based on what operating system or browser the visitor is using, whether she is using a PC or a mobile device, or even the source that referred the visitor. We can create Dynamic Web Pages Using PHP, MYSQL, JavaScript Frameworks like Laraval, Cake PHP, Codeigniter PHP Training Details HTML and CSS HTML (the Hypertext Markup Language) and CSS (Cascading Style Sheets) are two of the core technologies for building Static Web pages. HTML provides the structure of the page, CSS the (visual and aural) layout, for a variety of devices. Project 1 Once you learned all the details mentioned above we will make you to work with Real Time static Projects in HTML and CSS. In this Project you are going to create a complete static website design like Home, About, Service, Product and Contact pages. Once you created your static website we will make you to host the static website in Online. Bootstrap Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. Our Boostrap course is packaged in such a way that it is packed with easy to understand explanations, practice examples. Project 2 Once you learned all the details mentioned above we will make you to create Responsive Website Which Means the website will have fixed width in iphon, ipad, desktop etc.Once you created your responsive website we will make you to host the responsive website in Online. JavaScript JavaScript is a Client-side scripting language using JS you can create Sliders, you can validate password and confirm password like we can do all form element validates. It can be used to control web pages on the client side of the browser, server-side programs, and even mobile applications. In this part you are going to learn about following details Project 3 We will make you to create Sliders, Client and Server side form validates in both static and Dynamic Websites PHP and MYSQL PHP is used to create dynamic websites here your PHP code act as a front end and MYSQL act as a Backend which mean MYSQL is your Database Management System. In this part we will teach you how to create a complete dynamic website using PHP and MYSQL like Login Form, Register Form, Profile Page, and Admin Panel and how the user will post their article in Websites like Blog Pages and Visitors count etc. Popular sites using PHP • Facebook.com • Baidu.com • Wikipedia.org Project 3 Project 3.1: Creating a Dynamic Website and Admin Panel. Project 3.2: Register Form, Login Form and Profile Page. Project 3.3: Dynamic insert, Update, Delete, Edit Pages. Project3.4: inserting and updating images and video files. Project3.5: User Posting Articles like Blog pages. Drupal Drupal is a Content Management System (CMS) which is used to build to Web Portals and Enterprise applications. About this Drupal Course This course will help you learn Drupal from the basics. Even if you are new to drupal or cms or programming, this course will teach you what is a cms, what is drupal and how to use drupal to build websites. If you are looking for a Beginners' level Drupal tutorial or Drupal training, this course is right for you. Who can join this Drupal Course? Freshers / Job Seekers looking for a job in MNCs Web professionals looking to offer Drupal to their clients PHP Developers who want to learn Drupal Entrepreneurs who want to build advanced, powerful Drupal websites. Candidates will learn how to: • Basic Site configuration • Drupal Basic • Drupal Termonology • Drupal Workflow • Getting Started • User Management • Layout in Drupal • Adding Content Types • Creating a view with the views user interface 100% Practical Training. No fee for Interview preparation. No fee for communication skills training. No fee for Resume preparation. 100 % job Assistance. Personal attention. Training on the basis of company s requirement. Address #108, Nehru Street, Near Senthil Kumaran Theatre, Ramnagar, Coimbatore-641009, Tamil Nadu. Mobile no: 8681962227
See product
Coimbatore (Tamil Nadu)
​ Our training program is very much mixed both practical and interview point of questions. It will helpful for the companies and students who are willing to learn PHP with live projects. We always schedule a demo class for the new enquired students. It is completely FREE. It takes your 30mins of time. Once you attended the demo session you got the idea about what you are going to learn in PHP with us. PHP is used to create web applications like Face Book, Flickr,Yahoo, Mailchimp, Flipkart. Using PHP we can create both Static and Dynamic Websites. Static Web Pages Static Web pages display the exact same information whenever anyone visits it. Static Web pages do not have to be simple plain text. They can feature detailed multimedia design and even videos. However, every visitor to that page will be greeted by the exact same text, multimedia design or video every time he visits the page until you alter that page's source code. We can create Static Web Pages Using HTML and CSS Dynamic Web Pages Dynamic Web pages are capable of producing different content for different visitors from the same source code file. The website can display different content based on what operating system or browser the visitor is using, whether she is using a PC or a mobile device, or even the source that referred the visitor. We can create Dynamic Web Pages Using PHP, MYSQL, JavaScript Frameworks like Laraval, Cake PHP, Codeigniter PHP Training Details HTML and CSS HTML (the Hypertext Markup Language) and CSS (Cascading Style Sheets) are two of the core technologies for building Static Web pages. HTML provides the structure of the page, CSS the (visual and aural) layout, for a variety of devices. Project 1 Once you learned all the details mentioned above we will make you to work with Real Time static Projects in HTML and CSS. In this Project you are going to create a complete static website design like Home, About, Service, Product and Contact pages. Once you created your static website we will make you to host the static website in Online. Bootstrap Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. Our Boostrap course is packaged in such a way that it is packed with easy to understand explanations, practice examples. Project 2 Once you learned all the details mentioned above we will make you to create Responsive Website Which Means the website will have fixed width in iphon, ipad, desktop etc.Once you created your responsive website we will make you to host the responsive website in Online. JavaScript JavaScript is a Client-side scripting language using JS you can create Sliders, you can validate password and confirm password like we can do all form element validates. It can be used to control web pages on the client side of the browser, server-side programs, and even mobile applications. In this part you are going to learn about following details Project 3 We will make you to create Sliders, Client and Server side form validates in both static and Dynamic Websites PHP and MYSQL PHP is used to create dynamic websites here your PHP code act as a front end and MYSQL act as a Backend which mean MYSQL is your Database Management System. In this part we will teach you how to create a complete dynamic website using PHP and MYSQL like Login Form, Register Form, Profile Page, and Admin Panel and how the user will post their article in Websites like Blog Pages and Visitors count etc. Popular sites using PHP • Facebook.com • Baidu.com • Wikipedia.org Project 3 Project 3.1: Creating a Dynamic Website and Admin Panel. Project 3.2: Register Form, Login Form and Profile Page. Project 3.3: Dynamic insert, Update, Delete, Edit Pages. Project3.4: inserting and updating images and video files. Project3.5: User Posting Articles like Blog pages. Drupal Drupal is a Content Management System (CMS) which is used to build to Web Portals and Enterprise applications. About this Drupal Course This course will help you learn Drupal from the basics. Even if you are new to drupal or cms or programming, this course will teach you what is a cms, what is drupal and how to use drupal to build websites. If you are looking for a Beginners' level Drupal tutorial or Drupal training, this course is right for you. Who can join this Drupal Course? Freshers / Job Seekers looking for a job in MNCs Web professionals looking to offer Drupal to their clients PHP Developers who want to learn Drupal Entrepreneurs who want to build advanced, powerful Drupal websites. Candidates will learn how to: • Basic Site configuration • Drupal Basic • Drupal Termonology • Drupal Workflow • Getting Started • User Management • Layout in Drupal • Adding Content Types • Creating a view with the views user interface 100% Practical Training. No fee for Interview preparation. No fee for communication skills training. No fee for Resume preparation. 100 % job Assistance. Personal attention. Training on the basis of company s requirement. Contact Us Address #108, Nehru Street, Near Senthil Kumaran Theatre, Ramnagar, Coimbatore-641009, Tamil Nadu. Mobile no: 8681962227
See product

Free Classified ads - buy and sell cheap items in India | CLASF - copyright ©2024 www.clasf.in.