Forum Replies Created

Viewing 15 posts - 751 through 765 (of 7,164 total)

  • RE: SSIS / SQL Agent Issue - Troubleshooting Proxy Account (SSIS 2012)

    It's impossible for me to know because I need a lot more info than can easily be provided on a forum, but you might be hitting a double-hop/fallback scenario.

    Theory: when...

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

  • RE: cost of clustered index insert is 100%

    The cost estimates of all operators within a query execution plan are supposed to add up to 100%. If you're inserting a row then it should be natural to accept...

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

  • RE: Synonyms 1

    Never gave it a second thought but figured deferred name resolution should be in play during synonym creation. Thanks for the question.

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

  • RE: Problem with html table

    Try casting all your string literals to NVARCHAR(MAX) BEFORE they are concatenated. The data type is likely being assumed to be NVARCHAR(4000) during concatenation because it is not specified.

    Like...

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

  • RE: why don't we have two clustered index in a table?

    Here is a great place to start learning about indexes in SQL Server, from the beginning:

    Stairway to SQL Server Indexes: Level 1, Introduction to Indexes[/url]

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

  • RE: Need help with SSIS 2008R2 methods for extracting from RESTful API

    In theory a Script Component used in a Data Flow Task could work for you.

    Some links that may help get you started:

    Here is one that demos using a Script Component...

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

  • RE: Excecute process Task for executing a bat file

    Does your bat file actually contain a call like this?

    [font="Courier New"]java -jar E:\DH\Work\Simmetrics.jar %1 %2[/font]

    If so, then %1 and %2 will take their values from parameters passed to the bat...

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

  • RE: export table

    Nita Reddy (8/18/2014)


    I want to export one table but text contains ',' so can I use double " ? I don't see option when I select delimiter how should I...

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

  • RE: Retrieving all error messages generated by a command

    Gotta love their honesty 😛

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

  • RE: Bulk Insert

    Attached to this post is a simple SSIS Package * that will load your file to (a slightly modified version of) your POMaster table. I think you will need some...

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

  • RE: Lock Escalation in Sql Server 2014

    skavijay (9/5/2014)


    Hi

    Thank you for reply.

    So the table still be part of transaction and dead lock might occur is that what would you say even after disabling it?

    Which feature or...

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

  • RE: Using the Script Task in SSIS to Process Data Files When They Arrive

    SanPoke (9/5/2014)


    Thank you for your reply.

    I set the "WatcherInputTimeoutAsWarning" = True and set the "WatcherInputTimeoutSeconds" = 10.

    I have a FOREACH Loop to iterate through my "DatafileInfo" table. That FOREACH...

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

  • RE: Using the Script Task in SSIS to Process Data Files When They Arrive

    SanPoke (9/3/2014)


    I'm learning SSIS and I have been trying to use SSIS to move files from different source locations to different destination locations. The files in each source location...

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

  • RE: Using the WMI Event Watcher Task in SSIS to Process Data Files

    bart.de.koning (9/1/2014)


    good Article,

    I do not think the WMI Event handler is very reliable. I had it working for a remote UNC Fileshare but it often stopped listening without a reason....

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

  • RE: SSIS Job needs to run every 15 minutes for 8 hours to check for existance of a record in a Table for the Current Date

    In the case of Oracle being the target I would go with option 2 and avoid introducing the use of OPENQUERY.

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

Viewing 15 posts - 751 through 765 (of 7,164 total)