Forum Replies Created

Viewing 15 posts - 91 through 105 (of 192 total)

  • RE: Downloading file by script task over http

    Hi David,

    I'd try just removing the proxy declaration and method...

    Imports System

    Imports System.Data

    Imports System.Math

    Imports Microsoft.SqlServer.Dts.Runtime

    Imports System.Net

    Public Class ScriptMain

    Public Sub Main()

    ...

  • RE: Downloading file by script task over http

    Do you use a proxy? You might have to add one to your code?

    The following has worked for me...

    Imports System

    Imports System.Data

    Imports System.Math

    Imports Microsoft.SqlServer.Dts.Runtime

    Imports System.Net

    Public Class ScriptMain

    Public...

  • RE: The Lighter Side - Life is like an analogy

    Very funny!

  • RE: Transferring SSIS packages

    Try dtutil.exe There are more instructions on how to run it on BOL...

    Command will look something like this:-

    dtutil.exe /SourceS SourceServerName /SQL PackageName /DestS TargetServerName /MOVE SQL;/FolderName/PackageName

  • RE: Metadata-Driven ETL Platform by Extending SSIS

    It's a neat little tool, but the problem I've had with it is that you can't import templates that contain a script component or an Execute Process task... I didn't...

  • RE: SSIS Package Configurations - SQL Server option

    Hi,

    Chances are you'll want two connection managers - one to manage your connection to the source data, and the other to manage your connection to the configuration table/s.

    It sounds like...

  • RE: Dynamic Column Mapping

    Nicely done - might be worth sending it in as an article... there aren't enough walk throughs out there for this...

    I know from my own website that this is a...

  • RE: Execute SQL and place results into email

    Hi Paul,

    Here are 2 scripts that do the same thing... One uses the .net 1.0 system.web.mail class and the other the .net 2.0 system.net class.

    Hope this helps...

  • RE: Date Format

    Looks like you've done most of the work already, you just need to use the RIGHT function with your expression.

    Also, add month and day to 100, and take the rightmost...

  • RE: blank dates

    I think Jessica's issue is that you cannot assign a NULL value to SSIS variable. So what we are doing is coalescing in the dataflow to a known value that...

  • RE: blank dates

    You're right - it needs a typecast (DT_DBTIME)"1900-01-01" should do it.

    PS: Just editing to add one other point - make sure that your sql statement uses the same dateformat as...

  • RE: OLEDB source does not see SP CTE Fields

    Hi, you've probably already done this, but I'm just saying it because looking at the sproc Michael has written he has the SET NOCOUNT ON statement at the top where...

  • RE: Fact table loading

    Hi,

    What you should use is a surrogate key, rather than your composite key (you should be able to find a whole load of info on tinternet) on your dimensions. This...

  • RE: blank dates

    Hi Jessica,

    I'm not sure what you're doing in the ForEach loop but if you're using a SQL task, then you can use a variable as the SQL command. Then what...

Viewing 15 posts - 91 through 105 (of 192 total)