Jump to content

Search the Community

Showing results for tags 'mysql'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements
    • News
    • Project Information
    • Database Downloads
  • Open Discussions
    • Join our team
    • Introduce yourself
    • Off Topic
    • Community Help Corner
    • Locale
  • Server Core
    • Core Patch Submissions
  • SkyFire Database
    • Database News and Announcements
    • Database Help
    • Database Tools
    • Accepted Patch Submissions
    • SkyFireDB post archives
  • Smart AI Scripting
  • PHP Scripting
    • Web Scripts
  • SkyFire 4.0.6A

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 2 results

  1. Global Privileges Global privileges are administrative or apply to all databases on a given server. To assign global privileges, use ON *.* syntax: GRANT ALL ON *.* TO 'SomeMysqlUser'@'somehost'; or GRANT ALL PRIVILEGES ON *.* TO 'YourMysqlUserName'@'YourIP' IDENTIFIED BY "YourMysqlPassword"; Example: GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY "*****"; __________________________________________
  2. Start MySQL 5.5 Command Line ClientAt the command prompt, execute the foll. command mysql> show variables like 'max_allowed_packet'; At the command prompt, execute the foll. command mysql> set global max_allowed_packet = 130 * 1024 * 1024; ExitStart MySQL 5.5 Command Line ClientAt the command prompt, execute the foll. command mysql> show variables like 'max_allowed_packet'; This will set the global max packet size to 130 MB. All subsequent MySQL client connections will get this value as their session value for max packet Now: Source Database : information_schema `GLOBAL_VARIABLES` VALUES ('MAX_ALLOWED_PACKET', '136314880');
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.