Forum Replies Created

Viewing 15 posts - 45,781 through 45,795 (of 49,571 total)

  • RE: Cannot delete table

    Carl Federl (7/11/2008)


    Although tables that begin with a # are normally temporary tables, it is possible to create a permanent table by enclosing the name with [ and ]

    create table...

  • RE: Cluster consuming more memory

    Check what perfmon says.

    Process:Working set (and select sqlservr.exe)

    Also check the total and target server memory (I think that's under SQL Server memory manager. It's under one of the SQL...

  • RE: Should Varchar Columns be last in a table?

    Makes no difference. The order you specify the columns just determines the columnIDs, no guarantees that the columns will actually be stored in that order in the data pages.

  • RE: logon failed error on error log

    Set up profiler, monitor failed logins and make sure you get the hostname and applicationname columns. That should show you where the logins are coming from.

  • RE: Cannot delete table

    Dugi (7/11/2008)


    It seems that you should close the conn, but also try to restart all services on the Instance where you are working!

    :w00t:

    That's a tad extreme to get rid of...

  • RE: Coming In August

    Michael Valentine Jones (7/11/2008)


    They didn't really announce that they are releasing SQL Server 2008. They announced that they are adding it to the price list.

    True, but the TPC benchmark...

  • RE: Coming In August

    Jeff Moden (7/11/2008)


    Heh... I had the feeling you'd say that... I think all of that is more for formatting for folks that can't get over the 19000101 meaningless date because...

  • RE: Truncate Log on Checkpoint

    William (7/11/2008)


    K. Brian,

    So based on what you've quoted from BOL would you say that those conditions when a Checkpoint occurs are not RECOVERY MODEL specific so that my using a...

  • RE: CPU 100% Lots of Loks. tempdb.dbo.#TMP_CLIENTS_PROCESSING

    Is the job still running?

    What does that proc do?

  • RE: Deadlocks

    David Griffiths (7/11/2008)


    So my point remains: some deadlocks are unavoidable because they are inherent in the design of SQL Server.

    Could you post some code for the update and the select...

  • RE: Cannot delete table

    If you did not create the temp table, you cannot drop it. Only the connection that created the temp table can drop it.

    The table will be deleted when it goes...

  • RE: DBCC commands

    There are examples of how to use it in Books Online.

    CheckDB generates a lot of info messages as it runs. If it finds any errors it will tell you. As...

  • RE: When does SQL Server execute a Checkpoint

    Michael Earl (7/11/2008)


    Ok, I have to ask, what possible method of tracking changes could you be using that would be impacted by when a checkpoint happens?

    Reading the active portion of...

  • RE: Indexes & FillFactor

    Perry Whittle (7/11/2008)


    GilaMonster (7/11/2008)


    The related effect of the fill factor is to increase the number of pages in the index.

    and consequently the overall file size.

    As well as the depth of...

  • RE: Invalid syntex near 'se

    All it means is that the statement in question is not valid SQL. It could be anything

Viewing 15 posts - 45,781 through 45,795 (of 49,571 total)