to just disable your constraints (all of them) for all tables, you could use:
execute sp_msforeachtable @command1='alter table ? nocheck constraint all'
similarily use:
execute sp_msforeachtable @command1='alter table ? check constraint all'
to enable your constraints again.
best regars,
chris.