Forum Replies Created

Viewing 15 posts - 451 through 465 (of 2,487 total)

  • RE: Easy way to document all DTS packages

    Greg, would your commenting be a text annotation on the DTS Designer page? If so, then be aware that if the package is modified programatically then you will lose the...

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

  • RE: DTS package connection is looping through but not changing server connection

    Check the "Close connection on Completion" option in the Workflow Properties of the ExecuteSQL task.

     

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

  • RE: Scans

    Maybe the scan is being produced by another T-SQL statement.

    Best way to isolate this is to run the statement in Query Analyzer with "Show Execution Plan" turned on.

     

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

  • RE: update another table

    When you alias a table you need to use the alias instead of the table name.

    Change "UPDATE Store_Table" to "UPDATE s"

    I would also suggest you get into the habit of...

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

  • RE: Question about simple recovery model and tran log size.

    Ahhh ... the actual info on recovery interval is,

    " SQL Server estimates how many data modifications it can roll forward in the recovery time interval. SQL Server typically issues...

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

  • RE: Paging in Reporting Services 2000

    I think this is more a case of the purpose and use of the report needs to be revisited and maybe the selection criteria adjusted to provide a smaller list...

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

  • RE: Script for integrity chk and Opti job

    The apology isn't necessary, but I'll accept it anyway

     

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

  • RE: Syncing data between two databases

    Given the recent rash of next to useless posts by Hemasunder, I'd say they're just trying to increase their post count.

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

  • RE: Debugging showing LEN(@i_name) > 0 when @i_name = ''''''''

    Yes, so by that logic it should print 'Length = 0' ( which it does for me )

    Vladmir's problem is that it's printing 'Length > 0'

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

  • RE: Scans

    Hema, I think what Rafter posted is the Execution plan.

    Rafter, simple question, are you sure you have the right plan for the right...

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

  • RE: Performance issues

    Check the Execution plan on each server. This will verify if the same indexes are being used and if any statistics are missing or out-of-date.

     

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

  • RE: Debugging showing LEN(@i_name) > 0 when @i_name = ''''''''

    Hmmm ... works fine for me.

    Are you sure you're passing in the correct input?

    Put a print statement to show the @i_name variable before the If .

     

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

  • RE: Syncing data between two databases

    Hema, A Backup and Restore won't be of any use in this situation because the data will still reside on the original server. That being the case you might as...

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

  • RE: How to execute a report based on a query

    You could setup your report on a schedule then check the command text of the SQL Agent job that is created.

    Just use the same command text in a trigger or other...

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

  • RE: Text File (Destination) is only reporting 256 characters

    Take a look at the following.

    http://www.sqldts.com/default.aspx?297

     

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

Viewing 15 posts - 451 through 465 (of 2,487 total)