vote up 1 vote down star

I am used to using Oracle Designer by creating database object definitions, then creating DDL SQL required by connecting to a database instance.

For eaxmple, when adding a new column to a table, first I add it to the table definition, then generate the DDL SQL against the development version and run it, then after testing I point to the Production instance to create the missing column in Production.

Given that there is no Designer in SQL Server what is the correct procedure to say add a column to both database instances? Is there a tool for keeping the schemas in sync?

flag
Oracle Designer + SQL Server? – Joel Coehoorn Jun 1 at 20:37

2 Answers

vote up 1 vote down check

RedGate offer a product called SQL Compare, that can be used to script out the differences between different databases.

See: http://www.red-gate.com/products/SQL_Compare/index.htm

You could also use the Database Diagrams within SQL Server Management Studio to design your database schema however this would be constrained to within a given database.

link|flag
OK - I think I will see how Oracle Designer works with SQL Server as my company won't spend money at the moment. – Mark3308 Jun 2 at 5:53
vote up 1 vote down

There isn't a built in tool for keeping them in sync (that I know of), but RedGate has some commercial apps for this.

What do you mean there is no designer in SQL Server? Are you using SQL Server Management Studio?

link|flag
Sorry I meant no Oracle Designer Application. – Mark3308 Jun 1 at 20:27
Yes I am using SSMS – Mark3308 Jun 1 at 20:27

Your Answer

Get an OpenID
or

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