August 18, 2011 at 3:28 am
Hi Team,
create table xxx
(UserName (varchar(256),not null)
DBName (varchar(256),not null)
InstanceName(varchar(128),not null))
Error :
The definition for column 'UserName' must include a data type.
i have created user datatype again it is giving error
August 18, 2011 at 3:38 am
Wrong syntax - too many brackets and wrong position of comma.
create table xxx
(UserName varchar(256) not null,
DBName varchar(256) not null,
InstanceName varchar(128) not null)
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply