SlideShare uma empresa Scribd logo
1 de 99
Baixar para ler offline
1Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Basic MySQL
Troubleshooting for Oracle
DBAs
Sveta Smirnova
Principal Technical Support Engineer

2Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
Program Agenda
 Introduction
 Basic single-client issues
 Concurrency issues
 High availability solutions
 Tools

3Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Introduction
Insert Picture Here

4Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL architecture
Overview
Base
●
Installation layout
●
Log files
Connectors
●
Clients
●
APIs
Optimizer
Caches & buffers
Storage engines
Management

5Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
Typical installation layout

Datadir
●
Schema
●
Table files: *frm, *ibd, *MYD, *MYI, *par, etc.
●

Log files

●

InnoDB shared tablespace

Configurable

6Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Log files

General query log
Slow query log
Binary log
Relay log
Error log
InnoDB logs (and, probably, created by other storage engines)

7Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Connectors

Clients
●
MySQL CLI
●
MySQL Workbench
●
MySQL Enterprise Monitor (MEM)
●
For administrators
APIs
●

Exist for most popular programming languages

●

C, C++, JDBC, PHP, Python, Net, ODBC

8Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Plugins

Plugins
●
Storage engine
●
Full-text parsers
●
Daemon
●
INFORMATION_SCHEMA
●
Semisynchronous Replication
●
Audit
●
Authentication
●
Password-validation

9Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Storage engines

From troubleshooting point of view
●

Own data/index format

●

Own locking model

●

Own diagnostic

●

Own log files

●

CHECK TABLE

10Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Basic single-client issues
Insert Picture Here

11Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege System

No roles by default, limited user limits
All records are in the mysql database (schema)
Pluggable authentication since version 5.5
Connections: TCP/IP with login-password, socket (Unix), named pipe
(Windows)

SELECT user, host FROM mysql.user
SELECT USER(), CURRENT_USER()
SHOW GRANTS
12Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Error handling
Errors vs warnings
mysql> select max (f1) from t1;
ERROR 1630 (42000): FUNCTION test.max does not exist. Check the 
'Function Name Parsing and Resolution' section in the Reference Manual
mysql> select * from t1 where "f1"=1;
Empty set, 1 warning (0.05 sec)
mysql> show warnings;
+­­­­­­­­­­­+­­­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| Level     | Code   | Message                                            |
+­­­­­­­­­­­+­­­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| Warning   | 1292   | Truncated incorrect DOUBLE value: 'f1'             |
+­­­­­­­­­­­+­­­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
1 row in set (0.00 sec)

13Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Error handling
Application (C API)
Error information
●
mysql_errno
●
mysql_error
Warnings
●
mysql_info
●
mysql_sqlstate
●
mysql_warning_count

14Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Error handling
perror
[sveta@delly ~]$ perror 1630
MySQL error code 1630 (ER_FUNC_INEXISTENT_NAME_COLLISION): 
FUNCTION %s does not exist. Check the 'Function Name Parsing and 
Resolution' section in the Reference Manual
[sveta@delly ~]$ perror 1292
MySQL error code 1292 (ER_TRUNCATED_WRONG_VALUE): Truncated 
incorrect %­.32s value: '%­.128s'
[sveta@delly ~]$ perror 2
OS error code   2:  No such file or directory
[sveta@delly ~]$ perror 150
MySQL error code 150: Foreign key constraint is incorrectly 
formed

15Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Error handling
in stored routines
GET DIAGNOSTICS
●
GET DIAGNOSTICS rows = ROW_COUNT, conditions = NUMBER;
●
GET DIAGNOSTICS CONDITION 1  code = RETURNED_SQLSTATE, 
msg = MESSAGE_TEXT;
http://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html

16Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options

Have global and session scope
Can be set
●
In configuration files
●
Command line parameter
●
SET [GLOBAL] var_name = NEW_VAL
●
SHOW [GLOBAL] VARIABLES
Only two built-in levels of write access
●
SUPER for GLOBAL and limited SESSION variables
●
Non-privileged user can change any session option!

17Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options

Allocated at
●
Server startup
●
User connection creation
●
For certain operations
To watch status
●
SHOW [GLOBAL] STATUS
http://dev.mysql.com/doc/refman/5.6/en/mysqld-option-tables.html

18Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
INFORMATION_SCHEMA

Contain metadata information
●
Tables
●
Indexes
●
Other
Allows to create plugins
●
InnoDB plugins
●
We will discuss them later
Oracle analog: Data Dictionary Views

19Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer

EXPLAIN is less powerful if compare with Oracle
●
It is improved in version 5.7.3
●
Graphic EXPLAIN in MySQL Workbench 6.0
●
MySQL’s EXPLAIN Command New Features [HOL9734, passed]
EXPLAIN EXTENDED
INFORMATION_SCHEMA.OPTIMIZER_TRACE
Status variables 'Handler_%'

20Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
EXPLAIN in Oracle
http://docs.oracle.com/cd/B10500_01/server.920/a96533/ex_plan.htm
EXPLAIN PLAN SET statement_id = 'example_plan4' FOR
SELECT h.order_number, l.revenue_amount, l.ordered_quantity
  FROM so_headers_all h, so_lines_all l
 WHERE h.customer_id = :b1
   AND h.date_ordered > SYSDATE­30
   AND l.header_id = h.header_id ;
Plan
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
SELECT STATEMENT
 NESTED LOOPS
  TABLE ACCESS BY INDEX ROWID SO_HEADERS_ALL
   INDEX RANGE SCAN SO_HEADERS_N1
  TABLE ACCESS BY INDEX ROWID SO_LINES_ALL
   INDEX RANGE SCAN SO_LINES_N1

21Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
EXPLAIN in MySQL
mysql> EXPLAIN SELECT user, host FROM userG
*************************** 1. row ***************************
           id: 1
  select_type: SIMPLE
        table: user
         type: index
possible_keys: NULL
          key: PRIMARY
      key_len: 228
          ref: NULL
         rows: 4
        Extra: Using index
1 row in set (0.00 sec)

22Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
EXPLAIN in MySQL

EXPLAIN EXTENDED
●
Follow by SHOW WARNINGS
EXPLAIN PARTITIONS
EXPLAIN FORMAT=JSON

http://www.slideshare.net/SvetaSmirnova/troubleshooting-my-sqlperformanceaddonsen
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getCourseDesc?dc=D79908_1879034

http://dev.mysql.com/doc/refman/5.6/en/explain-output.html

23Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Storage engine specifics

They care about physical data, so all data information are on their level
●
Corruption
●
Index statistics
CHECK TABLE to check for errors

24Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Storage engine specifics
MyISAM
Stores data in files
●
*frm – table definition, common for all storage engines
●
*MYD – data file
●
*MYI – index file
myisamchk
­­myisam_recovery_options to check each time you open a table
●
First access – table is opened
●
Second, third, .. access – existent descriptor used
●
FLUSH TABLES – closes opened descriptors

25Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Storage engine specifics
InnoDB
Transactional storage engine
Physical layout
●
*frm file – table definition
●
Shared tablespace
●
*ibd file – tablespace for individual table
●
Optional: ­­innodb_file_per_table
●

Recommended

Redo log files
OPTIMIZE TABLE = ALTER + ANALYZE
Automatic startup check
●

26Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Concurrency issues
Insert Picture Here

27Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Lock types

MDL locks
Table locks
Row locks
Read locks
●
Block writes
Write locks
●
Block both read and writes

28Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Transactions and Their Relationship With Locks

Server-level
●
MDL locks
Engine level
●
Table locks
●
Row locks
AUTOCOMMIT
●
Supported

29Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Diagnostic Tools

SHOW [FULL] PROCESSLIST
●
Universal tool which lists all currently running connections
SHOW ENGINE INNODB STATUS
INFORMATION SCHEMA
●
PROCESSLIST
●
InnoDB tables
PERFORMANCE SCHEMA
●
MDL locks
Unlocking MySQL: Dealing with Locking in MySQL [CON4038, passed]

30Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
SHOW PROCESSLIST

mysql> show processlist;
+­­­­+­­­­­­­+­­­­­­­­­­­+­­­­­­+­­­­­­­­­+­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+
| Id | User  | Host      | db   | Command | Time | State                        | Info           |
+­­­­+­­­­­­­+­­­­­­­­­­­+­­­­­­+­­­­­­­­­+­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+
| 23 | sveta | localhost | test | Query   |   3  | User sleep                   | select *, 
sleep(20) from tlog        |
| 24 | sveta | localhost | test | Query   |   1  | Waiting for table level lock | update tlog set 
ln=5 where ln=4  |
| 28 | root  | localhost | NULL | Query   |   0  | NULL                         | show processlist 
                        |
+­­­­+­­­­­­­+­­­­­­­­­­­+­­­­­­+­­­­­­­­­+­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+
3 rows in set (0.00 sec)

31Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
INFORMATION_SCHEMA.PROCESSLIST
structure
mysql> DESCRIBE INFORMATION_SCHEMA.PROCESSLIST;
+­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­­+­­­­­­­+­­­­­­+­­­­­­­­­­+­­­­­­­­+
| Field          | Type            | Null   | Key | Default  | Extra  |
+­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­­+­­­­­­­+­­­­­­+­­­­­­­­­­+­­­­­­­­+
| ID             | bigint(4)       | NO    |      | 0        |        |
| USER           | varchar(16)     | NO    |      |          |        |
| HOST           | varchar(64)     | NO    |      |          |        |
| DB             | varchar(64)     | YES   |      | NULL     |        |
| COMMAND        | varchar(16)     | NO    |      |          |        |
| TIME           | int(7)          | NO    |      | 0        |        |
| STATE          | varchar(64)     | YES   |      | NULL     |        |
| INFO           | longtext        | YES   |      | NULL     |        |
+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+­­­­­­­­+­­­­­­+­­­­­­­­­­+­­­­­­­+

32Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
SHOW PROCESSLIST and Transactions

mysql> show processlist;
+­­­­+­­­­­­­+­­­­­­­­­­­+­­­­­­­­­+­­­­­­­­­+­­­­­­­­­­+­­­­­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| Id | User  | Host      | db      | Command | Time     | State    | Info                                |
+­­­­+­­­­­­­+­­­­­­­­­­­+­­­­­­­­­+­­­­­­­­­+­­­­­­­­­­+­­­­­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| 28 | root  | localhost | NULL    | Query   |    0     | NULL     | show processlist                    |
| 31 | sveta | localhost | test    | Query   |    7     | Updating | update tlog set eid=2345 where ln=1 |
| 32 | sveta | localhost | test    | Sleep   |   18     |          | NULL                                |
+­­­­+­­­­­­­+­­­­­­­­­­­+­­­­­­­­­+­­­­­­­­­+­­­­­­­­­­+­­­­­­­­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
3 rows in set (0.00 sec)
Not much info!

33Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

No lock information!
Storage engine specifics

Transactions and engine-level locks are done at the engine level
Storage engines have own diagnostic tools
Use them when hit an issue with such a lock

34Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Storage engine specifics
InnoDB
InnoDB Monitors
●
SHOW ENGINE INNODB STATUS
●
Lock Monitor
INFORMATION_SCHEMA tables
●
INNODB_TRX
●
INNODB_LOCKS
●
INNODB_LOCK_WAITS

35Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Diagnostics: P_S

Monitors internal operations
●
Events
●
Waits
●
Mutexes
●
Statements
●
Stages
Similar to Oracle wait interface
Improving Performance with MySQL Performance Schema [HOL9733, Sunday,
1:00 PM]
Making the Performance Schema Easier to Use [CON5282, Sunday, 10:00 AM]
Performance Schema and ps_helper [CON4077, passed]
36Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MDL Locks

Waiting thread only
SHOW PROCESSLIST, INFORMATION_SCHEMA.PROCESSLIST
●
Waiting for table metadata lock
Performance Schema
●
MUTEX_INSTANCES
●
EVENTS_WAITS_CURRENT
●
THREADS

37Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Performance Schema MDL queries
mysql> SELECT * FROM mutex_instances WHERE 
LOCKED_BY_THREAD_ID 
IS NOT NULLG
*********************** 1. row ***********************
                 NAME: 
wait/synch/mutex/sql/MDL_wait::LOCK_wait_status
OBJECT_INSTANCE_BEGIN: 37104744
  LOCKED_BY_THREAD_ID: 18
1 row in set (0.01 sec)

38Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Performance Schema MDL queries
mysql> SELECT THREAD_ID, EVENT_ID, EVENT_NAME, SOURCE, TIMER_START, 
OBJECT_INSTANCE_BEGIN, OPERATION FROM events_waits_current WHERE 
THREAD_ID IN(SELECT LOCKED_BY_THREAD_ID FROM mutex_instances WHERE 
LOCKED_BY_THREAD_ID IS NOT NULL)G
*************************** 1. row ***************************
            THREAD_ID: 18
             EVENT_ID: 461
           EVENT_NAME: wait/synch/cond/sql/MDL_context::COND_wait_status
               SOURCE: mdl.cc:1210
          TIMER_START: 97623253523306
OBJECT_INSTANCE_BEGIN: 0
            OPERATION: timed_wait
1 row in set (0.00 sec)

39Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
High availability solutions
Insert Picture Here

40Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Cluster

Special storage engine: NDB
Stores data on two or more physical machines
Two or more copies
General troubleshooting techniques
●
Applicable
Specific NDB storage engine techniques

41Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication
Overview
Always available, but you must setup it before use
Asynchronous master-slave
Master
●
Keeps all updates in separate file: binary log
Slave
●
IO thread read updates from master and stores in relay log file
●
SQL thread executes updates

42Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication
Troubleshooting tools
Error log file
Slave
●
SHOW SLAVE STATUS
Master
●
SHOW MASTER STATUS
mysqlbinlog

43Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Tools
Insert Picture Here

44Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
For developers

MySQL Workbench
●
SQL editor
●
Database designer
●
Introduction to MySQL Database Development with MySQL Workbench
[CON3967, Sunday, 5:30 PM]
MySQL Command line client
●
Command-line interface for SQL
●
SELECT, INSERT, UPDATE, DELETE, etc.

45Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
For DBA

MySQL Enterprise Monitor
●
Real-time MySQL performance and availability monitoring
●
Error information
●
Advisors
●
Forcasts

46Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
For DBA

MySQL Workbench
●
Server administration
●
Backups
●
Using the New MySQL Workbench Tools for Performance Tuning
[HOL9786, passed]
MySQL command line client
●
Command-line interface for SQL
●
GRANT, CREATE, OPTIMIZE, etc.
mysqladmin

47Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Command line
  They are not
Set of tools to do various administrative job
Same!
●
MySQL Workbench Utilities
●
http://dev.mysql.com/downloads/tools/utilities/
●

●

Development of Fault-Tolerant Failover Tools with MySQL Utilities
[CON4276, Sunday, 2:30 PM]

Percona Toolkit
●
http://www.percona.com/software/percona-toolkit

48Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Command line

MySQL Sandbox
●
Sandbox for your tests
●
https://launchpad.net/mysql-sandbox
PS_HELPER view
●
www.markleith.co.uk/ps_helper/
●
Performance Schema and ps_helper [CON4077, passed]

49Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
References

MySQL User Reference Manual
●
http://dev.mysql.com/doc/refman/5.6/en/index.html
Knowledge Management Database
Forums
●
http://forums.mysql.com
Bug trackers
●
http://bugs.mysql.com
●
Oracle Internal Bugs database
My Oracle Support
●
https://support.oracle.com

50Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
References

MySQL Troubleshooting book
●
http://shop.oreilly.com/product/0636920021964.do
Marc Alff's Performance Schema blog
●
http://marcalff.blogspot.ru/
Planet MySQL
●
http://planet.mysql.com/
●
http://dev.mysql.com/support/blogs/
●
https://blogs.oracle.com/mysqlinnodb/

51Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
?
Insert Picture Here

52Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
THANK YOU!
https://twitter.com/#!/svetsmirnova
https://blogs.oracle.com/svetasmirnova/

53Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
Graphic Section Divider

54Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
The preceding is intended to outline our general product
direction. It is intended for information purposes only, and may
not be incorporated into any contract.
It is not a commitment to deliver any material, code, or
functionality, and should not be relied upon in making
purchasing decisions. The development, release, and timing
of any features or functionality described for Oracle’s products
remains at the sole discretion of Oracle.

55Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Troubleshooting for
Oracle DBAs
Part II: details
Sveta Smirnova
Principal Technical Support Engineer

56Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
Replication
Insert Picture Here

57Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication IO thread:
communication issues
Access error
●
Check slave error log
●
SHOW SLAVE STATUS
●
Try to connect using normal MySQL client using slave credentials
●
SHOW GRANTS
●
●

Fix privileges on master
Restart slave

58Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication SQL thread:
typical issues
Simple master-slave
●
Data is different on master and slave
●
Replication event can not be applied
Different errors on master and slave
●
Slave lags far behind the master
Circular replication or other writes in addition to slave SQL thread
●
Data is different on master and slave
●

59Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication SQL thread:
Data is different on master and slave
Was the table modified besides the SQL thread?
●
How?
●
Can it affect content of the table in the wrong way?
Are the table definitions same on master and slave?
Is it possible that master events was applied in wrong order?
●
Use mysqlbinlog to find queries which caused the issue
●
Check master's application to find what is wrong

60Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication SQL thread:
Events from master were applied in wrong order
Lock issues
●
InnoDB
Triggers
●
SET GLOBAL slave_skip_counter
●
Synchronize tables!
Different options
●
Start slave with master's options, then check

61Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Replication SQL thread:
Slave lags far behind the master
Threads
●
Master runs in multiple update threads
●
Slave uses single
Seconds_behind_master is growing
Tune slave performance
●
Buffers
●
Indexes (for statement)

62Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
Insert Picture Here

63Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
Handler_% status variables
mysql> flush status;
Query OK, 0 rows affected (0.00 sec)
mysql> SHOW STATUS LIKE 'Handler_%';
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­+
| Variable_name              | Value |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­+
| Handler_commit             | 0     |
| Handler_delete             | 0     |
| Handler_discover           | 0     |
| Handler_prepare            | 0     |
| Handler_read_first         | 0     |
| Handler_read_key           | 0     |
| Handler_read_last          | 0     |
| Handler_read_next          | 0     |
| Handler_read_prev          | 0     |
| Handler_read_rnd           | 0     |

64Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
Handler_% status variables
| Handler_read_rnd_next      | 0     |
| Handler_rollback           | 0     |
| Handler_savepoint          | 0     |
| Handler_savepoint_rollback | 0     |
| Handler_update             | 0     |
| Handler_write              | 0     |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­+
16 rows in set (0.00 sec)
mysql> select count(*) from employees 
join titles using(emp_no) where title='Senior Engineer';
+­­­­­­­­­­+
| count(*) |
+­­­­­­­­­­+
|    97750 |
+­­­­­­­­­­+
1 row in set (3.24 sec)

65Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
Handler_% status variables
mysql> SHOW STATUS LIKE 'Handler_%';
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­+
| Variable_name              | Value  |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­+
| Handler_commit             | 1      |
| Handler_delete             | 0      |
| Handler_discover           | 0      |
| Handler_prepare            | 0      |
| Handler_read_first         | 1      |
| Handler_read_key           | 300027 |
| Handler_read_last          | 0      |
| Handler_read_next          | 397774 |
| Handler_read_prev          | 0      |
| Handler_read_rnd           | 0      |
| Handler_read_rnd_next      | 0      |
...

66Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
INFORMATION_SCHEMA.OPTIMIZER_TRACE
Variables:
●
optimizer_trace=”enabled=on|off,one_line=off|on”
●
optimizer_trace_features=”greedy_search=on,range_optimi
zer=on,dynamic_range=on,repeated_subselect=on”
●
optimizer_trace_limit=1
●
optimizer_trace_max_mem_size=16384
●
optimizer_trace_offset=­1
●
end_markers_in_json=0|1

67Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
INFORMATION_SCHEMA.OPTIMIZER_TRACE
Turn tracing on (it's off by default):
SET optimizer_trace="enabled=on";
SELECT <your query here>; 
SELECT * FROM INFORMATION_SCHEMA.OPTIMIZER_TRACE;
More queries...
When done with tracing, disable it:
SET optimizer_trace="enabled=off";
http://dev.mysql.com/doc/internals/en/optimizer-tracing.html

68Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
INFORMATION_SCHEMA.OPTIMIZER_TRACE
mysql> SELECT * FROM INFORMATION_SCHEMA.OPTIMIZER_TRACEG
*************************** 1. row ***************************
                        QUERY: select emp_no, min(from_date) from titles 
group by emp_no limit 10
                        TRACE: {
  "steps": [
    {
      "join_preparation": {
        "select#": 1,
        "steps": [
          {
            "expanded_query": "/* select#1 */ select `titles`.`emp_no` AS 
`emp_no`,min(`titles`.`from_date`) AS `min(from_date)` from `titles` group 
by `titles`.`emp_no` limit 10"

69Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Optimizer
INFORMATION_SCHEMA.TRACE
join_preparation
join_optimization
●
table_dependencies
●
rows_estimation
●
considered_execution_plans
●
attaching_conditions_to_tables
●
clause_processing
●
refine_plan
●
reconsidering_access_paths_for_index_ordering
join_execution

70Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
Insert Picture Here

71Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
Scope
Global
●
Control parameters, necessary for all server processes
●
Location of server files: datadir etc.
●

Shared buffers

●

More

Session
●
Control connection-specific parameters
http://dev.mysql.com/doc/refman/5.6/en/mysqld-option-tables.html

72Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
How to set
SET [GLOBAL] var_name = NEW_VAL
Command line option
Configuration file
●
In default location
●
Specified by option ­­defaults­file

73Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
Who can change
Global options and few session options
●
A user with privilege SUPER
Session options
●
Anybody
There is no limits!

74Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
When allocated
Those which control behavior of whole server
●
Once at server startup
●
Can start with low values, then grow to specified
Connection options
●
For every connection when connection opens
Operation-specific
●
For every operation when needed

75Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
How to control
SHOW [GLOBAL] STATUS
GLOBAL
●
Since server start
SESSION
●
For operations in current session
●
Can be reset
●
FLUSH STATUS

76Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
Global example
mysql> show global status like 'Handler_read_rnd_next';
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­+
| Variable_name                  | Value      |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­+
| Handler_read_rnd_next          | 3821812    |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­+
1 row in set (0.00 sec)

77Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
Session example
mysql> show status like 'Handler_read_rnd_next';
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­+
| Variable_name                  | Value  |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­+
| Handler_read_rnd_next          | 8      |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­+
1 row in set (0.00 sec)

78Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
Troubleshooting best practices
Record currently used variables
●
SHOW [GLOBAL] VARIABLES
Make change dynamically if possible
●
SET [GLOBAL] var_name=NEW_VAL
Test in one session first
Then change global variable
Change configuration file after you are happy with results

79Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Options
When affecting option is not known
Record currently used variables
●
SHOW [GLOBAL] VARIABLES
Start mysqld with option –no­defaults
●
This option must be first one!
Check if problem is solved
Change variable values one-by-one until you find one which leads to the
problem

80Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
InnoDB Monitors and
Information Schema tables

81Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
SHOW ENGINE INNODB STATUS
­­­­­­­­­­­­
TRANSACTIONS
­­­­­­­­­­­­
Trx id counter 1B1C
Purge done for trx's n:o < 1B19 undo n:o < 0
History list length 189
LIST OF TRANSACTIONS FOR EACH SESSION:
­­­TRANSACTION 0, not started
MySQL thread id 28, OS thread handle 0x7fa9301a0700, query 
id 8653 localhost root
show engine innodb status

82Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
SHOW ENGINE INNODB STATUS
­­­TRANSACTION 1B1B, ACTIVE 6 sec starting index read
mysql tables in use 1, locked 1
LOCK WAIT 2 lock struct(s), heap size 376, 1 row lock(s)
MySQL thread id 31, OS thread handle 0x7fa9301e1700, query id 8652 localhost sveta Updating
update tbllog set `Employee ID`=2345 where `Log Number`=1
­­­­­­­ TRX HAS BEEN WAITING 6 SEC FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 81967 n bits 72 index `PRIMARY` of table `test`.`tlog` 
trx id 1B1B lock_mode X locks rec but not gap waiting
Record lock, heap no 6 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 4; hex 80000001; asc     ;;
 1: len 6; hex 000000001b19; asc       ;;
 2: len 7; hex 14000140340110; asc    @4  ;;
 3: len 4; hex 80003039; asc   09;;
 4: SQL NULL;

83Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
SHOW ENGINE INNODB STATUS

­­­TRANSACTION 1B19, ACTIVE 787 sec
2 lock struct(s), heap size 376, 1 row lock(s), undo log 
entries 1
MySQL thread id 32, OS thread handle 0x7fa930222700, query 
id 8647 localhost sveta
No lock information
For the transaction
Which holds the lock!

84Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
InnoDB Monitors

Pseudo-tables
Turn periodical logging into error log
●
CREATE TABLE innodb_monitor(f1 int) ENGINE=INNODB;
Lock monitor
●
Changes output format of InnoDB Monitor
●
CREATE TABLE innodb_lock_monitor(f1 int) ENGINE=INNODB;

85Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
InnoDB Lock Monitor
­­­TRANSACTION 1B19, ACTIVE 1935 sec
2 lock struct(s), heap size 376, 1 row lock(s), undo log entries 1
MySQL thread id 32, OS thread handle 0x7fa930222700, query id 8647 localhost sveta
TABLE LOCK table `test`.`tlog` trx id 1B19 lock mode IX
RECORD LOCKS space id 0 page no 81967 n bits 72 index `PRIMARY` of table 
`test`.`tlog` trx id 1B19 lock_mode X locks rec but not gap
Record lock, heap no 6 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 4; hex 80000001; asc     ;;
 1: len 6; hex 000000001b19; asc       ;;
 2: len 7; hex 14000140340110; asc    @4  ;;
 3: len 4; hex 80003039; asc   09;;
 4: SQL NULL;

86Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
InnoDB Information Schema tables

INNODB_TRX
INNODB_LOCKS
INNODB_LOCK_WAITS

87Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
InnoDB Information Schema tables

mysql> SELECT * FROM INNODB_LOCK_WAITS;
+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+
|requesting_trx_id|requested_lock_id|blocking_trx_id|blocking_lock_id|
+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+
| 1B1F            | 1B1F:0:81967:6  | 1B19          | 1B19:0:81967:6 |
+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­+­­­­­­­­­­­­­­­­+
1 row in set (0.00 sec)

88Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
InnoDB Information Schema tables

mysql> select trx_mysql_thread_id, trx_id from innodb_trx;
+­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­+
| trx_mysql_thread_id | trx_id   |
+­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­+
|                  31 | 1B1F     |
|                  32 | 1B19     |
+­­­­­­­­­­­­­­­­­­­­­+­­­­­­­­­­+
2 rows in set (0.00 sec)

89Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege
System

90Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
MySQL Access Privilege System
Overview
No roles by default, limited user limits
All records are in the mysql database (schema)
Pluggable authentication since version 5.5
Connections
●

TCP/IP with login-password

●

Socket (Unix)

●

Named pipe (Windows)

91Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege System
How to handle connection issues
SELECT user, host FROM mysql.user
Most descriptive host first, then wildcard
Socket connection by default on Unix

92Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege System
Sort order
mysql> select user, host from mysql.user order by user desc, host 
desc;
+­­­­­­+­­­­­­­­­­­­+
| user | host       |
+­­­­­­+­­­­­­­­­­­­+
| root | localhost  |
| root | delly      |
| root | ::1        |
| root | 127.0.0.1  |
| foo  | %          |
|      | localhost  |
+­­­­­­+­­­­­­­­­­­­+
6 rows in set (0.00 sec)

93Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege System
Wrong access
SHOW GRANTS [FOR user@host]
Grant tables
●

mysql.db

●

mysql.tables_priv

●

mysql.columns_priv

●

mysql.procs_priv

●

mysql.proxies_priv

SELECT USER(), CURRENT_USER() 
94Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege System
Grants
mysql> show grants;
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| Grants for root@localhost                                                |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION      |
| GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION             |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
2 rows in set (0.02 sec)

95Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Access Privilege System
Grants
mysql> show grants for foo@'%';;
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| Grants for foo@%                                      |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
| GRANT USAGE ON *.* TO 'foo'@'%'                       |
| GRANT ALL PRIVILEGES ON `test`.* TO 'foo'@'%'         |
+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­+
2 rows in set (0.00 sec)

96Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
THANK YOU!
https://twitter.com/#!/svetsmirnova
https://blogs.oracle.com/svetasmirnova/

97Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Insert Picture Here
Graphic Section Divider

98Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
The preceding is intended to outline our general product
direction. It is intended for information purposes only, and may
not be incorporated into any contract.
It is not a commitment to deliver any material, code, or
functionality, and should not be relied upon in making
purchasing decisions. The development, release, and timing
of any features or functionality described for Oracle’s products
remains at the sole discretion of Oracle.

99Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Mais conteúdo relacionado

Mais procurados

Basic MySQL Troubleshooting for Oracle Database Administrators
Basic MySQL Troubleshooting for Oracle Database AdministratorsBasic MySQL Troubleshooting for Oracle Database Administrators
Basic MySQL Troubleshooting for Oracle Database AdministratorsSveta Smirnova
 
New features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in actionNew features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in actionSveta Smirnova
 
Troubleshooting MySQL Performance
Troubleshooting MySQL PerformanceTroubleshooting MySQL Performance
Troubleshooting MySQL PerformanceSveta Smirnova
 
MySQL Performance schema missing_manual_flossuk
MySQL Performance schema missing_manual_flossukMySQL Performance schema missing_manual_flossuk
MySQL Performance schema missing_manual_flossukValeriy Kravchuk
 
Performance Schema for MySQL Troubleshooting
Performance Schema for MySQL TroubleshootingPerformance Schema for MySQL Troubleshooting
Performance Schema for MySQL TroubleshootingSveta Smirnova
 
Moving to the NoSQL side: MySQL JSON functions
 Moving to the NoSQL side: MySQL JSON functions Moving to the NoSQL side: MySQL JSON functions
Moving to the NoSQL side: MySQL JSON functionsSveta Smirnova
 
Basic MySQL Troubleshooting for Oracle DBAs
Basic MySQL Troubleshooting for Oracle DBAsBasic MySQL Troubleshooting for Oracle DBAs
Basic MySQL Troubleshooting for Oracle DBAsSveta Smirnova
 
Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015mushupl
 
Performance schema in_my_sql_5.6_pluk2013
Performance schema in_my_sql_5.6_pluk2013Performance schema in_my_sql_5.6_pluk2013
Performance schema in_my_sql_5.6_pluk2013Valeriy Kravchuk
 
MySQL Query tuning 101
MySQL Query tuning 101MySQL Query tuning 101
MySQL Query tuning 101Sveta Smirnova
 
MySQL Performance Schema in Action
MySQL Performance Schema in ActionMySQL Performance Schema in Action
MySQL Performance Schema in ActionSveta Smirnova
 
Mysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50minsMysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50minsValeriy Kravchuk
 
MySQL's Performance Schema, SYS Schema and Workbench Integration
MySQL's Performance Schema, SYS Schema and Workbench IntegrationMySQL's Performance Schema, SYS Schema and Workbench Integration
MySQL's Performance Schema, SYS Schema and Workbench IntegrationMario Beck
 
Preparse Query Rewrite Plugins
Preparse Query Rewrite PluginsPreparse Query Rewrite Plugins
Preparse Query Rewrite PluginsSveta Smirnova
 
Performance schema and sys schema
Performance schema and sys schemaPerformance schema and sys schema
Performance schema and sys schemaMark Leith
 
MySQL sys schema deep dive
MySQL sys schema deep diveMySQL sys schema deep dive
MySQL sys schema deep diveMark Leith
 
In Search of Plan Stability - Part 1
In Search of Plan Stability - Part 1In Search of Plan Stability - Part 1
In Search of Plan Stability - Part 1Enkitec
 
Mini Session - Using GDB for Profiling
Mini Session - Using GDB for ProfilingMini Session - Using GDB for Profiling
Mini Session - Using GDB for ProfilingEnkitec
 
New features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in actionNew features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in actionSveta Smirnova
 
MySQL Monitoring Mechanisms
MySQL Monitoring MechanismsMySQL Monitoring Mechanisms
MySQL Monitoring MechanismsMark Leith
 

Mais procurados (20)

Basic MySQL Troubleshooting for Oracle Database Administrators
Basic MySQL Troubleshooting for Oracle Database AdministratorsBasic MySQL Troubleshooting for Oracle Database Administrators
Basic MySQL Troubleshooting for Oracle Database Administrators
 
New features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in actionNew features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in action
 
Troubleshooting MySQL Performance
Troubleshooting MySQL PerformanceTroubleshooting MySQL Performance
Troubleshooting MySQL Performance
 
MySQL Performance schema missing_manual_flossuk
MySQL Performance schema missing_manual_flossukMySQL Performance schema missing_manual_flossuk
MySQL Performance schema missing_manual_flossuk
 
Performance Schema for MySQL Troubleshooting
Performance Schema for MySQL TroubleshootingPerformance Schema for MySQL Troubleshooting
Performance Schema for MySQL Troubleshooting
 
Moving to the NoSQL side: MySQL JSON functions
 Moving to the NoSQL side: MySQL JSON functions Moving to the NoSQL side: MySQL JSON functions
Moving to the NoSQL side: MySQL JSON functions
 
Basic MySQL Troubleshooting for Oracle DBAs
Basic MySQL Troubleshooting for Oracle DBAsBasic MySQL Troubleshooting for Oracle DBAs
Basic MySQL Troubleshooting for Oracle DBAs
 
Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015
 
Performance schema in_my_sql_5.6_pluk2013
Performance schema in_my_sql_5.6_pluk2013Performance schema in_my_sql_5.6_pluk2013
Performance schema in_my_sql_5.6_pluk2013
 
MySQL Query tuning 101
MySQL Query tuning 101MySQL Query tuning 101
MySQL Query tuning 101
 
MySQL Performance Schema in Action
MySQL Performance Schema in ActionMySQL Performance Schema in Action
MySQL Performance Schema in Action
 
Mysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50minsMysql 56-experiences-bugs-solutions-50mins
Mysql 56-experiences-bugs-solutions-50mins
 
MySQL's Performance Schema, SYS Schema and Workbench Integration
MySQL's Performance Schema, SYS Schema and Workbench IntegrationMySQL's Performance Schema, SYS Schema and Workbench Integration
MySQL's Performance Schema, SYS Schema and Workbench Integration
 
Preparse Query Rewrite Plugins
Preparse Query Rewrite PluginsPreparse Query Rewrite Plugins
Preparse Query Rewrite Plugins
 
Performance schema and sys schema
Performance schema and sys schemaPerformance schema and sys schema
Performance schema and sys schema
 
MySQL sys schema deep dive
MySQL sys schema deep diveMySQL sys schema deep dive
MySQL sys schema deep dive
 
In Search of Plan Stability - Part 1
In Search of Plan Stability - Part 1In Search of Plan Stability - Part 1
In Search of Plan Stability - Part 1
 
Mini Session - Using GDB for Profiling
Mini Session - Using GDB for ProfilingMini Session - Using GDB for Profiling
Mini Session - Using GDB for Profiling
 
New features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in actionNew features in Performance Schema 5.7 in action
New features in Performance Schema 5.7 in action
 
MySQL Monitoring Mechanisms
MySQL Monitoring MechanismsMySQL Monitoring Mechanisms
MySQL Monitoring Mechanisms
 

Semelhante a Basic MySQL Troubleshooting for Oracle DBAs

Applying profilers to my sql (fosdem 2017)
Applying profilers to my sql (fosdem 2017)Applying profilers to my sql (fosdem 2017)
Applying profilers to my sql (fosdem 2017)Valeriy Kravchuk
 
MySQL Administration and Monitoring
MySQL Administration and MonitoringMySQL Administration and Monitoring
MySQL Administration and MonitoringMark Leith
 
Performance schema and_ps_helper
Performance schema and_ps_helperPerformance schema and_ps_helper
Performance schema and_ps_helperMark Leith
 
MySQL para Desenvolvedores de Games
MySQL para Desenvolvedores de GamesMySQL para Desenvolvedores de Games
MySQL para Desenvolvedores de GamesMySQL Brasil
 
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best PracticesOracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best PracticesSven Sandberg
 
Get the most out of Oracle Data Guard - POUG version
Get the most out of Oracle Data Guard - POUG versionGet the most out of Oracle Data Guard - POUG version
Get the most out of Oracle Data Guard - POUG versionLudovico Caldara
 
MySQL for Oracle DBAs
MySQL for Oracle DBAsMySQL for Oracle DBAs
MySQL for Oracle DBAsFromDual GmbH
 
Oracle Solaris 11.1 New Features
Oracle Solaris 11.1 New FeaturesOracle Solaris 11.1 New Features
Oracle Solaris 11.1 New FeaturesOrgad Kimchi
 
OSI_MySQL_Performance Schema
OSI_MySQL_Performance SchemaOSI_MySQL_Performance Schema
OSI_MySQL_Performance SchemaMayank Prasad
 
MySQL Performance Schema : fossasia
MySQL Performance Schema : fossasiaMySQL Performance Schema : fossasia
MySQL Performance Schema : fossasiaMayank Prasad
 
MySQL Enterprise Monitor
MySQL Enterprise MonitorMySQL Enterprise Monitor
MySQL Enterprise MonitorMark Swarbrick
 
MySQL-Performance Schema- What's new in MySQL-5.7 DMRs
MySQL-Performance Schema- What's new in MySQL-5.7 DMRsMySQL-Performance Schema- What's new in MySQL-5.7 DMRs
MySQL-Performance Schema- What's new in MySQL-5.7 DMRsMayank Prasad
 
Oracle 11g: Learning to Love the ADR
Oracle 11g: Learning to Love the ADROracle 11g: Learning to Love the ADR
Oracle 11g: Learning to Love the ADRDon Seiler
 
Meetup my sql5.6_cluster
Meetup my sql5.6_clusterMeetup my sql5.6_cluster
Meetup my sql5.6_clusterLee Stigile
 
Get the most out of Oracle Data Guard - OOW version
Get the most out of Oracle Data Guard - OOW versionGet the most out of Oracle Data Guard - OOW version
Get the most out of Oracle Data Guard - OOW versionLudovico Caldara
 
PERFORMANCE_SCHEMA and sys schema
PERFORMANCE_SCHEMA and sys schemaPERFORMANCE_SCHEMA and sys schema
PERFORMANCE_SCHEMA and sys schemaFromDual GmbH
 
Instrumenting plugins for Performance Schema
Instrumenting plugins for Performance SchemaInstrumenting plugins for Performance Schema
Instrumenting plugins for Performance SchemaMark Leith
 
Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7Morgan Tocker
 

Semelhante a Basic MySQL Troubleshooting for Oracle DBAs (20)

Applying profilers to my sql (fosdem 2017)
Applying profilers to my sql (fosdem 2017)Applying profilers to my sql (fosdem 2017)
Applying profilers to my sql (fosdem 2017)
 
MySQL Administration and Monitoring
MySQL Administration and MonitoringMySQL Administration and Monitoring
MySQL Administration and Monitoring
 
MySQL JSON Functions
MySQL JSON FunctionsMySQL JSON Functions
MySQL JSON Functions
 
Performance schema and_ps_helper
Performance schema and_ps_helperPerformance schema and_ps_helper
Performance schema and_ps_helper
 
MySQL para Desenvolvedores de Games
MySQL para Desenvolvedores de GamesMySQL para Desenvolvedores de Games
MySQL para Desenvolvedores de Games
 
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best PracticesOracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
Oracle OpenWorld 2013 - HOL9737 MySQL Replication Best Practices
 
Get the most out of Oracle Data Guard - POUG version
Get the most out of Oracle Data Guard - POUG versionGet the most out of Oracle Data Guard - POUG version
Get the most out of Oracle Data Guard - POUG version
 
MySQL for Oracle DBAs
MySQL for Oracle DBAsMySQL for Oracle DBAs
MySQL for Oracle DBAs
 
Oracle Solaris 11.1 New Features
Oracle Solaris 11.1 New FeaturesOracle Solaris 11.1 New Features
Oracle Solaris 11.1 New Features
 
OSI_MySQL_Performance Schema
OSI_MySQL_Performance SchemaOSI_MySQL_Performance Schema
OSI_MySQL_Performance Schema
 
MySQL Performance Schema : fossasia
MySQL Performance Schema : fossasiaMySQL Performance Schema : fossasia
MySQL Performance Schema : fossasia
 
MySQL Enterprise Monitor
MySQL Enterprise MonitorMySQL Enterprise Monitor
MySQL Enterprise Monitor
 
MySQL-Performance Schema- What's new in MySQL-5.7 DMRs
MySQL-Performance Schema- What's new in MySQL-5.7 DMRsMySQL-Performance Schema- What's new in MySQL-5.7 DMRs
MySQL-Performance Schema- What's new in MySQL-5.7 DMRs
 
Oracle 11g: Learning to Love the ADR
Oracle 11g: Learning to Love the ADROracle 11g: Learning to Love the ADR
Oracle 11g: Learning to Love the ADR
 
Meetup my sql5.6_cluster
Meetup my sql5.6_clusterMeetup my sql5.6_cluster
Meetup my sql5.6_cluster
 
Con4445 jesus
Con4445 jesusCon4445 jesus
Con4445 jesus
 
Get the most out of Oracle Data Guard - OOW version
Get the most out of Oracle Data Guard - OOW versionGet the most out of Oracle Data Guard - OOW version
Get the most out of Oracle Data Guard - OOW version
 
PERFORMANCE_SCHEMA and sys schema
PERFORMANCE_SCHEMA and sys schemaPERFORMANCE_SCHEMA and sys schema
PERFORMANCE_SCHEMA and sys schema
 
Instrumenting plugins for Performance Schema
Instrumenting plugins for Performance SchemaInstrumenting plugins for Performance Schema
Instrumenting plugins for Performance Schema
 
Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7
 

Mais de Sveta Smirnova

MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?
MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?
MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?Sveta Smirnova
 
Database in Kubernetes: Diagnostics and Monitoring
Database in Kubernetes: Diagnostics and MonitoringDatabase in Kubernetes: Diagnostics and Monitoring
Database in Kubernetes: Diagnostics and MonitoringSveta Smirnova
 
MySQL Database Monitoring: Must, Good and Nice to Have
MySQL Database Monitoring: Must, Good and Nice to HaveMySQL Database Monitoring: Must, Good and Nice to Have
MySQL Database Monitoring: Must, Good and Nice to HaveSveta Smirnova
 
MySQL Cookbook: Recipes for Developers
MySQL Cookbook: Recipes for DevelopersMySQL Cookbook: Recipes for Developers
MySQL Cookbook: Recipes for DevelopersSveta Smirnova
 
MySQL Performance for DevOps
MySQL Performance for DevOpsMySQL Performance for DevOps
MySQL Performance for DevOpsSveta Smirnova
 
MySQL Test Framework для поддержки клиентов и верификации багов
MySQL Test Framework для поддержки клиентов и верификации баговMySQL Test Framework для поддержки клиентов и верификации багов
MySQL Test Framework для поддержки клиентов и верификации баговSveta Smirnova
 
MySQL Cookbook: Recipes for Your Business
MySQL Cookbook: Recipes for Your BusinessMySQL Cookbook: Recipes for Your Business
MySQL Cookbook: Recipes for Your BusinessSveta Smirnova
 
Introduction into MySQL Query Tuning for Dev[Op]s
Introduction into MySQL Query Tuning for Dev[Op]sIntroduction into MySQL Query Tuning for Dev[Op]s
Introduction into MySQL Query Tuning for Dev[Op]sSveta Smirnova
 
Производительность MySQL для DevOps
 Производительность MySQL для DevOps Производительность MySQL для DevOps
Производительность MySQL для DevOpsSveta Smirnova
 
MySQL Performance for DevOps
MySQL Performance for DevOpsMySQL Performance for DevOps
MySQL Performance for DevOpsSveta Smirnova
 
How to Avoid Pitfalls in Schema Upgrade with Percona XtraDB Cluster
How to Avoid Pitfalls in Schema Upgrade with Percona XtraDB ClusterHow to Avoid Pitfalls in Schema Upgrade with Percona XtraDB Cluster
How to Avoid Pitfalls in Schema Upgrade with Percona XtraDB ClusterSveta Smirnova
 
How to migrate from MySQL to MariaDB without tears
How to migrate from MySQL to MariaDB without tearsHow to migrate from MySQL to MariaDB without tears
How to migrate from MySQL to MariaDB without tearsSveta Smirnova
 
Modern solutions for modern database load: improvements in the latest MariaDB...
Modern solutions for modern database load: improvements in the latest MariaDB...Modern solutions for modern database load: improvements in the latest MariaDB...
Modern solutions for modern database load: improvements in the latest MariaDB...Sveta Smirnova
 
How Safe is Asynchronous Master-Master Setup?
How Safe is Asynchronous Master-Master Setup?How Safe is Asynchronous Master-Master Setup?
How Safe is Asynchronous Master-Master Setup?Sveta Smirnova
 
Современному хайлоду - современные решения: MySQL 8.0 и улучшения Percona
Современному хайлоду - современные решения: MySQL 8.0 и улучшения PerconaСовременному хайлоду - современные решения: MySQL 8.0 и улучшения Percona
Современному хайлоду - современные решения: MySQL 8.0 и улучшения PerconaSveta Smirnova
 
How to Avoid Pitfalls in Schema Upgrade with Galera
How to Avoid Pitfalls in Schema Upgrade with GaleraHow to Avoid Pitfalls in Schema Upgrade with Galera
How to Avoid Pitfalls in Schema Upgrade with GaleraSveta Smirnova
 
How Safe is Asynchronous Master-Master Setup?
 How Safe is Asynchronous Master-Master Setup? How Safe is Asynchronous Master-Master Setup?
How Safe is Asynchronous Master-Master Setup?Sveta Smirnova
 
Introduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]sIntroduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]sSveta Smirnova
 
Billion Goods in Few Categories: How Histograms Save a Life?
Billion Goods in Few Categories: How Histograms Save a Life?Billion Goods in Few Categories: How Histograms Save a Life?
Billion Goods in Few Categories: How Histograms Save a Life?Sveta Smirnova
 
A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...
A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...
A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...Sveta Smirnova
 

Mais de Sveta Smirnova (20)

MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?
MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?
MySQL 2024: Зачем переходить на MySQL 8, если в 5.х всё устраивает?
 
Database in Kubernetes: Diagnostics and Monitoring
Database in Kubernetes: Diagnostics and MonitoringDatabase in Kubernetes: Diagnostics and Monitoring
Database in Kubernetes: Diagnostics and Monitoring
 
MySQL Database Monitoring: Must, Good and Nice to Have
MySQL Database Monitoring: Must, Good and Nice to HaveMySQL Database Monitoring: Must, Good and Nice to Have
MySQL Database Monitoring: Must, Good and Nice to Have
 
MySQL Cookbook: Recipes for Developers
MySQL Cookbook: Recipes for DevelopersMySQL Cookbook: Recipes for Developers
MySQL Cookbook: Recipes for Developers
 
MySQL Performance for DevOps
MySQL Performance for DevOpsMySQL Performance for DevOps
MySQL Performance for DevOps
 
MySQL Test Framework для поддержки клиентов и верификации багов
MySQL Test Framework для поддержки клиентов и верификации баговMySQL Test Framework для поддержки клиентов и верификации багов
MySQL Test Framework для поддержки клиентов и верификации багов
 
MySQL Cookbook: Recipes for Your Business
MySQL Cookbook: Recipes for Your BusinessMySQL Cookbook: Recipes for Your Business
MySQL Cookbook: Recipes for Your Business
 
Introduction into MySQL Query Tuning for Dev[Op]s
Introduction into MySQL Query Tuning for Dev[Op]sIntroduction into MySQL Query Tuning for Dev[Op]s
Introduction into MySQL Query Tuning for Dev[Op]s
 
Производительность MySQL для DevOps
 Производительность MySQL для DevOps Производительность MySQL для DevOps
Производительность MySQL для DevOps
 
MySQL Performance for DevOps
MySQL Performance for DevOpsMySQL Performance for DevOps
MySQL Performance for DevOps
 
How to Avoid Pitfalls in Schema Upgrade with Percona XtraDB Cluster
How to Avoid Pitfalls in Schema Upgrade with Percona XtraDB ClusterHow to Avoid Pitfalls in Schema Upgrade with Percona XtraDB Cluster
How to Avoid Pitfalls in Schema Upgrade with Percona XtraDB Cluster
 
How to migrate from MySQL to MariaDB without tears
How to migrate from MySQL to MariaDB without tearsHow to migrate from MySQL to MariaDB without tears
How to migrate from MySQL to MariaDB without tears
 
Modern solutions for modern database load: improvements in the latest MariaDB...
Modern solutions for modern database load: improvements in the latest MariaDB...Modern solutions for modern database load: improvements in the latest MariaDB...
Modern solutions for modern database load: improvements in the latest MariaDB...
 
How Safe is Asynchronous Master-Master Setup?
How Safe is Asynchronous Master-Master Setup?How Safe is Asynchronous Master-Master Setup?
How Safe is Asynchronous Master-Master Setup?
 
Современному хайлоду - современные решения: MySQL 8.0 и улучшения Percona
Современному хайлоду - современные решения: MySQL 8.0 и улучшения PerconaСовременному хайлоду - современные решения: MySQL 8.0 и улучшения Percona
Современному хайлоду - современные решения: MySQL 8.0 и улучшения Percona
 
How to Avoid Pitfalls in Schema Upgrade with Galera
How to Avoid Pitfalls in Schema Upgrade with GaleraHow to Avoid Pitfalls in Schema Upgrade with Galera
How to Avoid Pitfalls in Schema Upgrade with Galera
 
How Safe is Asynchronous Master-Master Setup?
 How Safe is Asynchronous Master-Master Setup? How Safe is Asynchronous Master-Master Setup?
How Safe is Asynchronous Master-Master Setup?
 
Introduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]sIntroduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]s
 
Billion Goods in Few Categories: How Histograms Save a Life?
Billion Goods in Few Categories: How Histograms Save a Life?Billion Goods in Few Categories: How Histograms Save a Life?
Billion Goods in Few Categories: How Histograms Save a Life?
 
A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...
A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...
A Billion Goods in a Few Categories: When Optimizer Histograms Help and When ...
 

Último

Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 

Último (20)

Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 

Basic MySQL Troubleshooting for Oracle DBAs