codice:
INSERT INTO Tabella(data) VALUES('20100101')
per renderti conto che quanto ti ho detto funziona fai questo test:
codice:
SET NOCOUNT ON
CREATE TABLE X(D DATETIME)

INSERT INTO X VALUES ('20100101')
SELECT * FROM X

DROP TABLE X