0

I have a SQL Server database with data. I'm planning to implement Roundhouse in my project. How can I migrate existing table schema into Roundhouse table ?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Prabhu
  • 647
  • 2
  • 9
  • 18

2 Answers2

1

Another good alternative is using the powerup tool. It's part of the same chucknorris toolset and it will generate roundhouse anytime script formats for the following objects:

  • stored procedures
  • views
  • functions

I didn't see an option to download a compiled .exe so had to download the source and build it locally. However, there were some issues I ran into that I had to clean up to successfully build the project. Also, I extended the project to include tables and constraints and place them in the up folders. I may try and fork the project and update the changes so others can leverage this tool to generate the table scripts in the future.

Here's a link to the repo: https://github.com/chucknorris/powerup

UT-Fan-05
  • 406
  • 4
  • 8
0

I use Management Studio with Tasks -> Generate Scripts. Then I modify those so that they check if the objects already exists and use it as the initial Up script. Views script I have in roundhouse scripts folder

dstroem
  • 1
  • 1