Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 2,267 total)

  • RE: File Loading

    if you use the same source and destination in the loop then it will add them to the same table.

    If you need to read and write to different tables then...

  • RE: File Loading

    Adam.Massey (1/27/2010)


    I am using 7-zip so does that mean e still means extract and o still means overwrite or is it different?

    I am not sure i have not use 7-zip...

  • RE: File Loading

    For the parameters it would depend on the unzip util you are using, in that example the 'e' mean extract and the 'o' means overwirte.

    so they are building up...

  • RE: Syntax Error

    sorry I was typing the repsonse when you posted your answer so didn't see it until it was too late.

    Glad it is sorted out .

  • RE: Syntax Error

    you are trying to assign a default value (null) to a local varable

  • RE: File Loading

    You can use any tool that supports comand line unzipping, i have used WinRar and as Jeff mentioned 7-Zip would work as well. You would use pretty much the...

  • RE: File Loading

    there are a lot of ssis resource on

    http://www.sqlis.com

    in particular

    http://www.sqlis.com/post/Looping-over-files-with-the-Foreach-Loop.aspx

    unzipping shouldn't be a problem as you are just executing an application in the same way...

  • RE: File Loading

    you can unzip in ssis, you can use the execute process task to execute the unzip application with a dynamic filename, you can also use a script...

  • RE: File Loading

    i would create a SSIS packages to unzip the files to a working directory and then use the For-Each loop to loop through the files and import that data from...

  • RE: accessing a remote database through SSIS

    have you checked the error log on the server that you are trying to connect to? there should be an error on there with a code that will...

  • RE: accessing a remote database through SSIS

    LOOKUP_BI-756009 (1/22/2010)


    If Im not mistaken, you need to also check what credentials are being used by the SQL Server Agent Service that is running in Configuration Mng

    http://msdn.microsoft.com/en-us/library/ms191543.aspx

    yes you need to...

  • RE: accessing a remote database through SSIS

    Have you check the logs on the sql server to see what the error is?

    Ive tried to connect using windows authentication and also through a sql server account...

  • RE: Experienced DBA ego

    They are probably grilling to see if you can go the job properly and under pressure so that you do not make mistakes and then they get the blame.

    However some...

  • RE: mirroring connection timeout

    you can check the time out value from this table

    SELECT * FROM sys.database_mirroring

  • RE: Alpha before numeric

    try using ISNUMERIC in the order by

    SELECT * FROM yourTable

    ORDER BY ISNUMERIC(yourCol), yourCol

Viewing 15 posts - 1,096 through 1,110 (of 2,267 total)