4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    ◄Older
    page 1 / 4
    64 results tagged mysql x
    • thumbnail
      PyMySQL · PyPI
      September 25, 2018 at 1:49:37 PM GMT+2 - permalink - archive.org - https://pypi.org/project/PyMySQL/
      mysql python
    • thumbnail
      zzmysqldump/README.md at master · TurboLabIt/zzmysqldump · GitHub
      May 28, 2017 at 8:50:29 AM GMT+2 - permalink - archive.org - https://github.com/TurboLabIt/zzmysqldump/blob/master/README.md
      mysql mysqldump
    • thumbnail
      mycli/README.md at master · dbcli/mycli · GitHub
      May 7, 2017 at 9:40:02 PM GMT+2 - permalink - archive.org - https://github.com/dbcli/mycli/blob/master/README.md
      client mysql
    • MySQL :: MySQL 5.7 Reference Manual :: 5.6.6 mysql_config_editor — MySQL Configuration Utility

      Exactement ce que je cherchais

      You can use the mysql_config_editor utility to store authentication credentials in an encrypted login path file named .mylogin.cnf.

      To create a new set of credentials run:

      mysql_config_editor set --host=db.host.org --user=dbuser --password

      and enter your password when prompted.

      This will store your authentication credentials in the default client login path.

      You can store multiple authentication credentials by specifying a different --login-path option:

      mysql_config_editor set --login-path=db2 --host=db2.host.org --user=dbuser --password

      By default, the mysql client reads the [client] and [mysql] groups from other option files, so it reads them from the login path file as well. With a --login-path option, client programs additionally read the named login path from the login path file. The option groups read from other option files remain the same. Consider this command:

      mysql --login-path=db2

      The mysql client reads [client] and [mysql] from other option files, and [client], [mysql], and [mypath] from the login path file.

      To print out all the information stored in the configuration file run:

      mysql_config_editor print --all=true

      More information about the utility can be found at "mysql_config_editor — MySQL Configuration Utility".

      May 3, 2017 at 2:18:46 PM GMT+2 - permalink - archive.org - https://dev.mysql.com/doc/refman/5.7/en/mysql-config-editor.html
      auth mysql
    • Note: mysql
      # do not use utf8, its not "real utf8"
      CREATE DATABASE `foo` DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;

      # use this :
      # https://mathiasbynens.be/notes/mysql-utf8mb4#utf8-to-utf8mb4
      CREATE DATABASE `foo` DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;


      CREATE USER 'foo'@'%' IDENTIFIED BY "password";

      GRANT ALL ON `foo`.* TO "foo"@"%";




      convert :
      # For each database:
      ALTER DATABASE database_name CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
      # For each table:
      ALTER TABLE table_name CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
      # For each column:
      ALTER TABLE table_name CHANGE column_name column_name VARCHAR(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
      # (Don’t blindly copy-paste this! The exact statement depends on the column type, maximum length, and other properties. The above line is just an example for a `VARCHAR` column.)
      May 3, 2017 at 2:09:48 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/?kmGPew
      memo mysql
    • thumbnail
      wildcard - Grant permissions to a set of databases matching a pattern in MysQL 5.0 - Stack Overflow

      Use ` instead of ' in the database name, and escape the _

      GRANT ALL PRIVILEGES ON xian\_%.* TO xian@'192.168.1.%';

      December 14, 2016 at 10:03:40 AM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/2469119/grant-permissions-to-a-set-of-databases-matching-a-pattern-in-mysql-5-0
      mysql
    • Note: mysqldump

      Options interessantes : --quick --single-transaction

      October 10, 2016 at 3:41:44 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?AwRWHg
      mysql rtfm
    • Aurora on Amazon RDS - Amazon Relational Database Service

      Pour un cluster Aurora donné, 3 endpoints :

      • cluster endpoint : pointe toujours sur le master
      • reader endpoint : pointe toujours sur un slave
      • instance endpoint : permet de pointer spécifiquement une instance donnée. Ne garantit pas que cette instance restera un slave ou un master.

      You can determine which DB instance in an Aurora DB cluster that a connection is connected to by checking the innodb_read_only global variable, as shown in the following example.
      SHOW GLOBAL VARIABLES LIKE 'innodb_read_only';
      The innodb_read_only variable will be set to ON if you are connected to an Aurora Replica and OFF if you are connected to the primary instance.

      October 3, 2016 at 4:01:46 PM GMT+2 - permalink - archive.org - http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Aurora.html
      aurora aws mysql
    • gh-ost: GitHub’s online schema migration tool for MySQL - GitHub Engineering
      August 2, 2016 at 2:31:04 PM GMT+2 - permalink - archive.org - http://githubengineering.com/gh-ost-github-s-online-migration-tool-for-mysql/
      db github migration mysql
    • thumbnail
      MySQL Back-up: Take a mysqldump with each database in its own SQL File

      mysql -N -e 'show databases' | while read dbname; do mysqldump --complete-insert --routines --triggers --single-transaction "$dbname" > "$dbname".sql; done

      todo : regarder les options

      June 19, 2016 at 7:55:23 PM GMT+2 - permalink - archive.org - https://ma.ttias.be/mysql-back-up-take-a-mysqldump-with-each-database-in-its-own-sql-file/
      backup dump mysql
    • MySQL :: MySQL 5.7 Reference Manual :: 13.4.1.3 SET sql_log_bin Syntax

      To disable bin log for the current session

      January 18, 2016 at 4:51:45 PM GMT+1 - permalink - archive.org - http://dev.mysql.com/doc/refman/5.7/en/set-sql-log-bin.html
      bin log mysql
    • thumbnail
      10 MySQL settings to tune after installation
      December 19, 2015 at 12:44:40 PM GMT+1 - permalink - archive.org - https://www.percona.com/blog/2014/01/28/10-mysql-settings-to-tune-after-installation/
      mysql percona production
    • thumbnail
      MySQL's INNODB_METRICS: How much is the overhead?
      December 16, 2015 at 11:23:37 AM GMT+1 - permalink - archive.org - https://www.percona.com/blog/2014/11/18/mysqls-innodb_metrics-table-how-much-is-the-overhead/
      metric mysql
    • Get started with InnoDB Metrics Table (Transactions on InnoDB)
      December 16, 2015 at 11:23:31 AM GMT+1 - permalink - archive.org - https://blogs.oracle.com/mysqlinnodb/entry/get_started_with_innodb_metrics
      metric mysql
    • MySQL :: MySQL 5.6 Reference Manual :: 21.29.19 The INFORMATION_SCHEMA INNODB_METRICS Table
      December 16, 2015 at 11:23:23 AM GMT+1 - permalink - archive.org - http://dev.mysql.com/doc/refman/5.6/en/innodb-metrics-table.html
      metric mysql
    • Slow query graphs using Performance Schema and Graphite

      via skunnyk

      October 21, 2015 at 10:19:44 AM GMT+2 - permalink - archive.org - https://www.percona.com/blog/2015/10/20/slow-query-graphs-using-performance-schema-and-graphite/
      graphite mysql percona query slow sql
    • MySQL Cluster with Galera - Nouvelles idées

      via arnaudb

      September 26, 2015 at 2:59:53 PM GMT+2 - permalink - archive.org - http://nouvellesidees.info/blog/mysql-cluster-with-galera/
      cluster galera mysql
    • thumbnail
      Containing your logical backups: mydumper in docker
      September 22, 2015 at 2:14:52 PM GMT+2 - permalink - archive.org - https://www.percona.com/blog/2015/09/21/containing-logical-backups-mydumper-docker/
      backup docker mysql
    • Introducing mysqlpump | MySQL Server Blog
      September 8, 2015 at 10:10:13 AM GMT+2 - permalink - archive.org - http://mysqlserverteam.com/introducing-mysqlpump/
      dump mysql
    • My SQL Dump - Take the long view on the MySQL PERFORMANCE_SCHEMA with ps_history and sys_history
      February 12, 2015 at 2:29:42 PM GMT+1 - permalink - archive.org - http://swanhart.livejournal.com/137743.html
      information_schema mysql
    Links per page: 20 50 100
    ◄Older
    page 1 / 4
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation