CREATE TABLE dbo.Tmp_Utilisateurs_diffusion
(
Id int NOT NULL,
FirstName varchar(255) NULL,
LastName varchar(255) NULL,
Email varchar(255) NOT NULL
) ON [default]
TEXTIMAGE_ON [default]
GO
I have the error :
- Unable to modify table.
ADO error: [Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect
syntax near 'TEXTIMAGE_ON'.
It is working when I remove the 'TEXTIMAGE_ON [default]'
The documentation says :
>TEXTIMAGE_ON
>Are keywords indicating that the text and image columns are stored on the specified >filegroup. This will be implemented in a future beta.
So this feature is not implemented but also generated : then it produces
an error.
Do you have any idea how to deal with that ? (Now, I store the file and
I correct
the file by hand and do the rest of the script manually, it is quite
uneasy !!!)
--
A bientot
Jean-Robert Gruser (j...@netforce.fr)
Netforce (http://www.netforce.fr/)
35, rue des Petits Champs
75001 PARIS
Tél.: 01 42 60 59 59 Fax.: 01 42 60 58 00
Eric