M
Mohan
I am sendng the following SQL Scritp via Micrsoft Jet
CREATE TABLE tab1 (
[emp_id] char (255) WITH COMP NOT NULL,
[fname] uniqueidentifier NOT NULL ,
[minit] char (255),
[lname] char (255) NOT NULL ,
[job_id] char (255) NOT NULL ,
[job_lvl] char (255),
[xx] int,
[c1] char (255),
[c2] char (255),
[c3] char (255),
[c4] char (255),
CONSTRAINT tab5_PrimaryKey PRIMARY KEY (emp_id)
)
I get back the message "Record is too large"
I used the WITH COMP option as well but no difference.
Any idea what is happening here? Is there a restriction
on the number of fields with char as an option when
working via Microsft Jet? I thought the WITH COMP option
would take care of that????
Thanks in advance,
Mohan
CREATE TABLE tab1 (
[emp_id] char (255) WITH COMP NOT NULL,
[fname] uniqueidentifier NOT NULL ,
[minit] char (255),
[lname] char (255) NOT NULL ,
[job_id] char (255) NOT NULL ,
[job_lvl] char (255),
[xx] int,
[c1] char (255),
[c2] char (255),
[c3] char (255),
[c4] char (255),
CONSTRAINT tab5_PrimaryKey PRIMARY KEY (emp_id)
)
I get back the message "Record is too large"
I used the WITH COMP option as well but no difference.
Any idea what is happening here? Is there a restriction
on the number of fields with char as an option when
working via Microsft Jet? I thought the WITH COMP option
would take care of that????
Thanks in advance,
Mohan