Forum Replies Created

Viewing 15 posts - 7,951 through 7,965 (of 11,678 total)

  • RE: How to get data from orcale

    Eric M Russell (2/14/2012)


    The full Oracle client is a monster, and server admins are sometimes reluctant about intalling it. If all you need is connectivity for a linked server connection...

  • RE: Order by While inserting

    Matt Miller (#4) (2/14/2012)


    ACtually - using an ORDER BY during the insert would guarantee the ID's be generated in the correct order. Conor Cunningham confirmed that to be true...

  • RE: Order by While inserting

    Cadavre (2/14/2012)


    Look at his "ID" column. You'll see that he essentially wanted to order that by the "Name", rather than using what was already stored in [Temp#1].

    Well, the OP...

  • RE: Dynamic connections, transactions and RetainSameConnection

    Rachel Byford (2/14/2012)


    I have now got it working nicely using a sub-package to do the work on each pass through the loop.

    If you can suggest a better way, however, I'm...

  • RE: SQL Jobs

    chandrika.r 91171 (2/14/2012)


    Sorry for the Confusion

    I am getting a time out issue when I am running my SSIS package through SQL Job. In the SSIS package I have a simple...

  • RE: Order by While inserting

    ID is an identity column, you shouldn't try to force it into a specific order.

    Furthermore, it is useless to specify an ORDER BY on an INSERT.

    ORDER BY Clause (Transact-SQL)

    When used...

  • RE: A Guide to Installing SQL Server 2008 R2 Reporting Services

    SQLPhil (2/14/2012)


    Other suggestions might be installing and configuring a scale-out deployment.

    Indeed. For example, the databases on one server, the webservices on another web server and so on...

  • RE: A Guide to Installing SQL Server 2008 R2 Reporting Services

    This article doesn't tell me much more than MSDN.

    I would have liked a more in-depth discussion on some configuration topics, such as the service account (using a built-in one -...

  • RE: EXECUTE

    Hugo Kornelis (2/14/2012)

    However, it is not true that ;WITH will cause errors when all statements are semicolon terminated. There is no limit to how many semicolons you use and where...

  • RE: A Valentine for the Community

    And a happy valentine for you as well.

    Glad to be part of this community.

  • RE: EXECUTE

    kll 51891 (2/14/2012)


    I would have expected it to fail due to no newline or semicolon.

    But it were not so

    Anywhere I can find specific rules about when to use and...

  • RE: drop database statement error on t-sql

    ladyblue1075 (2/14/2012)


    Wow! It works!

    Thanks to Koen Verbeeck!!!

    No problem, glad to help.

    Maybe you could verify the backup first before dropping the database, just to make sure you don't run into...

  • RE: EXECUTE

    danielfountain (2/14/2012)


    But surely without running the code there would be no output :0)

    Indeed! :w00t:

    I'm missing the answer "after waiting for a few hours you eventually decide to go home..."

  • RE: drop database statement error on t-sql

    You need to create dynamic SQL for this using the EXEC statement (or sp_executeSQL).

    Your statement would become:

    CREATE PROCEDURE [dbo].[BackUpDatabase]

    @BackupFilePath VARCHAR(200) = 'C:\DbBackup\SQ2005\', -- path for backup db

    @DatabaseName VARCHAR(100) = 'DBTEST',...

  • RE: EXECUTE

    Great question, thanks Henrico.

    I stumbled across this issue a few times too many, so a real easy one for me 🙂

Viewing 15 posts - 7,951 through 7,965 (of 11,678 total)