Viewing 15 posts - 2,071 through 2,085 (of 2,635 total)
Right-click on Database since you're creating the database with the restore. Select Restore from device and click on the 'Select Devices...' button. Then you can add you backup files to...
Greg
April 24, 2006 at 10:06 am
The main reason I use the DROP and CREATE method is so the destination tables can be truncated, which is faster than deleting. Because my DTS package frequently import large...
Greg
April 21, 2006 at 9:47 am
I do what Scorpian does. I use this script to create the drop and add statements for the FK constraints:
/* Generates script to drop foreign key constraints. If you plan...
Greg
April 20, 2006 at 4:33 pm
The short answer is you can't deny access to Master and Tempdb to a login. Both databases have the Guest user and Public role, neither of which can be removed. ...
Greg
April 20, 2006 at 12:57 pm
I don't have a step-by-step guide, but I suggest http://www.sqldts.com/ and the book "Professional SQL Server 2000 DTS" by WROX as excellent reference material.
This sounds like a pretty basic...
Greg
April 18, 2006 at 10:53 am
Jeffrey,
I'm not sure I understand when you say it's difficult to revert to a previous version. If you save packages to SQL Server, a new version is created each time...
Greg
April 18, 2006 at 10:38 am
Like a lot of people, my first impulse is to say that I'd like to pursue one of my hobbies as a profession: building and repairing bicycles or cooking.
After...
Greg
April 14, 2006 at 10:37 am
Here's a script that will produce statements to drop all the constraints in a database.
select 'ALTER TABLE ' + cast(table_name as char(40)) + 'DROP CONSTRAINT '
+ cast(constraint_name...
Greg
April 12, 2006 at 8:31 am
Try assigning the results of the @@ERROR query to a global variable that the 'on failure' step can read to get the value.
Greg
Greg
April 4, 2006 at 2:56 pm
Try searching this site for threads regarding this. I just searched for 'define columns' and found a lot of discussions about this problem. Perhaps one of them will give you...
Greg
April 4, 2006 at 2:53 pm
1. Open Package Properties in Designer
2. On the Advanced tab, check 'Use transactions' and 'Commit on successful
package completion'
3. Right-click on each each Data Transformation task and select 'Workflow
Properties'
4....
Greg
April 4, 2006 at 2:49 pm
Steve,
Are you running Service Pack 3? This sounds like a bug that was fixed in SP4.
http://support.microsoft.com/kb/814113/en-us
Greg
Greg
April 4, 2006 at 2:27 pm
"Professional SQL Server 2000 DTS" by Brian Knight, Mark Chaffin, Todd Robinson is a great book. It's full of good examples and clear explanations. Perhaps it's the Wrox book you've...
Greg
March 30, 2006 at 9:05 am
You must restore a full database backup before you can restore either a differential or a log backup. See "Designing a Backup and Restore Strategy" in BOL.
Greg
Greg
March 29, 2006 at 2:07 pm
Viewing 15 posts - 2,071 through 2,085 (of 2,635 total)