Forum Replies Created

Viewing 15 posts - 1,756 through 1,770 (of 2,487 total)

  • RE: DTS csv

    Ok, if you could provide the datatypes I can try it.

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

  • RE: problems sending emails from SQL Server

    when you use a pst file as your Outlook mail store, SQL Server will use the file while it's running.

    When you connect via Remote Desktop, you are actually creating...

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

  • RE: DTS csv

    Is this the entire query? Do you have other tables joined or a WHERE clause?

    Can you put the query into a stored procedure and use the stored procedure as your...

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

  • RE: How to import file .txt having a changing name ?

    This is one of the many questions covered at http://www.sqldts.com

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

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

  • RE: DTS Designer Error....pls help ASAP

    When you reinstalled, did you uninstall first? If not, try that.

    Also, try re-applying the latest service pack.

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

  • RE: execute package from command prompt?

    In addition to Jeremy's comprehensive post, to run .sql scripts check out the OSQL utility in Books Online.

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

  • RE: Inconsistent DTS error

    You might also want to check the date settings on the server.

    Where, and how, does the VB executable run?

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

  • RE: Excel connection in DTS package

    If you are using the Excel Application object to do things like formatting, etc... then no. Jet doesn't know about Excel properties.

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

  • RE: Active-X DTS Problem

    Why are you using ActiveXScript? Why not use the inbuilt workflow?

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

  • RE: Using Temp Tables in SPROC output

    When you define a dataset in Reporting Services you can manually enter the fields in the Dataset Properties dialog.

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

  • RE: Silly Question About Indexes

    It's nothing to do with views.

    Try this example,

    Run the following in Query Analyzer,

    create table tmp (a int, b int, c int)

    insert into tmp values ( 1, 2, 3)

    insert into tmp...

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

  • RE: Using Temp Tables in SPROC output

    The reason for the error when running the estimated execution plan is because the procedure is not actually run, therefore the temp table is not created.

    As I posted previously the...

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

  • RE: How can I generate "pipe/vertical bar" delimited fields for a text file using bcp?

    So are you exporting data using BCP or the DTS Datapump?

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

  • RE: Silly Question About Indexes

    For Deletes and Updates (which are actually deletes and inserts) the table will require a unique key to determine which record to delete.

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

  • RE: Using Temp Tables in SPROC output

    There are issues with using temp tables in reporting services. It has to do with the way the meta data is returned. It should work if you manually add the...

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

Viewing 15 posts - 1,756 through 1,770 (of 2,487 total)