Viewing 15 posts - 91 through 105 (of 192 total)
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()
...
May 15, 2008 at 4:14 pm
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...
May 14, 2008 at 2:58 am
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
May 6, 2008 at 9:10 am
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...
May 6, 2008 at 9:02 am
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...
April 25, 2008 at 4:03 am
See Books on line...
April 22, 2008 at 10:17 am
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...
April 22, 2008 at 7:56 am
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...
April 22, 2008 at 3:24 am
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...
April 21, 2008 at 10:30 am
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...
April 18, 2008 at 7:59 am
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...
April 18, 2008 at 6:36 am
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...
April 18, 2008 at 5:28 am
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...
April 18, 2008 at 4:56 am
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...
April 18, 2008 at 4:07 am
Viewing 15 posts - 91 through 105 (of 192 total)