You mean like:
INSERT INTO t1(c1,c2)
SELECT '1','2'
UNION
SELECT '3','4'
UNION
...
?
|||This will turn off the identity column for a table,
set identity_insert <tablename> on
[insert 100 records .. ]
set identity_insert <tablename> off
No i mean if identity column is off i.e.., the we should explicitly insert ID column by fetching an XML having 100 records for example
Table1
ID StudRollNo StudName
Inserting into table1(Identity column for column ID is OFF) where i will get the XML of table having 100 records like
ID StudRollNo Studname
|||If you mean to read data from XML into datbase table,?I?suggest?you?learn?XQuery?in?SQL2005
No comments:
Post a Comment