Forum Replies Created

Viewing 15 posts - 39,031 through 39,045 (of 49,571 total)

  • RE: Cannot attach a database in STANDBY mode

    Eric Butler (5/19/2009)


    I can find references in BOL that lead me to believe that it is possible to attach a READ-ONLY database.

    Example, under CREATE DATABASE ...

    Therefore, when you...

  • RE: sql profiler

    Not as far as I'm aware.

    In fact, it's a reasonably well known 'trick' to add "--password" to the end of a query to stop profiler from showing the code for...

  • RE: Cannot attach a database in STANDBY mode

    Eric Butler (5/19/2009)


    I have seen this posted numerous times but I have not seen a solution for my problem.

    My ultimate goal is to:

    1 - detach a log-shipped database (databaseA) which...

  • RE: DATA_PURITY

    Tim Walker (5/19/2009)


    The DATA_PURITY option just performs more limited checks.

    DATA_PURITY

    Causes DBCC CHECKDB to check the database for column values that are not valid or out-of-range. For example, DBCC CHECKDB detects...

  • RE: Activity on SQL results in a number of big temp files

    What are the names of those files?

    SQL wouldn't be writing to that directory unless something was configured to write there.

  • RE: How to restore

    Lynn Pettis (5/19/2009)


    You indicated in your original post (I belieive) that you are using SQL Server Express? I don't think you will be able to access the database. ...

  • RE: What solution for 30 million users

    TheSQLGuru (5/19/2009)


    GilaMonster (5/19/2009)


    Chris (5/19/2009)


    Forgive me if I'm stating the obvious, but I suspect this was an interview question/homework assignment rather than a "real" problem.

    I almost hope it is.

    I wish it...

  • RE: What solution for 30 million users

    linhdkl (5/18/2009)


    and now i find the solution for this problems, it is using Partitioned Tables and Indexes.

    it's very very simple .... because I don't want anything more than a solution...

  • RE: What solution for 30 million users

    Chris (5/19/2009)


    Forgive me if I'm stating the obvious, but I suspect this was an interview question/homework assignment rather than a "real" problem.

    I almost hope it is.

  • RE: A severe error occurred on the current command

    Please run the following and post the full results.

    DBCC CHECKDB (< Database Name > ) WITH NO_INFOMSGS, ALL_ERRORMSGS

    Take a look at this article. http://www.sqlservercentral.com/articles/65804/

  • RE: Upgrade 2000 to 2008

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

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

  • RE: How to restore

    Does the SQL Server Service account have rights to the directory where the backup file is?

  • RE: Check DB MSDB

    OpenTran just looks for open transactions, but any connection, even if it's not running a query will prevent an exclusive DB lock.

    Why are you running checkDB with the TABLOCK option?...

  • RE: How to prepare the Execution Plan of a query

    You don't prepare the execution plan. When you run the query, SQL generates an exec plan as part of the execution.

    If you're trying to see the exec plan, there's...

  • RE: Count

    What reply are you waiting for?

    It sounds like you need to carry out a generic performance tuning exercise on your platform.

    I would concentrate on identifying the specific queries that are...

Viewing 15 posts - 39,031 through 39,045 (of 49,571 total)