Forum Replies Created

Viewing 15 posts - 43,381 through 43,395 (of 49,571 total)

  • RE: Tune Query

    Mike Levan (11/3/2008)


    we have db's with same schema in the same instance, and this query is ran in all the db's and they run very gud except this db. what...

  • RE: transaction logs

    terryj30 (11/4/2008)


    try this

    1) dbcc opentran(dbname) - this will show the oldest open transaction

    2) Kill this process

    3) backup log dbname with no_log

    4) use dbname

    5) dbcc...

  • RE: Valid and Invalid(unparsable) XML

    Please don't cross post. It just wastes people's time and fragments replies.

    No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic595934-338-1.aspx

  • RE: Exercise to practise SQL

    J (11/3/2008)


    This is getting ridiculous.

    An author proposes one of his books and someone expects to have it for free ?

    And expects it to be sent to him at the author's...

  • RE: DBCC SHOWCONTIG

    Your index is very, very slightly fragmented (logical scan fragmentation. Lower is better) and the pages are 90% full (Avg. Page Density. Close to 100% is usually better)

    All in all,...

  • RE: Backup Strategy Plan....

    los (11/3/2008)


    Given that each subsequent diff backup contains all the changes since the last full backup, is it necessary to keep the previous diff backups?

    It's a good idea. What...

  • RE: how to prevent a database from being attached?

    muhammed_annaggar (11/3/2008)


    the problem is the permissions are removed when attaching a database to an other server.

    Muhammad

    Which permissions?

    SQL's permissions work at 2 levels. There are the database-level permissions which are related...

  • RE: Oracle SQL*Plus to T-SQL

    Top 1 not necessary in an exists. Exists just checks if there's any rows or not, it doesn't care how many rows. Remove the top 1 and the behaviour will...

  • RE: Checkpoint frequency: is it possible to configure at database level?

    Marios Philippopoulos (11/3/2008)


    Yes, we have collected these perfmon counters, and from the values it appears there is indeed latency in the PROD-SAN drive.

    Surprise surprise (not). Is it sharing drives with...

  • RE: How can I limit sysadmin permissions ?

    mduffy (11/3/2008)


    Problem - for the dbm app to work, their sql server login must have the sysadmin role, which gives them power-of-god over all other databases including their own. ...

  • RE: Database Mirroring

    2GB is tiny for a database. I've mirrored a 600GB one without issues (on a LAN). If you're planning to do it over a WAN, watch out. Other thing to...

  • RE: how to prevent a database from being attached?

    muhammed_annaggar (11/3/2008)


    OK, thanks a lot Karl

    Do you know what is happen internally in the server when a user attaches a database, i.e. is there any procedures called or any thing...

  • RE: Querying the last 100 entered records

    To get the latest 100 rows, you need some column that stores the date that the row was inserted, or you need an identity column (or a uniquidentifier with a...

  • RE: SQL 2005 STD EDITION MEMORY & processor config PROBLEM

    Please don't start a new thread for an existing problem. People who encounter it without reading the original won't have a clue what's going on.

    What's the setup, what's the...

  • RE: how to prevent a database from being attached?

    Consider Transparent Database Encryption in SQL 2008. It's not username/password, but it will prevent a database from been attached/restored unless the appropriate certificate is on the destination server.

    Now, if someone...

Viewing 15 posts - 43,381 through 43,395 (of 49,571 total)