Changes between Version 30 and Version 31 of ResourceDirectory


Ignore:
Timestamp:
Jan 23, 2011, 10:28:56 AM (13 years ago)
Author:
Sensei
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ResourceDirectory

    v30 v31  
    9090SQL scripts can be found in the Resource Directory v2/doc directory.
    9191
    92 First, SQL script '''{{{ResourceDirectory_v2_create_user.dump}}}''' should be executed in order to create a DB user. Do it only once, otherwise you'll get the following error (if the user already exists):[[BR]]
     92First, SQL script '''{{{ResourceDirectory_v2_create_user.sql}}}''' should be executed in order to create a DB user. Do it only once, otherwise you'll get the following error (if the user already exists):[[BR]]
    9393{{{ERROR 1396 (HY000) at line 5: Operation CREATE USER failed for 'sensei_rd2'@'%'}}}
    9494
    95 Then run the script '''{{{ResourceDirectory_v2.dump}}}''' to create the RD database structure.
     95Then run the script '''{{{ResourceDirectory_v2.sql}}}''' to create the RD database structure.
    9696
    9797SQL scripts can be executed using e.g. MySQL Command Line Client or MySQL Query Browser.[[BR]]
     
    100100{{{
    101101# create DB user
    102 mysql -u root -p < C:\path\ResourceDirectory_v2_create_user.dump
     102mysql -u root -p < ResourceDirectory_v2_create_user.sql
    103103Enter password: ************ (root password)
    104104
    105105# create database structure
    106 mysql -u root -p < C:\path\ResourceDirectory_v2.dump
     106mysql -u root -p < ResourceDirectory_v2.sql
    107107Enter password: ************ (root password)
    108108}}}