Viewing 6 posts - 31 through 36 (of 36 total)
presumably the steps are
1. backup on source server
2. ZIP dump file
3. push [source] or pull [target] to target
4. unZIP dump on target
5. restore dump on target
what you imply is that...
April 4, 2003 at 6:52 am
I notice in the banner for the site an advert for
perhaps you should trial that ?
April 2, 2003 at 12:32 pm
0. pick a quiet time for update and get Management to buy-in
1. backup all databases
2. backup the server (with Std Ed)
3. ensure adequate headroom on system db's (especially master, msdb,...
April 2, 2003 at 11:29 am
The @@IDENTITY returns the most recent value used to insert a row. Your problem is that your journal table has an IDENTITY column so the value returned is that secondary...
April 2, 2003 at 11:08 am
I seriously recommend that you create a separate FILEGROUP (say BLOBGROUP) and use the
CREATE TABLE table_name ( ...) ON DEFAULT TEXTIMAGE_ON BLOBGROUP
this means that the physical storage of blobs is...
April 2, 2003 at 10:23 am
Assuming your table is not Clustered already, the operation to effect a CI is major because it will require a physical reordering of all data, and all existing indexes will...
April 2, 2003 at 10:14 am
Viewing 6 posts - 31 through 36 (of 36 total)