Showing posts with label database modeling. Show all posts
Showing posts with label database modeling. Show all posts

SqlDBM: Model revision history

In a previous post I presented sqlDBM, a really cool on-line tool for database modeling. You can use it to create the model of your SQL Server or MySQL RDBMS. Then use its forward engineering feature to generate an sql script that creates the whole of the database you have designed in the tool.

The tool has a very useful versioning feature: each time you click on the Save button and save the work on the model you are working with, the tool creates a new revision of the model. The picture below displays the revision history of my Payroll model so far:

You can easily open any revision you like by just clicking on the timestamp link. This is the latest revision of my database model:

What is really interesting on the screenshot above is that the tool, at the end of my last session, has automatically saved a draft of some changes I made after pressing the Save button. By pressing the Load Draft button I can load my work as it was just before I left the tool and continue my work exactly from the point I left it.

SqlDBM: A cool new tool for SQL Server Database design

I recently discovered a really cool new on-line tool for SQL Database design. The site hosting the tool is called SQL Database Modeler. After loging in with my Facebook account I started creating a new schema for SQL Server database. The GUI of the tool is intuitive and really easy to handle for someone accustomed to using desktop tools for database modelling like ErWin Data modeller.

The picture shows the project I've created: it's called Payroll and contains just one table, Employee.

Now I can start modeling my new SQL Server database! I can easiy login either from my desktop computer or my laptop at home, or my workstation at work and continue my modeling work from were I left it.

Featured Post

Store the result of a select query into an array variable

Popular Posts