MS SQL doesn't have auto_increment.... or at least it's not called that.
I'd say just take what you have to do is manually create teh table(s). MSSQL doesn't have anything on the net as far as documentation is concerned (or atleast from what I've found).
Typical MSSQL queries look like:
CREATE TABLE [dbo].[domain](
id smallint IDENTITY( 1, 1),
column2 char(72)
)
IDENTITY(seed, incerement)
So, seed is the start (1,2,3) and the increment is the number added to the previous. So IDENTITY(1,1) would give autoincrements:
1,2,3,4,5...
IDENTITY(1,2):
1,3,5,7,9...
IDENTITY(7,1):
7,8,9,10...
Understand?