Tell me more ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

Im trying to generate physical database from my logical model using ERWIN 7.

All is well in the script that is generated automatically, there is only the problem that the model is created in the database "master" which is the default SQL Server, rather than being created in the database that I inserted along with the model.

I cant find a way to associate my MODEL with the database im creating along with the model.

Here is the script that ERWIN auto-generates:

CREATE DATABASE Movies go

ALTER DATABASE Movies SET RECOVERY FULL go

CREATE SCHEMA fbd AUTHORIZATION dbo go

CREATE DEFAULT Default_Value_movies_gen AS 1 go

CREATE DEFAULT Default_Value_titulo_movies AS 'No title' go

BUT it should generate automatically:

CREATE DATABASE Movies go

// Here should be "USE Movies",to use database that ERWIN have just created

ALTER DATABASE Movies SET RECOVERY FULL go

CREATE SCHEMA fbd AUTHORIZATION dbo go

CREATE DEFAULT Default_Value_movies_gen AS 1 go

CREATE DEFAULT Default_Value_titulo_movies AS 'No title' go

Any ideas?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.