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

13 MySQL courses in London

UNIX system administration

5.0(3)

By Systems & Network Training

UNIX system administration training course description This five day hands on course provides a comprehensive coverage of core UNIX administration tasks. The course covers generic UNIX and is available for any UNIX distribution required. What will you learn Administer & configure UNIX systems. Maintain UNIX by handling disk space and taking regular backups. Manage software packages. Perform basic troubleshooting. Maintain a secure UNIX system. Describe the organisation and implementation of the filesystem. UNIX system administration training course details Who will benefit: System administrators Network administrators. Prerequisites: UNIX fundamentals. Duration 5 days UNIX system administration training course contents Part 1 Exploring UNIX command-line tools Using a shell, shell configuration, environment variables, getting help, streams, redirection and pipes, processing text using filters, manipulating files, regular expressions, grep, sed. Managing software Package concepts, comparison of package formats, RPM, rpm commands, yum, dpkg, apt-cache, apt-get, dselect, aptitude, converting between package formats, dependencies and conflicts, startup script problems, shared libraries, library management, managing processes, the kernel: the first process, process lists, foreground & background processes, process priorities, killing processes. Configuring hardware Configuring firmware and hardware, RQs, I/O addresses, DMA addresses, Boot disks, coldplug and hotplug devices, configuring expansion cards and PCI cards, kernel modules, USB devices, UNIX USB crivers, configuring hard disks, partitioning systems, LVM, common layouts, creating partitions and filesystems, maintaining filesystem health, tuning, journals, checking filesystems, monitoring disk use, mounting and unmounting filesystems. Managing files File management commands, file naming and wildcards, file archiving, links, directory commands, file ownership and group, file access control, permissions, chmod, defaults, file attributes, disk quotas, enabling and setting quotas, locating files, the FHS. Booting UNIX and editing files Installing boot loaders, GRUB legacy, GRUB 2, alternative boot loaders, the boot process, boot messages, runlevels and the initialization process, runlevel functions, runlevel services, alternative boot systems, upstart, system. Part 2 Configuring the X window system Localization, configuring basic X features, X server options, methods of configuring X, X display information, X fonts, the X GUI login system, XDMCP server, using X for remote access, screen display settings, setting your time zone, your locale, configuring printing, conceptualizing the UNIX printing architecture, understanding PostScript and ghostscript, running a printing system, configuring CUPS, monitoring and controlling the print queue. Administering the system Managing users and groups, tuning user and system environments, using system log files, understanding syslogd, setting logging options, manually logging data, rotating l;og files, reviewing log file contents, maintaining the system time, UNIX time concepts, manually setting the time, using NTP, running jobs in the future, understanding the role of cron, creating system cron jobs, creating user cron jobs, using anacron, using at. Configuring basic networking TCP/IP, network hardware, network addresses, hostnames, network ports, configuring UNIX for a local network, configuring with DHCP, static IP address, configuring routing, using GUI configuration tools, ifup and ifdown, diagnosing network connections, testing connectivity, tracing a route, checking network status , examining network traffic, additional tools. Writing scripts, configuring email, and using databases The shell environment, aliases, shell configuration files, writing scripts, commands, variables, conditional expressions, loops, functions, managing email, choosing email software, securing your email server, managing data with SQL, picking a SQL package, understanding SQL basics, using MySQL. Securing your system Administering network security, super server restrictions, disabling unused servers, administering local security, securing passwords, limiting root access, setting login, process, SUID/SGID files, configuring SSH, using GPG, generating, importing and revoking keys, encrypting and decrypting data, signing messages and verifying signatures.

UNIX system administration
Delivered in Internationally or OnlineFlexible Dates
£2,797

Regular expressions for engineers

5.0(3)

By Systems & Network Training

Regular expressions training course description Regular expressions are an extremely powerful tool for manipulating text and data. They are now standard features in a wide range of languages and popular tools, including Python and MySQL. Regular expressions allow you to code complex and subtle text processing that you never imagined could be automated. Once you've mastered regular expressions, they'll become an invaluable part of your toolkit. You will wonder how you ever got by without them. What will you learn Use Regular Expressions. Troubleshoot Regular Expressions. Compare RE features among different versions. Explain how the regular expression engine works. Optimize REs. Match what you want, not what you don't want. Regular expressions training course details Who will benefit: Anyone looking to use regular expressions. Prerequisites: None. Duration 1 day Regular expressions training course contents Introduction to Regular Expressions Solving real problems, REs as a language, the filename analogy, language analogy, RE frame of mind, searching text files: egrep, egrep metacharacters, start and end of the line, character classes, matching any character with dot, alternation, ignoring differences in capitalization, word boundaries, optional items, other quantifiers: repetition, parentheses and backreferences, the great escape, expanding the foundation, linguistic diversification, the goal of a RE, more examples, RE nomenclature, Improving on the status quo. Extended introductory examples A short introduction to Perl, matching text with regular expressions, toward a more real-world example, side effects of a successful match, Intertwined regular expression, intermission, modifying text with regular expressions, example: form letter, example: prettifying a stock price, automated editing, a small mail utility, adding commas to a number with lookaround, text-to-HTML conversion, that doubled-word thing. Regular expression features and flavours The regex landscape, origins of REs, care and handling of REs, Integrated handling, procedural and object-oriented handling, search-and-replace example. strings character encodings and modes, strings as REs, character-encoding issues, unicode, regex modes and match modes, common metacharacters and features, character representations, character classes and class-like constructs, anchors and other 'zero-width assertions', comments and mode modifiers, grouping capturing conditionals and control. The mechanics of expression processing Two kinds of engines, new standards, regex engine types, from the department of redundancy department, testing the engine type, match basics, about the examples, rule 1: the match that begins earliest wins, engine pieces and parts, rule 2: the standard quantifiers are greedy, regex-directed versus text-directed, NFA engine: regex-directed, DFA engine: text-directed, first thoughts: NFA and DFA in comparison, backtracking, two important points on backtracking, saved states, backtracking and greediness, more about greediness and backtracking, problems of greediness, multi-character 'quotes', lazy quantifiers, greediness and laziness, laziness and backtracking, possessive quantifiers and atomic grouping, possessive quantifiers ?, +, *+, ++ and {m,n}+, the backtracking of lookaround, is alternation greedy? taking advantage of ordered alternation, NFA DFA and posix, the longest-leftmost', posix and the longest-leftmost rule, speed and efficiency. Practical regex techniques Continuation lines, matching an IP address, working with filenames, matching balanced sets of parentheses, watching out for unwanted matches, matching delimited text, knowing your data and making assumptions, stripping leading and trailing whitespace, matching and HTML tag, matching an HTML link, examining an HTTP URL, validating a hostname, plucking a hostname, plucking a URL, parsing CSV files. Crafting an efficient expression Efficiency vs. correctness, localizing greediness, global view of backtracking, more work for POSIX NFA, work required during a non-match, being more specific, alternation can be expensive, benchmarking, know what you re measuring, benchmarking with Python, common optimisations, the mechanics of regex application, pre-application optimizations, optimizations with the transmission, optimization of the regex itself, techniques for faster expressions, common sense techniques, expose literal text, expose anchors, lazy versus greedy: be specific, split into multiple REs, mimic initial-character discrimination, use atomic grouping and possessive quantifiers, lead the engine to a match, unrolling the loop, observations, using atomic grouping and possessive quantifiers, short unrolling examples, unrolling C comments, the free flowing regex, a helping hand to guide the match, a well-guided regex is a fast regex.

Regular expressions for engineers
Delivered in Internationally or OnlineFlexible Dates
£967

Android Studio Course, 1 Day

4.6(12)

By PCWorkshops

A thorough Introduction to Android Studio, packed with essential and interesting features of this package to help you create Android Apps. Online Instructor-led. Classroom on-request. Practical, Hands-on. From basics to efficient.

Android Studio Course, 1 Day
Delivered Online & In-PersonFlexible Dates
FREE

Online Options

Show all 283

SQL Intermediate Course, 3 Days

4.6(12)

By PCWorkshops

This Practical SQL course, is designed make you fully conversant with queries, DML and DDL statements. Hands-on, Practical SQL course. You will get the PCWorkshops SQL Course Certificate. Max 4 people per course, to keep it personalised.

SQL Intermediate Course, 3 Days
Delivered Online + more
£600

MySQL Course Intermediate, 3 DAYS

4.6(12)

By PCWorkshops

Practical MySQL Course Intermediate, to leave you fully conversant with queries, DML and DDL statements. Hands-on, Practical MySQL Course Intermediate. PCWorkshops MySQL Course Intermediate Certificate. Max 4 people per course, we keep it personalised.

MySQL Course Intermediate, 3 DAYS
Delivered Online
£600

MySQL Database Development Mastery

By Packt

This course will help you to get familiarized with the concepts of MySQL Server and MySQL Workbench needed for database development and management. From basic SQL queries and statements to handling relationships and aggregate functions, you will learn all that you need with the help of real-time activities.

MySQL Database Development Mastery
Delivered Online On Demand4 hours 19 minutes
£37.99

The Complete MySQL Developer Course

By Packt

MySQL: Learn how to use MySQL and PHP to build reports and work with databases for web applications

The Complete MySQL Developer Course
Delivered Online On Demand9 hours 16 minutes
£119.99

SQL Beginner to Guru: MySQL Edition - Master SQL with MySQL

By Packt

Develop your SQL skills, with useful insights into the MySQL syntax, SQL join statements, and more

SQL Beginner to Guru: MySQL Edition - Master SQL with MySQL
Delivered Online On Demand10 hours 52 minutes
£26.99

Using MySQL Databases with Python

By Packt

Explore the quick and easy way to learn the MySQL Database with Python

Using MySQL Databases with Python
Delivered Online On Demand2 hours 2 minutes
£137.99

Basic MySQL Online Course

By Course Cloud

Course Overview Master MySQL by learning all the web development skills for creating complex, high-quality web databases. The Basic MySQL Online Course covers the complete fundamentals of MySQL for relational database management, e-commerce and logging applications. It is designed to equip learners with in-demand industry skills, taking them through the basics such as installation, for those who are new to the field.  This practical training course will explore all the core features of MySQL, as well as best practices for cross platform development, taught by an experienced professional in the field. If you are looking to establish a career in programming or computer science, then this in-depth training will ensure you gain a competitive edge in the job market. This best selling Basic MySQL Online Course has been developed by industry professionals and has already been completed by hundreds of satisfied students. This in-depth Basic MySQL Online Course is suitable for anyone who wants to build their professional skill set and improve their expert knowledge. The Basic MySQL Online Course is CPD-accredited, so you can be confident you're completing a quality training course will boost your CV and enhance your career potential. The Basic MySQL Online Course is made up of several information-packed modules which break down each topic into bite-sized chunks to ensure you understand and retain everything you learn. After successfully completing the Basic MySQL Online Course, you will be awarded a certificate of completion as proof of your new skills. If you are looking to pursue a new career and want to build your professional skills to excel in your chosen field, the certificate of completion from the Basic MySQL Online Course will help you stand out from the crowd. You can also validate your certification on our website. We know that you are busy and that time is precious, so we have designed the Basic MySQL Online Course to be completed at your own pace, whether that's part-time or full-time. Get full course access upon registration and access the course materials from anywhere in the world, at any time, from any internet-enabled device.  Our experienced tutors are here to support you through the entire learning process and answer any queries you may have via email.

Basic MySQL Online Course
Delivered Online On Demand
£319

Complete MySql

By Course Cloud

The comprehensive Complete MySql has been designed by industry experts to provide learners with everything they need to enhance their skills and knowledge in their chosen area of study. Enrol on the Complete MySql today, and learn from the very best the industry has to offer! This best selling Complete MySql has been developed by industry professionals and has already been completed by hundreds of satisfied students. This in-depth Complete MySql is suitable for anyone who wants to build their professional skill set and improve their expert knowledge. The Complete MySql is CPD-accredited, so you can be confident you're completing a quality training course will boost your CV and enhance your career potential. The Complete MySql is made up of several information-packed modules which break down each topic into bite-sized chunks to ensure you understand and retain everything you learn. After successfully completing the Complete MySql, you will be awarded a certificate of completion as proof of your new skills. If you are looking to pursue a new career and want to build your professional skills to excel in your chosen field, the certificate of completion from the Complete MySql will help you stand out from the crowd. You can also validate your certification on our website. We know that you are busy and that time is precious, so we have designed the Complete MySql to be completed at your own pace, whether that's part-time or full-time. Get full course access upon registration and access the course materials from anywhere in the world, at any time, from any internet-enabled device.  Our experienced tutors are here to support you through the entire learning process and answer any queries you may have via email.

Complete MySql
Delivered Online On Demand
£25

PHP & MySQL Web Development & OOP Coding

By Course Cloud

Course Overview Become a PHP & MySQL pro by learning all the web development features for creating websites. The PHP & MySQL Web Development & OOP Coding course covers everything you need to know to master PHP programming and gain valuable industry skills. It will take you through the fundamentals of PHP and MySQL, starting from the very basics for complete beginners.  Through this in-depth training course, you will familiarise with all the features of MySQL, and learn best practices for cross platform development, taught by an expert in the field. If you are looking to kickstart a career in programming or computer science, then this course will equip you with up-to-date skills that will ensure you gain a competitive edge in the job market. This best selling PHP & MySQL Web Development & OOP Coding has been developed by industry professionals and has already been completed by hundreds of satisfied students. This in-depth PHP & MySQL Web Development & OOP Coding is suitable for anyone who wants to build their professional skill set and improve their expert knowledge. The PHP & MySQL Web Development & OOP Coding is CPD-accredited, so you can be confident you're completing a quality training course will boost your CV and enhance your career potential. The PHP & MySQL Web Development & OOP Coding is made up of several information-packed modules which break down each topic into bite-sized chunks to ensure you understand and retain everything you learn. After successfully completing the PHP & MySQL Web Development & OOP Coding, you will be awarded a certificate of completion as proof of your new skills. If you are looking to pursue a new career and want to build your professional skills to excel in your chosen field, the certificate of completion from the PHP & MySQL Web Development & OOP Coding will help you stand out from the crowd. You can also validate your certification on our website. We know that you are busy and that time is precious, so we have designed the PHP & MySQL Web Development & OOP Coding to be completed at your own pace, whether that's part-time or full-time. Get full course access upon registration and access the course materials from anywhere in the world, at any time, from any internet-enabled device.  Our experienced tutors are here to support you through the entire learning process and answer any queries you may have via email.

PHP & MySQL Web Development & OOP Coding
Delivered Online On Demand
£319

MySQL Database Development

By Course Cloud

The comprehensive MySQL Database Development has been designed by industry experts to provide learners with everything they need to enhance their skills and knowledge in their chosen area of study. Enrol on the MySQL Database Development today, and learn from the very best the industry has to offer! This best selling MySQL Database Development has been developed by industry professionals and has already been completed by hundreds of satisfied students. This in-depth MySQL Database Development is suitable for anyone who wants to build their professional skill set and improve their expert knowledge. The MySQL Database Development is CPD-accredited, so you can be confident you're completing a quality training course which will boost your CV and enhance your career potential. The MySQL Database Development is made up of several information-packed modules which break down each topic into bite-sized chunks to ensure you understand and retain everything you learn. After successfully completing the MySQL Database Development, you will be awarded a certificate of completion as proof of your new skills. If you are looking to pursue a new career and want to build your professional skills to excel in your chosen field, the certificate of completion from the MySQL Database Development will help you stand out from the crowd. You can also validate your certification on our website. We know that you are busy and that time is precious, so we have designed the MySQL Database Development to be completed at your own pace, whether that's part-time or full-time. Get full course access upon registration and access the course materials from anywhere in the world, at any time, from any internet-enabled device.  Our experienced tutors are here to support you through the entire learning process and answer any queries you may have via email.

MySQL Database Development
Delivered Online On Demand
£25

Educators matching "MySQL"

Show all 7
Acornford Technical Services

acornford technical services

London

Effective Solutions for Small Business Social Media Shortcuts Useful Links Our Partners Home Oracle MySQL MS SQL Server IBM DB2 StayAhead Contact Us Shopping Cart HomeAbout UsOracle TrainingContact Us Acornford Technical Services Ltd © 2012 | Terms and Conditions Share on FacebookShare on TwitterHead start for IT Professionals As an IT consultancy we offer an experienced DBA resource to compliment your support staff, who can provide complex technical advice or simply add an extra pair of hands during staff shortages during the holiday season, peaks of activity, or special projects for example. We specialize in providing technical training for the database subject mater experts. Most of our courses are in the form of classroom training. We also able to offer courses that are tailored made for you. Our experienced trainers can build a bespoke course and materials to meet your needs. We offer free advise for appropriate licensing, aiming to reduce the cost and maximize return on investment, while retaining legal compliance. Database Administration Technical Training for the Database SME Licensing Rationalization The ‘Container’ database feature of the Oracle 12c Database is generating a fair amount of interest as well as a range of new features in Oracle Grid Infrastructure. The ‘Container’ database with the Multitenant option addresses the data consolidation issues that were difficult to address in the previous versions and not easily solved using the virtualization. The course curriculum covers the general database administration and thorough run through the new features and new behaviours of the Oracle 12c Database engine.

Futuretrend

futuretrend

Enfield

Futuretrend has been providing IT, Design, Financial and Business Skills training since December 2000. With a solid reputation for delivering high quality programmes, Futuretrend has become a successful and well established training centre. Year on year hundreds of learners come to this centre to pursue a course of study that will help them fulfill career aspirations, improve their job prospects or to simply learn more about a particular area of interest. In today's competitive business environment the importance of up-to-date skills cannot be overstated. With Futuretrend, you and/or your team will benefit immensely from our results-oriented training. Our instructors are professionals who work full-time in the industry and bring their working knowledge to the classroom to enhance your learning experience. Our courses are centred on learning by doing, ensuring that learning retention rates are high and that delegates are able to confidently apply their new found skills in the workplace or successfully in an exam situation, demonstrating an immediate return on investment. A prerequisite for any Futuretrend trainer is that they must practise the skills they teach. It is essential that they are able to draw from real world experiences to illustrate subject matter, thereby enabling delegates to envisage how best to use software and concepts effectively. This is based on the following ethos: “Tell me and I’ll forget. Teach me and I’ll remember. Involve me and I’ll learn.” We are often asked how we have made a success from a company which was seemingly produced from nothing but which has now become one of the most dynamic organisations within the industry. The answers are simple; Speed - We have built a good reputation around the fact that we do not keep our clients waiting for answers to their requirements. If we tell you we shall call back the same day then we absolutely mean it. It’s more likely that we will get back to you on the spot. Quality - One attribute is nothing without the other. All Futuretrend's staff and associated freelancers have major industry experience and are amongst the best and highest qualified in their sphere of activity in the UK; and why not? Our reputation depends on them. Personal touch - Whilst maintaining the air and professionalism of a larger company you will always know who you are dealing with when you dial through to our offices. We give our individual time to each of our clients and as such you are guaranteed a friendly and personal reception. These are only three of the numerous reasons as to why so many individuals and organisations in and around the UK are choosing to trust their training to Futuretrend. Our success depends entirely on our client's satisfaction and this is mirrored in our everyday approach to your requests. We don't expect to stay at the forefront of our competitors without maintaining sharp minds and a fresh attitude. Another typical question asked is how can we offer our courses at such low prices ? Here is why; Futuretrend has never taken out costly traditional advertising which would lead to unnecessary expenditure and thus forcing prices up. We have built our success mainly on very good "word of mouth" and relatively inexpensive online marketing. As such we are in the lucky position of being able to do away with the myth that business can only be generated through glossy brochures. Additionally, we are not passing on the premiums charged for West End and City training venues. Most of these will still not be as modern or well-equipped as our newly refurbished classrooms. Our premises are within an Elegant Victorian North London building. You could easily be paying double the amount and more attending a similar course elsewhere and probably not even half the quality. We hope our web site will give you a taste of the quality of study available at Futuretrend and make your decision to study with us a little easier. We all learn best when we are happy and valued so let us help advance your skills and enhance your potential.