Forum Replies Created

Viewing 15 posts - 1,981 through 1,995 (of 7,164 total)

  • RE: ODBC Exception running package as SQL Server Agent job

    Ahh, missed which Forum we were in. Cheers.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: ODBC Exception running package as SQL Server Agent job

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: cmd job

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Help with VB Script for Sending Mail in SSIS

    kingdonshel (2/13/2013)


    Hi opc.three, the truth is your code makes no difference the code works in the same way with or without your code as long as the file path is...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Low disk space alert

    Welsh Corgi (2/13/2013)


    opc.three (6/6/2012)


    Win32_Volume is more appropriate in some server environments. I use Win32_LogicalDisk in this environment as Win32_Volume is not a class on all the servers that I support....

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Unzip error through Excute process task

    Just confirming that you can run Winzip from the command line directly, or did you mean when you run winzip that it was interatively?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Help with VB Script for Sending Mail in SSIS

    Try stepping through the code by setting a breakpoint and running the package, see what the variable contains before evaluating the IF.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Unzip error through Excute process task

    64-bit workstation? Make sure your Project property Run64BitRuntime is False.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Help with VB Script for Sending Mail in SSIS

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Simple Trigger causing deadlock problem

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Unzip error through Excute process task

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: I need to download SSIS in my system

    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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Help with VB Script for Sending Mail in SSIS

    :ermm: Did you try the code PMwar posted?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Simple Trigger causing deadlock problem

    Can you post the deadlock graph?

    If you do not already have one captured enable trace flag 1222 and then one occurs again you can retrieve it from the SQL Error...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to set limited access to certain database tables?

    david.ostrander (2/13/2013)


    Hello -

    Developers at the company I work for want to access one of our databases to create an iPad app for entering your timecard. I have a copy...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 1,981 through 1,995 (of 7,164 total)