Viewing 15 posts - 31 through 45 (of 106 total)
Here's what I do.
Make a copy of the target database.
Perform comparison and synchronization and produce a delta script using the copy of the target database.
I know the delta script works...
May 30, 2005 at 1:50 am
maybe it isn't worth dropping the indexes any more and instead do the data load and defrag the indexes after the load. The data load may actually take less than...
May 12, 2005 at 2:42 am
Hello Phil Cart,
>I'm sure that everyone you talk to knows how "GREAT" your program is, but this doesn't mean that other products...
May 12, 2005 at 1:40 am
that's the problem (dependencies) I've always encountered. What I do is build the database object by object in a recursive loop until I get no errors (even sysdepends errors) and...
May 11, 2005 at 7:01 am
Let me know if it works, I've found this to be unreliable and I think I have a better way.
May 11, 2005 at 1:37 am
sounds like high mantenance and prone to error due to the need for human intervention IE: strict rules - very unlike DB Ghost. But good luck to you.
May 10, 2005 at 11:32 am
Please look at DB Ghost (http://www.dbghost.com) it has build, comparison and synchronization abilities directly from your source control which is - if I'm not mistaken - exactly what you...
May 10, 2005 at 1:56 am
without using system tables as the system tables will not be available in SQLServer 2005...
use Northwind
GO
set nocount on
declare @table_owner sysname, @table_name sysname, @column_or_index_name sysname
declare @result varchar(25),@param nvarchar(261)
--set the variables
select
@table_owner =...
May 5, 2005 at 2:26 am
try modifying your login time out:
Using enterprise manager: Tools>Options>Advanced Tab>Login timeout (default is 4 seconds)
regards,
Mark Baekdal
+44 (0)208...
May 4, 2005 at 3:36 am
I think all of the above products have their place however they do not cover change management. Here's an article on the subject which has been extensively researched. http://www.innovartis.co.uk/pdf/Innovartis_An_Automated_Approach_To_Do_Change_Mgt.pdf
The...
May 4, 2005 at 3:10 am
maybe I can learn something and my apologies if I sounded condescending
regards,
Mark Baekdal
+44 (0)208 241 1762
Build, Comparison...
May 4, 2005 at 2:28 am
there's a saying that goes "why code when you can download"
Re-inventing the wheel is more costly than buying a well tested product that solves the problem.
But seriously, I find my...
May 3, 2005 at 9:35 am
to me comparing databases is usually a sign that you don't know what is in the database and therefore your change management system is faulty or non-existant. That being said...
May 3, 2005 at 3:16 am
Viewing 15 posts - 31 through 45 (of 106 total)