Datatype Prob

  • 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

  • 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)

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply