2013-03-08 71 views
0

在了openSIS安装我面对这个错误的步骤2:了openSIS安装错误

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(0) , start_date date, end_date date, published_profiles characte' at line 9

我能做些什么?

+0

PLZ给我们完整的代码 – Gautam3164 2013-03-08 12:03:54

回答

0

http://forums.mysql.com/read.php?10,494735,494845#msg-494845

Removing the "(0)" from "Timestamp (0)" fixed the problem.

Thank you.

查找:

CREATE TABLE PORTAL_NOTES( 

id NUMERIC NOT NULL , 
school_id NUMERIC, 
syear NUMERIC(4, 0) , 
title CHARACTER VARYING(255) , 
content CHARACTER VARYING(5000) , 
sort_order NUMERIC, 
published_user NUMERIC, 
published_dateTIMESTAMP(0) , 
start_date DATE, 
end_date DATE, 
published_profiles CHARACTER VARYING(255) 
);