Hi
First of all. hats Off to your stuff for making every IT developers job easy. At every time, when we want to synchronize the DB, we ll face more complexity and need to sit for hours and hours to do that. This makes very simple. I will generate a script from my local DB where all my changes takes place then i move to Server delete the old DB and create a DB again - Run the scripts . All my changes will get reflected there. Easyyyyyyyy
Thank You
Quote:
Bug:
I notice some 3 bugs in generated Script.
1. Instead of scripting 'Varchar' Data type as 'Varchar()' it is generating as 'char()'.
-- Why this is happening? any specific reason behind on this?
2. Instead of scripting 'Varchar(max)' Data type as 'Varchar(max)' it is generating as 'text'.
-- Why this is happening? any specific reason behind on this?
3. In Insert Statements, when a varchar data is fetched it filling with empty spaces
-- For Example:
NAME Varchar(50)
-------------------
Radha
-------------------
In this a values character count is only 5 digits(Radha), while in script it is filling remaining with 45 spaces like this (Radha________________).
Can you pls rectify this two issues?
Thanks in Advance