Forum Replies Created

Viewing 15 posts - 346 through 360 (of 433 total)

  • RE: Transform Data Task

    Am I right in saying you've got two parallel transform data tasks: One is working, the other is not?

    What kind of connections are...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: DTS - Create Index On DBF File

    Hi,

    Are you using a linked server to connect to the dbf file and are looking to create and index on one or all of the tables? Or have I completely...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Parameter for Filename in DTS Package export

    You could use an ActiveX script to assign the filename to a Global Variable and then either continue the script to set the DataSource or use a Dynamic Properties Task after...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Excel create copy.

    Okay, I think I've got it....

    You'll need the ActiveX task to open the workbook that'll run the Workbook_Open Macro (you may need to change...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Excel create copy.

    Try Something like this as an ActiveX task

    Function Main()

    dim xl_app

    dim xl_Spreadsheet

    set xl_app = CREATEOBJECT("Excel.Application")

    set xl_Spreadsheet = xl_app.Workbooks.Open ("C:\book1.xls")

    xl_app.run "Thisworkbook.RunMe" ' Macro Name to be run

    xl_Spreadsheet.Save

    xl_Spreadsheet.Close

    xl_app.quit...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: the multi-part identifier could not be bound (sql error = 4104)

    Thanks for letting me know. Always pains me when the answer is so simple.



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: create a stored procedure from two datbases

    Although my Hindi/Indonesian (haven't decided which it is yet, probably the former) is rusty, I believe that your reply involves originating from the loins of a horse and that I am...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Access a website to get a CSV file to be loaded into SQL

    Try this ActiveX script in a DTS package:

    Function Main()

     Dim objSvrHTTP

     Dim fso

     Dim f

     Set objSvrHTTP = CreateObject("Msxml2.ServerXMLHTTP.4.0")

     objSvrHTTP.open "GET", "http://www.globalindices.standardandpoors.com/data/wdpmi_bus.csv", false

     objSvrHTTP.send

     

     msgbox objSvrHTTP.responseText

     Set fso = CreateObject("Scripting.FileSystemObject")

     Set f = fso.CreateTextFile("c:\download.csv", True)

     

     f.write objSvrHTTP.responseText

     Set...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: the multi-part identifier could not be bound (sql error = 4104)

    Can you post the DDL of the tables involved please?



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Parsing T-SQL

    Using a transaction could work butmay be dependant on the SQL being executed. Would

    BEGIN TRAN trial

        sp_executesql @Sqlstring

    ROLLBACK TRAN trial

    work? Or is this as dangerous as the little niggling voice...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Access a website to get a CSV file to be loaded into SQL

    Can you give some more information as to how the CSV file is manually downloaded from the website?



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: the multi-part identifier could not be bound (sql error = 4104)

    There could be a number of issues here, causes of this error can include naming, aliasing, or join errors. I'll list what I can think of:

    1. Check the owner of...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Stored Proc syntax

    If you notice the WHERE clause in the statement this will stop any rows with NULL values in the serv_lev column being inserted into tblMatchNSI.

    You can have a second query...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Loading DTS Packages

    Dave, when you say "keep the on-screen layout intact", do you mean how the DTS package looks in DTS designer? If so, continue to use the BCP method...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: create a stored procedure from two datbases

    If it's a question asked of you then surely you should be coming up with the answer and not attempting to pass off someone else's work as your own???



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

Viewing 15 posts - 346 through 360 (of 433 total)