Viewing 15 posts - 1,981 through 1,995 (of 7,168 total)
balasach82 (2/13/2013)
February 13, 2013 at 12:12 pm
Kevin Drysdale (2/13/2013)
I have a rather large table (122M records) and I need to add a new column - not just to the end, but nestle...
February 13, 2013 at 12:10 pm
Ahh, missed which Forum we were in. Cheers.
February 13, 2013 at 12:04 pm
You could also try reverting it back to an SSIS Step Type and on the Execution Options Tab checking 'Use 32 bit runtime.' The requirement to pass the uid and...
February 13, 2013 at 11:53 am
Agent Jobs are not built to generate popups on user's machines unless you consider NET SEND an option. The overall point however is that Jobs run on servers. If there...
February 13, 2013 at 11:41 am
kingdonshel (2/13/2013)
February 13, 2013 at 11:39 am
Welsh Corgi (2/13/2013)
opc.three (6/6/2012)
February 13, 2013 at 11:31 am
Just confirming that you can run Winzip from the command line directly, or did you mean when you run winzip that it was interatively?
February 13, 2013 at 11:06 am
Try stepping through the code by setting a breakpoint and running the package, see what the variable contains before evaluating the IF.
February 13, 2013 at 9:51 am
64-bit workstation? Make sure your Project property Run64BitRuntime is False.
February 13, 2013 at 9:49 am
Try this instead, changes bolded (edit: and underlined):
[font="Courier New"]
Public Sub Main()
'MsgBox(Dts.Variables("Username").Value.ToString)'
Dim myHtmlMessage As MailMessage
Dim mySmtpClient As SmtpClient
'Dim vars As Variables'
Dim mailAuthentication As System.Net.NetworkCredential
mailAuthentication = New System.Net.NetworkCredential(Dts.Variables("Username").Value.ToString(), Dts.Variables("Password").Value.ToString())
myHtmlMessage = New...
February 13, 2013 at 8:47 am
Enabling a Trace Flag is not the same as running a Trace. If you do not have a deadlock graph and you cannot enable the Trace Flag and the trigger...
February 13, 2013 at 8:35 am
Is the process running under your Windows security context when run through the Execute Process Task, i.e. through BIDS or SSDT, or is this error coming from an unattended process...
February 13, 2013 at 8:31 am
If you meant you want to install software so you can develop SSIS then you can attain that by running setup.exe from the SQL Server installation media. If SQL 2005...
February 13, 2013 at 8:29 am
:ermm: Did you try the code PMwar posted?
February 13, 2013 at 8:24 am
Viewing 15 posts - 1,981 through 1,995 (of 7,168 total)