• Professional Development
  • Medicine & Nursing
  • Arts & Crafts
  • Health & Wellbeing
  • Personal Development

2678 Character courses

20th January Lil Chase #Agent121. Looking for: PICTURE BOOKS, CHAPTER BOOKS, MG, YA

5.0(1)

By I Am In Print

LOOKING FOR: PICTURE BOOKS, CHAPTER BOOKS, MG, YA Lil is an editor with over 15 years experience in the publishing industry. She’s currently freelancing and is in direct contact with many of the big publishing houses: Hachette, Bonnier Books, and book packager, Working Partners Ltd, among others. She also works with the Caroline Wakeman Literary Agency, assessing their authors’ work for commercial viability, as well as scouting for new talent. For twelve years, Lil was a Senior Commissioning Editor at Working Partners Ltd – the creatives behind massive commercial hits such as Beast Quest, Warriors and the Daisy Meadows series. There she created globally successful concepts for every age group and developed storylines so the books were unputdownable. Lil is also an author in her own right: she has written 6 books under her own name, and ghost written many others under various pseudonyms.  In every age level, Lil would like to see originality - particularly in voice. A strong character with depth, venturing on a quest that's never been undertaken before will get her excited. The 'quest' doesn't have to be epic in scale, it could be as small as petting the next-door neighbour's dog, or getting the good looking new kid to notice you, it just has to be something a reader will want to invest in. She also loves humour and is happy to see anything quirky (perhaps even downright silly!).  For picture books, Lil would like you to submit a covering letter, and 1 complete manuscript, double-spaced, with spreads marked out, in a single word or PDF doc. For chapter books, MG and YA, please send a covering letter, the first three chapters and a synopsis, double spaced, in a single Word or PDF doc. Please send EITHER picture books OR another genre, not both in one submission. By booking this session you agree to email your material to reach I Am In Print by the stated submission deadline to agent121@iaminprint.co.uk. Please note that I Am In Print take no responsibility for the advice given in your Agent121. The submission deadline is: Friday 10 January 2025

20th January Lil Chase #Agent121. Looking for: PICTURE BOOKS, CHAPTER BOOKS, MG, YA
Delivered Online + more
£72

MySQL for developers

5.0(3)

By Systems & Network Training

MySQL for developers training course description This MySQL Developers training course is designed for MySQL Developers who have a good understanding of a MySQL database and experience of using SQL commands. The course provides further practical experience in more advanced MySQL commands and SQL statements including Stored Routines, Triggers and Event Scheduling. What will you learn Provide the skills needed to write more advanced queries and database maintenance statements on a MySQL database. Use advanced features of the MySQL Client. Use advanced data types. Manage the structure of databases and tables. Manage and using indexes. Write complex SQL query statements. Use advanced SQL expressions. Use advanced SQL functions. Perform advanced Insert, Update, Delete, Replace and Truncate Operations. Use user variable syntax and properties. Import and export data from within MySQL. Import and export data from the command line. Perform complex joins to access multiple tables. Perform complex subqueries. Create, manage and us views. Use prepared statements. Create and use stored routines. Create and use triggers. Obtain database metadata. Optimize queries. Work with the main storage engines. Debug MySQL applications. MySQL for developers training course details Who will benefit: MySQL Developers who have a basic understanding of a MySQL database and SQL commands as covered on the Introduction to MySQL course. Prerequisites: MySQL foundation Duration 5 days MySQL for developers training course contents Introduction Administration and Course Materials, Course Structure and Agenda, Delegate and Trainer Introductions. Client/server concepts MySQL client/server architecture, Server modes, Using client programs, Logging in options, Configuration files, Precedence of logging in options Hands on Using client/server The MySQL client program Using MySQL interactively, The MySQL prompts, Client commands and SQL statements, Editing, Selecting a database, Help, Safe updates, Using script files, Using a source file, Redirecting output into a file, Command line execution, Mysql output formats, Overriding the defaults, Html and xml output, MySQL Utilities. Hands on Using the MySQL client program Data types Bit data type, Numeric data types, Auto_increment, Character string data types, Character sets and collation, Binary string data types, Enum and Set data types, Temporal data types, Timezone support, Handling Missing Or Invalid Data Values, SQL_MODE options. Hands on Using data types Identifiers Using Quotes with identifier naming, Case sensitivity in Identifier naming, Qualifying columns with table and database names, Using reserved words as identifiers, Function names Hands on Using identifiers Databases Database properties, Creating a database, Selecting a database, Altering databases, Dropping databases, Obtaining database metadata, The SHOW command, The INFORMATION_SCHEMA database, The SHOW CREATE command Hands on Using databases Tables and indexes Table properties, Creating tables, Create table using Select or Like, Temporary tables and memory tables, Altering tables, Adding columns, Changing column widths and types, Renaming columns, Dropping columns, Adding constraints, Dropping constraints, Renaming tables, Change the table storage engine, Multiple alterations, Dropping tables, Emptying tables, Obtaining table metadata, Show create table, The information_schema, Index introduction, Structure of a mysql index, Creating and dropping indexes, Creating an index, Altering a table to add an index, Specifying index type, Dropping indexes, Obtaining Index Metadata. Hands on Creating, altering and dropping tables/indexes Querying for data The SQL select statement and MySQL differences, Advanced order by, Order by and collation, Order by with enum datatype, Order by with Set datatype, Ordering with distinct and group by Special features of union, Limit and order by clauses, Group By clause, Group_concat, Using Rollup in a Group By clause. Hands on Querying for data SQL Expressions and functions Components of expressions, Nulls, Numeric expressions, String expressions, Temporal expressions, Comparison functions, Flow control functions, Numeric functions, String functions, Temporal functions. Hands on Using expressions and functions Updating data Update operations and privileges, Inserting rows, Insert using a set clause, Inserting duplicate values, Replacing rows, Updating rows, Update using the order by and limit clauses, Deleting rows, The delete and truncate statements. Exercise: Inserting, updating, replacing and deleting data Connectors MySQL client interfaces, MySQL connectors, Oracle and community conectors, Connecting to MySQL server using Java and PHP connectors, MySQL and NoSQL, Innodb integration with memcached. Obtaining database metadata What is metadata?, The mysqlshow utility, The show and describe commands, Describing tables, The information_schema, Listing tables, Listing columns, Listing views, Listing key_columns_usage. Hands on Obtaining database metadata Debugging Mysql error messages, The show statement, Show errors, Show count(*) errors, Show warnings, Show count(*) warnings, Note messages, The perror utility. Hands on Debugging Joins Overview of inner joins, Cartesian product, Inner joins with original syntax, Non equi-join, Using table aliases to avoid name clashes, Inner Joins With ISO/ANSI Syntax, Outer Joins, Left outer joins, Right outer joins, Full outer joins, Updating multiple tables simultaneously, Updating rows in one table based on a condition in another, Updating rows in one table reading data from another, Deleting from multiple tables simultaneously, Deleting rows in one table based on a condition in another. Hands on Coding joins Subqueries Types of subquery, Multiple-column subqueries, Correlated subqueries, Using the ANY, ALL and SOME operators, Using the EXISTS operator, Subqueries as scalar expressions, Inline views, Converting subqueries to joins, Using subqueries in updates and deletes. Hands on Coding subqueries Views Why views are used, Creating views, View creation restrictions, View algorithms, Updateable views, Altering and dropping views, Displaying information about views, Privileges for views. Hands on Using views Import and Export Exporting using SQL, Privileges required to export data, Importing using SQL, Messages when loading data, Privileges required to load data, Exporting from the command line, Mysqldump main options, Importing from the command line, Mysqlimport main options. Hands on Importing and exporting User variables and prepared statements Creating User variables, User variables in a select, Prepared statements, The prepare statement, The execute statement, The deallocate statement, Using prepared statements in code, with connectors. Hands on Using variables and prepared statements Introduction to stored routines Types of stored routines, Benefits of stored routines, Stored routine features, Differences between procedures and functions, Introduction to the Block, Declaring variables and constants, Assigning values to variables, Definer rights and invoker rights, Using SELECT in stored routines, Altering and dropping stored routines, Obtaining stored routine metadata, Stored routine privileges and execution security. Hands on Writing simple stored routines Stored routines - program logic The IF .. THEN .. ELSEIF construct, The CASE statement, The basic loop, The while loop, The repeat loop, The iterate statement, Nested loops. Hands on Writing stored routines with program logic Stored routines - exception handlers and cursors Dealing with errors using Exception handlers, Cursors, What is a cursor?, Cursor operations, Declaring cursors, Opening and closing cursors, Fetching rows, Status checking. Hands on Writing stored routines with program logic Procedures with parameters Creating procedures with parameters, Calling Procedures With Parameters. Hands on Writing stored routines with parameters Functions What is a function?, The create function statement, Executing functions, Executing functions from code, Executing functions from SQL statements, The deterministic and SQL clauses. Hands on Writing functions Triggers Trigger creation, Restrictions on triggers, The create trigger statement, Using the old and new qualifiers, Managing triggers, Destroying triggers, Required privileges. Hands on Writing triggers Basic optimizations Normalisation of data to third normal form, Using indexes for optimization, General query enhancement, Using Explain to analyze queries, Choosing an INNODB or MYISAM storage engine, Using MySQL Enterprise Monitor in query optimization. Hands on Making use of basic optimizations More about indexes Indexes and joins Hands on Investigating indexes and joins

MySQL for developers
Delivered in Internationally or OnlineFlexible Dates
£2,797

Pinot Noir from around the globe

By Hampshire Wine School

Grape varieties are landmarks on the map of wine. The wine drinker finds it useful to know the varitey used because this is a major clue to the taste and character of the wine in the bottle. A wine made from Pinot Noir will have certain taste characteristics, wherever in the World it is made

Pinot Noir from around the globe
Delivered In-PersonFlexible Dates
£29

CrazyTalk Animator 3 Course Online

By Lead Academy

CrazyTalk Animator 3 Course Overview Whether you are self-taught and you want to fill in the gaps for better efficiency and productivity, this crazytalk animator 3 course will set you up with a solid foundation to become a confident animator expert/animation and develop more advanced skills. This comprehensive crazytalk animator 3 course is the perfect way to kickstart your career in the field of animation. This course will give you a competitive advantage in your career, making you stand out from all other applicants and employees. As one of the leading course providers and most renowned e-learning specialists online, we're dedicated to giving you the best educational experience possible. This course is crafted by industry expert, to enable you to learn quickly and efficiently, and at your own pace and convenience. Who should take this course? This comprehensive crazytalk animator 3 course is suitable for anyone looking to improve their job prospects or aspiring to accelerate their career in this sector and want to gain in-depth knowledge of animation. Entry Requirement There are no academic entry requirements for this crazytalk animator 3 course, and it is open to students of all academic backgrounds. As long as you are aged seventeen or over and have a basic grasp of English, numeracy and ICT, you will be eligible to enrol. Method of Assessment On successful completion of the course, you will be required to sit an online multiple-choice assessment. The assessment will be evaluated automatically and the results will be given to you immediately. Career path This crazytalk animator 3 course opens a brand new door for you to enter the relevant job market and also provides you with the chance to accumulate in-depth knowledge at the side of needed skills to become flourishing in no time. You will also be able to add your new skills to your CV, enhance your career and become more competitive in your chosen industry. Course Curriculum Introduction to Crazy Talk Animator What You Will Learn Hard Evidence - Why Crazy Talk Animator is The Best for Youtubers Requirements for Animated Series The Workflow for YouTube Animated Series Overview of the Interface Zooming and Navigation Advantages of Animating in Crazy Talk Animator 3 Compose a Scene Quickly with Bonus Package Content How Quickly You Can Animate PSD Characters Using Bones Lightspeed Animation Using Motion Clips Create and Save Reusable Custom Content for Animated Series Design and Prepare PSD Characters Importance of the visualization Design a PSD Character in Photoshop Rig a Character in Photoshop (Pipeline Users) Animate the Body Advanced Character Animation Adjusting Motion Clips Pt 1 Advanced Character Animation Adjusting Motion Clips Pt 2 Custom Character Animation Hand in Front and Hand Behind Changing angle for G3 Character in Crazy Talk Animator Replacement Animation - Changing Sprites Removing Animation from Motion Clips Facial Animation of Emotional Expressions Set up the Face Correctly for Head Rotation Option 1 - Face Puppet - Quick Facial Animation Option 2 - Face Key Editor - Advanced Facial Animation Auto Lip-Sync Adjusting Lip Sync Extra Animation Tips Grabbing and Throwing Objects Simple Motion Graphics Using Elastic Motion Animate a Scene Steps to Animate a Scene Putting Together All The Scenes Conclusion Supplementary Resources Supplementary Resources - CrazyTalk Animator 3 Course Online Recognised Accreditation CPD Certification Service This course is accredited by continuing professional development (CPD). CPD UK is globally recognised by employers, professional organisations, and academic institutions, thus a certificate from CPD Certification Service creates value towards your professional goal and achievement. CPD certificates are accepted by thousands of professional bodies and government regulators here in the UK and around the world. Many organisations look for employees with CPD requirements, which means, that by doing this course, you would be a potential candidate in your respective field. Quality Licence Scheme Endorsed The Quality Licence Scheme is a brand of the Skills and Education Group, a leading national awarding organisation for providing high-quality vocational qualifications across a wide range of industries. It will give you a competitive advantage in your career, making you stand out from all other applicants and employees.     Certificate of Achievement Endorsed Certificate from Quality Licence Scheme After successfully passing the MCQ exam you will be eligible to order the Endorsed Certificate by Quality Licence Scheme. The Quality Licence Scheme is a brand of the Skills and Education Group, a leading national awarding organisation for providing high-quality vocational qualifications across a wide range of industries. It will give you a competitive advantage in your career, making you stand out from all other applicants and employees. There is a Quality Licence Scheme endorsement fee to obtain an endorsed certificate which is £65. Certificate of Achievement from Lead Academy After successfully passing the MCQ exam you will be eligible to order your certificate of achievement as proof of your new skill. The certificate of achievement is an official credential that confirms that you successfully finished a course with Lead Academy. Certificate can be obtained in PDF version at a cost of £12, and there is an additional fee to obtain a printed copy certificate which is £35.   FAQs Is CPD a recognised qualification in the UK? CPD is globally recognised by employers, professional organisations and academic intuitions, thus a certificate from CPD Certification Service creates value towards your professional goal and achievement. CPD-certified certificates are accepted by thousands of professional bodies and government regulators here in the UK and around the world. Are QLS courses recognised? Although QLS courses are not subject to Ofqual regulation, they must adhere to an extremely high level that is set and regulated independently across the globe. A course that has been approved by the Quality Licence Scheme simply indicates that it has been examined and evaluated in terms of quality and fulfils the predetermined quality standards. When will I receive my certificate? For CPD accredited PDF certificate it will take 24 hours, however for the hardcopy CPD certificate takes 5-7 business days and for the Quality License Scheme certificate it will take 7-9 business days. Can I pay by invoice? Yes, you can pay via Invoice or Purchase Order, please contact us at info@lead-academy.org for invoice payment. Can I pay via instalment? Yes, you can pay via instalments at checkout. How to take online classes from home? Our platform provides easy and comfortable access for all learners; all you need is a stable internet connection and a device such as a laptop, desktop PC, tablet, or mobile phone. The learning site is accessible 24/7, allowing you to take the course at your own pace while relaxing in the privacy of your home or workplace. Does age matter in online learning? No, there is no age limit for online learning. Online learning is accessible to people of all ages and requires no age-specific criteria to pursue a course of interest. As opposed to degrees pursued at university, online courses are designed to break the barriers of age limitation that aim to limit the learner's ability to learn new things, diversify their skills, and expand their horizons. When I will get the login details for my course? After successfully purchasing the course, you will receive an email within 24 hours with the login details of your course. Kindly check your inbox, junk or spam folder, or you can contact our client success team via info@lead-academy.org

CrazyTalk Animator 3 Course Online
Delivered Online On Demand
£25

Borderline Personality Disorder Awareness

By OnlineCoursesLearning.com

Borderline Personality Disorder Certification Borderline Personality Disorder (BPD) is an issue of temperament joined by maladaptive relationship examples and thinking styles. BPD can cause a lot of pain and it normally impacts each zone of an individual's life. In this Online Course, you will get an outline of BPD, including its indications, causes and treatment. You will figure out how Dialectical Behavior Therapy (DBT) is utilized to assist individuals with BPD lead additional satisfying lives and how social and clinical help can assist them with recuperating their condition. You will likewise realize why and how individuals with this determination may profit by additional help at work.   You Will Learn: What is implied by the expression "character problem", the most widely recognized manifestations of BPD, what causes BPD and why it requires immediate and cautious treatment How BPD is analyzed and an outline of the fundamental medicines accessible How Dialectical Behavior Therapy (DBT) can improve temperament and working in individuals with BPD The difficulties individuals with BPD face in the working environment and how their associates and directors can uphold them in getting the assistance they need Benefits of Taking This Course: In the event that you know somebody with BPD, this course will assist you with understanding their condition and offer help whenever required In the event that you work with administration clients with a BPD finding, this course will give you an understanding of their condition and help you address their issues In the event that you direct somebody with BPD, this course will empower you to help address their issues in the work environment In the event that you have an interest in word-related wellbeing or psychological sickness when all is said in done, you will profit from this thorough prologue to the most well-known character issue   Video review How to Spot the 9 Traits of Borderline Personality Disorder   Course Modules/Lessons Module 01: What Is Borderline Personality Disorder? Module 02: Diagnosis and Treatment of Borderline Personality Disorder Module 03: Dialectical Behaviour Therapy Module 04: Supporting an Employee with Borderline Personality Disorder

Borderline Personality Disorder Awareness
Delivered Online On Demand
£50

Drawing Cartoon Animals

5.0(10)

By Apex Learning

Overview With this course, "Drawing Cartoon Animals" take a whimsical trip into the realm of artistic creation. Unleash your creativity as we delve into the enchanting realm of cartoon illustration, where imagination knows no bounds. From the mischievous antics of a Bear who Loves to Stare to the charming elegance of an Elegant Elephant, each lesson is a playful exploration of character design and storytelling. With a blend of rhyme and visual expression, this course invites learners of all ages to hone their artistic skills and bring delightful cartoon animals to life on paper. Dive into this vibrant adventure where every stroke of the pencil sparks imagination and every character has a story to tell. Join us and discover the joy of drawing cartoon animals in a fun and engaging environment that inspires artistic expression and ignites the imagination. How will I get my certificate? You may have to take a quiz or a written test online during or after the course. After successfully completing the course, you will be eligible for the certificate. Who is This course for? Aspiring artists eager to learn cartoon illustration techniques. Parents and educators seeking engaging art activities for children. Cartoon enthusiasts interested in honing their drawing skills. Individuals looking to add a touch of whimsy to their artistic repertoire. Anyone seeking a fun and creative outlet for self-expression through art. Requirements Our Drawing Cartoon Animals has been designed to be fully compatible with tablets and smartphones. Here are some common requirements you may need: Computer, smartphone, or tablet with internet access. English language proficiency. Required software/tools. (if needed) Commitment to study and participate. There is no time limit for completing this course; it can be studied at your own pace. Career Path Popular Career Paths for a Drawing Cartoon AnimalsCourse: Freelance Cartoonist: £20,000 - £40,000 Children's Book Illustrator: £18,000 - £30,000 Animator: £25,000 - £50,000 Art Teacher: £20,000 - £35,000 Graphic Designer: £20,000 - £35,000 Character Designer: £22,000 - £40,000 Salary ranges can vary by location and experience. Course Curriculum 2 sections • 11 lectures • 01:02:00 total length •Introduction: 00:02:00 •A Bear who Loves to Stare: 00:04:00 •An Owl with a Bowl: 00:06:00 •A Cat with a Hat: 00:05:00 •A Lion named Brian: 00:05:00 •A Mouse with a House: 00:07:00 •A Goat on a Boat: 00:09:00 •A Fox on the Rocks: 00:06:00 •An Elegant Elephant: 00:08:00 •A Sheep who loves to Sleep: 00:05:00 •A Cow that says Meow: 00:05:00

Drawing Cartoon Animals
Delivered Online On Demand1 hour 2 minutes
£12

Play Therapy Kids can be not able to communicate utilizing words. They do not have the verbal and psychological abilities needed to completely communicate and discuss issues that they face. It turns out to be surprisingly more dreadful if the youngster is experiencing a psychological sickness or confusion. For example, despondency or outrage is intricate. A youngster will be unable to handle the sentiments and related musings, making it hard for them to manage the issues. This is the place where play treatment comes in. It can assist kids with figuring out how to manage mental issues that are causing them trouble. Play permits them to carry on scenes that are like what they might be confronting, work on tending to specific issues or even create characters with comparative feelings or emotions as theirs. It is an involved treatment. Kids can utilize toys to communicate their sentiments. For instance, a youngster who has lost a parent or kin can utilize manikins to depict a character that misses a companion and feels tragic. A dolls' home can include a youngster underneath their bed, stowing away from guardians who are battling, to help a kid that has encountered abusive behavior at home. An advisor can help during play to tackle an issue depending on the kind of approach that is being executed. The advisor can likewise essentially see how the youngster encourages the toy character to beat its feelings.   You Will Learn The meaning of play therapy; what it is and what is involved About the types of play therapy When to use play therapy The tools and approaches that are often used in play therapy How play therapy works The benefits of play therapy The qualities of a good therapist   Video Review about What is Play Therapy Benefits of Taking This Online Course Become familiar with the fundamentals of play treatment Realize what play treatment does Realize when to utilize play treatment and how it functions Know the devices and approaches that the treatment employments Get familiar with the advantages of utilizing the treatment Decide whether you have a specific premium in becoming familiar with play treatment Decide whether you would need to turn into a play advisor Increment the information you have about psychotherapies

Play Therapy
Delivered Online On Demand
£50

Project Management Fundamentals - Français: On-Demand

By IIL Europe Ltd

Project Management Fundamentals - Français Many projects are managed by very efficient and very competent people who have no training in project management.They manage projects as they would manage a process improvement, the deployment of a marketing campaign, the development of a new product, the planning or implementation of an event, or many other 'tasks' referred to as projects.The 'Project Management Fundamentals' course (in English 'Project Management Fundamentals', or 'PMF') is designed to support those people who need a solid foundation of project management knowledge, without being unnecessarily overloaded by learning in addition to the usual work. The course provides a set of practices, concepts and principles that can be brought to the workplace, as well as knowledge to adapt to specific project environments.Nowadays, this relates for example to Agile or iterative methods.Thus, we recently added the key concepts of Agile to allow a basic understanding of how these two methods can possibly coexist. What You Will Learn At the end of this program, you will be able to: Use standard project management terminology. Describe the benefits and importance of strong project management. Identify the character of a successful project by a successful project manager. Recognize how agile/adaptive practices are incorporated into project management. Explore project management processes, starting, planning, executing, monitoring and controlling, and closing. Use project management processes and tools based on case studies and real-world situations. Create a first project plan. Getting Started Basic Concepts people and projects Getting started and defining requirements Use the Project Work Flowchart Manage project risks Estimations Deadlines Execute, communicate and develop the team To master Close the project Summary and Next Steps

Project Management Fundamentals - Français: On-Demand
Delivered Online On Demand12 hours
£850

C To Master Skill: Learn C Programming Technique

By simplivlearning

Step by Step explanation of each topics in C Language with lots of programs.

C To Master Skill: Learn C Programming Technique
Delivered OnlineFlexible Dates
£10

Oracle SQL Advanced

5.0(3)

By Systems & Network Training

Oracle SQL Advanced training course description The Oracle SQL Advanced course is designed to give delegates practical experience in using some of the more advanced features of Oracle SQL. Additional datatypes and the use of advanced SQL functions and expressions are covered together with enhanced table handling features. What will you learn Retrieve data using correlated subqueries, in-line views and multi-column subqueries. Use the WITH Clause. Inserting and Updating Rows Using Complex Subqueries Create Hierarchical Queries. Use ROLLUP, CUBE and GROUPING SETS group by enhancements. Implement the GROUPING and GROUPING_ID functions. Manage large data sets. Insert data conditionally and unconditionally. Merge Rows in a Table. Create TIMESTAMP and INTERVAL Datatypes. Use TIMESTAMP, TIMEZONE and INTERVAL functions and literals. Use regular expressions and implement related functions. Manage objects with the data dictionary. Manage schema objects. Perform flashback operations. Create and using external tables. Control user access to database objects. Oracle SQL Advanced training course details Who will benefit: Anyone who needs to use the more advanced features of SQL to improve their productivity in querying and updating an Oracle database. Prerequisites: Delegates should have attended the Oracle SQL course or have a similar level of experience. Duration 2 days Oracle SQL Advanced training course contents Retrieve data using subqueries ANY, ALL or SOME operators, Correlated subqueries, In-Line views, The Exists operator, The WITH clause, Multi-Column subqueries, Insert and update using a query, Correlated update and delete. Hierarchical queries Hierarchical data, The START WITH and CONNECT BY clauses, The LEVEL pseudo-column, Sequencing the output, Eliminating nodes and branches. Enhanced grouping features Review of basic grouping concepts, The ROLLUP and CUBE extensions, The GROUPING SETS extension, Using the GROUPING and GROUPING_ID functions. Manage large data sets Multi-table Inserts, Conditional and unconditional Inserts, Merging data into a table, Table and view based merge, A sub query based merge. Flashback technology Flashback query, The AS clause, Flashback table, Flashback drop. Date, time and time zone support Date, Timestamp and Interval datatypes, Handling dates and times, Handling intervals, Date, timestamp and interval functions and literals, Related NLS parameters. Regular expression support Regular expression notation, Character matching, Repetition operators, Sub expression grouping, Regular expression functions. Manage objects with the Data Dictionary The Data Dictionary, Useful Data Dictionary tables, Using the Data Dictionary. Manage schema objects Column operations, Constraint operations, Creating and dropping Indexes, B-Tree indexes, Function based indexes, Descending indexes, Creating and using external tables. Access control System privileges and roles, Create users, Alter user details, Grant and revoke object privileges.

Oracle SQL Advanced
Delivered in Internationally or OnlineFlexible Dates
£1,727