Forum Replies Created

Viewing 15 posts - 7,111 through 7,125 (of 18,923 total)

  • RE: temp table

    Assuming it's not a global temp table, then you'll have to kill the spid that holds the table alive.

    Once the connection closes, the temp table will self destruct.

  • RE: Data Everywhere - Step 3 in the Stairway to Reporting Services

    Hey Jessica, I've just been tasked to make all our reports work on iphones. Any hints on how I can accomplish this?

    The users will need to access an interface to...

  • RE: when delete command auto commits?

    Ian Scarlett (2/16/2011)


    Grant Fritchey (2/16/2011)


    but I think I'm right on this one if implicit transactions are on.

    I also thought that if you executed a procedure on a connection with implicit...

  • RE: when delete command auto commits?

    GilaMonster (2/16/2011)


    If implicit transactions are on, the transaction begins when the first statement/modification occurs (I'm not sure which) and commits when an explicit COMMIT TRANSACTION statement runs. All that implicit...

  • RE: how to select 90% records from a table?

    Lowell (2/16/2011)


    remember a TOP without order by doesn't make sense...

    to do the top 20 of the top 90%, it's just nested selects....

    select TOP 20 * FROM

    (

    SELECT TOP 90 PERCENT *...

  • RE: .NET Temporary Tables

    Exactly... simple way to solve the problem!

  • RE: .NET Temporary Tables

    Why can't you do all of the processing in 1 batch (create, populate, select, drop)?

  • RE: Dashboard style monitoring tools

    Paula-196779 (2/15/2011)


    I realise this but there seems to be a problem with SQL Server (known it would seem if you google around) where sometimes and as far as I can...

  • RE: DBCC updateUsage

    GilaMonster (2/14/2011)


    Ninja's_RGR'us (2/14/2011)


    But I'd still run checkdb TODAY on your latest backup.

    If that was the only error that the integrity check maintenance task picked up, then there's no need. That...

  • RE: DBCC updateUsage

    GilaMonster (2/14/2011)


    Rather run it during a maintenance window. That error's not critical, it doesn't have to be fixed immediately.

    Ok then, what she said (she's much better than I at this).

    But...

  • RE: DBCC updateUsage

    I'd go 1 step further. I'd run checkdb as soon as possible.

    There are errors missed in 2000 that are detected in 2005.

    Make sure you have a valid backup as...

  • RE: SQL Server Build Lists

    I don't see anything for sql 4, 5... would be a nice historical research!

    BTW congrats on the shortest article ever!

  • RE: Preventing usage of "SELECT *..."

    Geoff-577403 (2/13/2011)


    This can be done a lot easier with SQL 2008 Policy Management Feature.

    :smooooth:

    How?

  • RE: Very Complicate Query....

    rajesh-303966 (2/12/2011)


    Lutz,

    Is it possible to make the pos=1 and RtnSetid1 dynamic as

    By declaring variable value upto 6 for ex. x <= 6 posx and RtnSetidx likethat....

    Kindly help me on...

  • RE: SP4 on 2005 Standars edtition (32 bits)

    Rem70Rem (2/11/2011)


    Installing SP4 (RTM) on Microsoft SQL Server 2005 - 9.00.3282.00 (X64) the weekend in production

    Any last minutes information needed?

    And a backup restored to another server with checkdb run to...

Viewing 15 posts - 7,111 through 7,125 (of 18,923 total)