Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I thought this would be trivial, but it isn't... I'm sure there is a simple way to do it but I can't manage to find it. Shame on me.

I want to import/export the database itself, the tables, the constraints (foreign keys and so on). I'd rather not get the data with it, but I can get rid of it after if there's no other way.

So... how do you export a database using MS SQL Server Management Studio ? How do you import it?

The only solution I found was right click on the tables and "script to Create", but I have something like 100 tables, so I'd rather avoid this.

Thanks!

share|improve this question

1 Answer

up vote 68 down vote accepted

Right click the database itself, Tasks -> Generate Scripts...

Then follow the wizard.

share|improve this answer
2  
tasks :\ ok, thanks a lot! – marcgg Jul 14 '09 at 16:38
3  
how about with getting the data? is it possible to create insert queries with a method like generate script ? – Kubi Jan 18 '12 at 22:19
15  
@Kubi, on the "Set Scripting Options" step, select the "Advanced" button and change "Schema Only" to "Data Only" or "Schema and Data". – Brandon Jan 18 '12 at 22:32
1  
it is damn easy.. – Kubi Jan 18 '12 at 22:35
9  
@Brandon, thank you for that. Why "schema only", "data only" or "schema and data" is considered an "Advanced" option is beyond my comprehension. – Brian Hooper Jan 27 '12 at 10:02
show 1 more comment

protected by Community Dec 8 '11 at 18:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.