Viewing 15 posts - 1,951 through 1,965 (of 2,486 total)
Also, make sure you have a good read of the Upgrading topic in SQL 2000 Books Online. Especially the first topic called "Preparing to Upgrade from SQL Server 6.5"
Hope this...
November 13, 2003 at 4:01 pm
Yes as usual with SQL 6.5, you have to jump through three or four hoops to do one task. Just be sure that you do each step as documented and...
November 13, 2003 at 3:55 pm
Have you tried re-creating the mail profile and restarting the SQL service?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
November 13, 2003 at 3:53 pm
To get a proper date comparison you need to do two conversions not one. First convert to varchar to strip off the time and then convert back to datetime for...
November 13, 2003 at 3:46 pm
Bulk Insert will only import one file at a time. Can the user run your program for each file?
Can you re-engineer your program to loop through the files importing them...
November 13, 2003 at 3:32 pm
What is the recovery model for the database?
Do you do transaction log backups?
Has there been any large updates to the database, or any reindexing? Both of these operations can cause...
November 13, 2003 at 3:26 pm
The following script returns the RowsComplete for a Datapump task and build a message string.
You'll need to put the name of you step in the line that reads,
Set oStp =...
November 13, 2003 at 3:20 pm
If package logging is enabled before the package is run then DTS will log execution info for each step in the package. It won't log anything if the package...
November 13, 2003 at 3:11 pm
What MDAC version are you using?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
November 13, 2003 at 3:00 pm
If possible, you could put the values for the IN clause into a table. Then just use that table in the FROM clause.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original...
November 12, 2003 at 4:19 pm
For the tasks that don't execute, do you have single or multiple precedence constraints? If you have multiple constraints, bear in mind that these work as an AND not an...
November 12, 2003 at 3:36 pm
What type of tasks are you using? If you're using an ActiveXScript task, are you setting the task result correctly? Do you have any Workflow scripts that determine if the...
November 11, 2003 at 2:34 am
Well from the Error message it looks like the DTS package is executing. You'll probably find that its trying to access a file share or something that the developers login...
November 11, 2003 at 2:31 am
Probably the best approach to making your DTS packages portable between each environment is to make all the environment dependant settings as dynamic as possible.
The way I achieve this is...
November 11, 2003 at 2:28 am
Check out "Optimizing Bulk Copy Performance" in Books Online. It has a few tips for getting good performance.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
November 10, 2003 at 3:22 pm
Viewing 15 posts - 1,951 through 1,965 (of 2,486 total)