Forum Replies Created

Viewing 15 posts - 2,371 through 2,385 (of 2,487 total)

  • RE: Never before seen entries in Log file

    Looks like it may be related to some sort of cleanup for a transaction.

    Where you able to find in similarities in server activity at the time of the two messages?

    Thanks

    Phill...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Changes in EM registration

    The servers registered in EM are stored in the registry at the following key,

    HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\SQLEW\Registered Servers X\SQL Server Group

    It's a binary value so you probably...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How can I make a DTS step optional?

    Ok here's what I came up with. An important thing to note is that you need to set the Precedence Constraints for the next step in the sequence.

    I set up...

    --------------------
    Colt 45 - the original point and click interface

  • RE: UDF recursion and Cursors

    Have you tried doing a self-join,

    eg:

    select d1.DomainID , d2.DomainID

    from Domain d1

    inner join Domain d2

    on d1.ParentDomainID = d2.DomainID

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Calling webpage in DTS Package

    Do you get any error messages? Turn on package logging to check what it's doing. Also, make sure that the process that will execute has sufficient access rights.

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Passing Array Information via Global Variables

    In a word, No . Global Variables don't hold arrays.

    Thanks

    Phill Carter

    Edited by - phillcart on 02/03/2003 3:55:49 PM

    --------------------
    Colt 45 - the original point and click interface

  • RE: Copy Columns Task

    Do a Bilk Insert into a staging table, then execute a regular T-SQL insert to insert the records into the final table.

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Can anyone explain these error log entries

    Looks like a latch wait problem. Check out 'Latching' in BOL.

    Run perfmon and watch the 'Average Latch Wait Time' counter. From memory, I think anything above 1500ms is indication of...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How can I make a DTS step optional?

    Have you tried setting the StepExecutionStatus to 'DTSStepExecStat_Completed'?

    I've only done the Inactive and Waiting myself. Just thought that this might simplify a problem I'm having. Will be trying it out...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Copy Columns Task

    Try doing using the BULK INSERT command in Query Analyzer and see how long it takes.

    What sort of data are you importing?

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: VB Script in DTS

    It's a permissions problem. Checkout the following articles,

    http://support.microsoft.com/default.aspx?scid=kb;en-us;298725

    http://support.microsoft.com/default.aspx?scid=kb;en-us;269074

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

  • RE: Generic DTS Package

    If you use the DataPump task to import your data, then you can write an ActiveXScript that manipulates the task properties before it executes.

    If you're using SQL 2000, jump into...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Moving DTS Packges

    Try DTSBackup 2000 at sqldts.com

    http://www.sqldts.com/default.aspx?220,272,272,1,1

    If you're moving the packages between SQL Servers, make sure you have 'Direct Transfer' select in the options. This will preserve the formatting and annotations.

    Really though,...

    --------------------
    Colt 45 - the original point and click interface

  • RE: meta data for a report

    In your ActiveXScript, first you need a package object then you can open the steps and tasks associated with that package.

    EG:

    
    
    Dim oPkg, oStep, oTsk
    Set oPkg =...

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQL JOB HANGS

    Try copying the ActiveXScripts into seperate files and execute them at a command prompt. You'll probably find that the script is waiting for some sort of input.

    Thanks

    Phill Carter

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 2,371 through 2,385 (of 2,487 total)