mysql

Status
Not open for further replies.

swrpg

New Member
Messages
31
Reaction score
0
Points
0
i'm trying to import a file and get the message:
Error

SQL query:
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- Server version 5.0.24a-community-nt
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;

/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;

/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;

/*!40101 SET NAMES utf8 */;

/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;

/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

--
-- Create schema swrpg_samuraiwarrior
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/swrpg_samuraiwarrior;


MySQL said:
#1044 - Access denied for user 'swrpg'@'localhost' to database 'swrpg_samuraiwarrior'
 

alvaroag

New Member
Messages
288
Reaction score
0
Points
0
i think that's because any sql user here can execute the "CREATE DATABASe" statement. the databases should be created manually using cpanel. then, you can import the tables structure and data inside a database.
 

sinhvienbd

New Member
Messages
6
Reaction score
0
Points
0
alvaroag said:
i think that's because any sql user here can execute the "CREATE DATABASe" statement. the databases should be created manually using cpanel. then, you can import the tables structure and data inside a database.

thankyou very good
 
Status
Not open for further replies.
Top