Hi ,
I am trying to create LOGFILE GROUP and create TABLE SPACE for my sql database I production. but I am not able to create , getting the below errors.
CREATE LOGFILE GROUP prod_lg1 ADD UNDOFILE '/user/mysql/abc/abc_undo.dat' INITIAL_SIZE = 100M
ENGINE = NDB;
CREATE TABLESPACE prod_ts
ADD DATAFILE '/user/mysql/abc/abc_prodts01.dat'
USE LOGFILE GROUP prod_lg1
ENGINE = NDB;
//
Warning | 1286 | Unknown storage engine 'NDB' |
| Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP //
Can we go ahead to create database, table creations without tablesapce, log group, data files creation in MySQL ?
is there any tablespace , log file created by default ? if so what are they and which directory the logs / data files stored ?
If tablespace mandatory then how will I create ?
Can anyone help to clarify ?
I am trying to create LOGFILE GROUP and create TABLE SPACE for my sql database I production. but I am not able to create , getting the below errors.
CREATE LOGFILE GROUP prod_lg1 ADD UNDOFILE '/user/mysql/abc/abc_undo.dat' INITIAL_SIZE = 100M
ENGINE = NDB;
CREATE TABLESPACE prod_ts
ADD DATAFILE '/user/mysql/abc/abc_prodts01.dat'
USE LOGFILE GROUP prod_lg1
ENGINE = NDB;
//
Warning | 1286 | Unknown storage engine 'NDB' |
| Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP //
Can we go ahead to create database, table creations without tablesapce, log group, data files creation in MySQL ?
is there any tablespace , log file created by default ? if so what are they and which directory the logs / data files stored ?
If tablespace mandatory then how will I create ?
Can anyone help to clarify ?