Forum Replies Created

Viewing 15 posts - 7,621 through 7,635 (of 8,753 total)

  • RE: Get next 2 weeks

    Daniel Matthee (8/2/2014)


    Please give your feeling about this method

    Although your code works fine, it wouldn't be my first choice as if the OP could change the schema, normalizing the data...

  • RE: Update row Beginning Balance with Prev Row Trial_Balance

    jameslauf (8/1/2014)


    Fixed my CODE and attaching Excel sheet to show desired output. see column N, O, P for results.

    Looking at the expected results prompts few questions:

    😎

    1. Is this dataset for...

  • RE: Get next primary key without identity

    Just a quick thought on the problem, why not use the ROWLOCK hint?

    To try it out, run the create script first and then the Update and the Select code...

  • RE: Trouble using proxy to run SSIS pacakage

    Elizabeth.Block (8/1/2014)


    I'm sorry, I don't know what you mean. Can you give me more information?

    Unfortunately I do not have BIDS 2K8 at hand so I'm going by my gay cell...

  • RE: SSIS - Dynamic XML Configuration File Path while running the Package

    windows_mss (8/1/2014)


    I'm using VS 2008 BIDS.

    No option to do dynamic file config from within the package then, either dynamically modified/created package or database configuration are your best bets. If you...

  • RE: Trouble using proxy to run SSIS pacakage

    Quick thought, what are the security properties of the package? Have you tried initiating the download from the application server using the package runtime credentials?

    😎

  • RE: Trace Updated records

    Using a trigger is probably the most straight forward approach, if you add a table holding the primary key value and a date, then you can use the output clause...

  • RE: SSIS - Dynamic XML Configuration File Path while running the Package

    windows_mss (8/1/2014)


    Hi,

    I have done with the SSIS Package and it's working as expected in my local machine, I have one problem is that how I can give my XML configuration...

  • RE: Cannot be perform write operation in database sql server 2008 r2

    As Lynn said, give us something to work with! My guess is that Grant is dead on, just in case, check free space on all relative volumes, auto growth limits/settings,...

  • RE: Adding unique int key using max

    tshad (8/1/2014)


    That worked fine.

    Not sure what this means:

    ROW_NUMBER() OVER (ORDER BY (SELECT NULL))

    How does that work?

    This adds an incremental number to the output, by stating (SELECT NULL), one indicates that...

  • RE: handle resultset in SP

    The code below demonstrates how to use output parameters in a stored procedure

    😎

    CREATE PROCEDURE dbo.WasInsertSuccessfulQuestionMark

    (

    @ValueToInsert INT

    ,@ThisTellsMeIfSuccessful INT OUTPUT

    )

    AS

    /*

    usage

    ...

  • RE: Update is Slow in SQL server 2014

    Quick question, do you need assistance providing the necessary information.

    😎

  • RE: SQL - case statement

    ScottPletcher (8/1/2014)


    If the table may or may not exist, you'll have to make references to that table only in dynamic SQL. Otherwise, if the code runs and the table...

  • RE: SSIS XML import

    Just throwing in my 2 cents, my preferred way is to use SSIS to import the XML into a staging table and shred it with XQuery into the destination tables....

  • RE: Migration from SQL Server 2012 to Oracle 11g

    Out of curiosity, why 11g, that's quite an old horse? BTW, don't know of any automatic tools for the job, normally is scripting rebuilding, rewriting and transferring kind of a...

Viewing 15 posts - 7,621 through 7,635 (of 8,753 total)