Forum Replies Created

Viewing 15 posts - 121 through 135 (of 605 total)

  • RE: Ad Hoc Gui interface for SQL Server

    Cheap - Use Access or Excel.

    If you have a web server already, write some asp and it won't cost you a penny.


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Getting Error when executing DTS from Stored Procedure

    What code are you using in the stored procedure?


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: using email as a dts data source

    It is possible to do.

    Open up the mailbox. Select [Export to a file]

    Select something like [Microsoft excel].

    Select the folder you want to export

    Give the filename and location. You can map...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Compare Tables Then Copy New Records

    Investigate the data driven query task.


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: How to -Check if file exists in folder +send it by mail +move

    For the files see:

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

    To send a mail use either the sendmail task in dts or xp_sendmail. Check BOL as there are plenty of examples of xp_sendmail


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Transformations in DTS

    This question and similar ones are asked time and time again.

    The answer unfortunately remains the same. Not easily.

    In order to do this, you would have to delve into the object...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Saving Global Variables within Package

    Consider writing an activex task that creates a text file using filsystemobject and then writes the values of the variables to the text file. That way you can tell exactly...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Difference between function and stored procedure

    From what I know, the only real differences are:

    1.Functions return a single value whereas stored procedures can return multiple.

    2.Non-deterministic functions are not allowed in functions but are for stored procedures.


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: 20gb temp file and they say "its ok"

    What the hell type of query are they running?

    Generating a temp db six times the size of the database is not normal practice and must take forever to run. I...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: timestamp to exception file

    The simplest way is to have another step that renames the file after each run. Something like a batch file.

    To do it within DTS:

    Create a global variable

    Create a Dynamic Properties...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Question about performance

    This guy is telling you the truth.

    Excerpt from microsoft site:

    'N-to-N Column Mappings

    Transformations using N-to-N column mappings require a matching number of multiple source and destination columns. You use this mapping...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Extracting data based on timestamp

    The only comparison should be between stage and destination.

    Stage should really be used for collecting all available data before decisions are made in regards to populating targets.

    IE - source -...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: DTS Standards

    I agree with you. However, there are a lot of Organisation's out there who will still be using 2000 2 or more years from now.

    At least that is the impression...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Extracting data based on timestamp

    If you cannot guarantee a last updated stamp is correct, then the best policy is to presume none of the data in the two tables exists.

    Therefore, you will need to...


    ------------------------------
    The Users are always right - when I'm not wrong!

  • RE: Check for open file in DTS

    The logical way would be to use the filesystemobject. However, there appear to be no attributes that allow you to find out if a file is open.

    The policy you should...


    ------------------------------
    The Users are always right - when I'm not wrong!

Viewing 15 posts - 121 through 135 (of 605 total)