Forum Replies Created

Viewing 15 posts - 43,351 through 43,365 (of 49,571 total)

  • RE: Query is in suspended mode

    balbirsinghsodhi (11/4/2008)


    There are scans but cost is 0%, do you think we should consider those too.

    Yes, because they are still scans, ie a read of all the pages in...

  • RE: transaction logs

    sayfrend (11/4/2008)


    What is the reason to kill the open Transaction. Correct me if I am wrong, When SQL Server takes Transactional log backup, it removes all the inactive transactions...

  • RE: Query is in suspended mode

    What do you mean, you don't see lots of scans? Are you looking at the same execution plan I am? See attached. There are only two seeks in the entire...

  • RE: Database in recovery mode

    Have a look in the error log. What does it say about that database?

  • RE: Keeping logs under control on large database copy

    I wouldn't bother creating a backup device for a once-off backup, and if you run that more than once, you may get an error saying the backup device already exists.

    Just...

  • RE: The Difference between Using Assignment & Aliases

    No. Literal text hasn't been changed and your first query would throw an error saying no such column as SomeText

    SELECT tbl.Column AS [MyColumn], 'SomeText' AS [LiteralText]

    FROM MyTable AS tbl

    The []...

  • RE: Keeping logs under control on large database copy

    Once you've set it back to full, you'll have to take a full database backup or your backup software, which I assume does log backups, will fail.

  • RE: FK's...do they improve query performance

    Maybe. They're not indexes and as such they won't directly improve performance. They do give the optimiser more information about the data hence allowing it to produce better execution plans

  • RE: Replicated Database and transaction log size

    Fernando (11/4/2008)


    Since I started the log job, the size has not increased much. I just want to regain the space as the transaction log backup as well asn the nightly...

  • RE: Differential backup issue

    Mani (11/4/2008)


    This differential backup cannot be restored because the database has not been restored to the correct earlier state. (Microsoft.SqlServer.Smo)

    That's saying that the 6am diff is not based off the...

  • RE: Keeping logs under control on large database copy

    You can't disable logging. It's not an optional component of the database.

    What you can do is set the database you're doing the transfer into simple recovery. Since it's not a...

  • RE: Replicated Database and transaction log size

    You can, but unless you figure out why the log is growing, it's just going to get back to that size in time.

    What recovery model?

    If full or bulk-logged, how often...

  • RE: Managing Transaction Logs

    Actually, I've just finished writing a short 'chapter' for a book. 😀

  • RE: Query is in suspended mode

    balbirsinghsodhi (11/4/2008)


    SQL Guru.. I know this query is not good for optimizer so I did modify and used in a following manner but still going in a suspended mode and...

  • RE: query runs much faster with windows authentication

    KATHLEEN Y ZHANG (11/4/2008)


    When I run it using my windows account, I am system admin, the sql account is not a sysadmin, but when the developer ran it using her...

Viewing 15 posts - 43,351 through 43,365 (of 49,571 total)