Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 2,486 total)

  • RE: migrate db from sql 6.5 to sql 2000

    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...

  • RE: SQL 6.5 and TempDB

    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...

  • RE: SQL Mail Problem

    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

  • RE: How to format DateTime?

    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...

  • RE: Bulk Insert with multiple files

    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...

  • RE: Log file issue

    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...

  • RE: DTS Bulk Insert Rows Inserted

    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 =...

  • RE: Troubleshooting DTS errors

    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...

  • RE: Linked Server Access problems

    What MDAC version are you using?

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: More Efficient Query

    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...

  • RE: DTS package stops when more than one task runs

    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...

  • RE: DTS package stops when more than one task runs

    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...

  • RE: Running DTS as SQLAgentCmdExec

    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...

  • RE: Migrating DTS packages from Dev to Test to Prod

    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...

  • RE: Import taking too long?

    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

Viewing 15 posts - 1,951 through 1,965 (of 2,486 total)