Forum Replies Created

Viewing 15 posts - 41,896 through 41,910 (of 49,571 total)

  • RE: Missing data rows?

    There is no config switch that treats a real table as if it were a temp. If you're doing a select into a permanent table, it's a permanent table.

    Are there...

  • RE: LOCK problem

    sampathsoft (1/8/2009)


    There are no any sql mechanism for it.

    Excuse me?

    SQL absolutely has the ability to lock rows been modified. It's an essential part of a relational database, isolation, the requirement...

  • RE: Problem with temp tables not being dropped

    T D McCallie (1/7/2009)


    This bug ( http://support.microsoft.com/kb/947204/ ) is resolved in SQL/Server 2005 CU6 ( http://support.microsoft.com/kb/946608/ ).

    That's internal objects (worktables, table spools, index spools, etc), not temp tables

  • RE: Problem with temp tables not being dropped

    Jack Corbett (1/7/2009)


    GilaMonster (1/7/2009)


    SQL 2005 caches the structure of frequently used temp tables. It's an optimisation to reduce the impact of frequently creating and dropping the same table. That may...

  • RE: LOCK problem

    sampathsoft (1/8/2009)


    i'm making transaction base software using sql 2000 . In my program i want to stop insert,update and delete when another user modifying same record set at same...

  • RE: msdb sysindexes -repair

    Can you please post exactly what you get by running the following:

    DBCC CHECKDB('msdb') WITH NO_INFOMSGS, ALL_ERRORMSGS

  • RE: to INCLUDE or not to INCLUDE

    winston Smith (1/8/2009)


    the actual clustered index/heap never needs to be accessed. am i correct in this idea?

    Correct, all the info is in the index.

    if this is the only index on...

  • RE: SQL Server is stoped unexpectedly??????

    What does the error log say? It should have some info about the shutdown, and it will have a lot of info about why the service won't start up.

  • RE: How do I solve 2005 workgroup deadlocks

    Turn traceflag 1222 on (DBCC TRACEON (1222,-1))

    Any deadlocks that occur will have the deadlock graph written to the error log. The deadlock graph will have enough information to locate...

  • RE: Need a tables column listing with keys

    sys.tables, sys.columns, sys.foreign_keys, sys.foreign_key_columns, sys.indexes where is_primary_key=1, sys.index_columns

    It's a nasty, very large query, but those are the tables needed. If you get stuck, post the query that you have.

    One other...

  • RE: Is it possible to move database from sql server 2005 to server 2000 ..??

    To add on to what Barry said, there is no way to take a backup of a 2005 database and restore it on 2000, nor is it possible to detach...

  • RE: Bookmark Lookup

    Peter D (1/7/2009)


    It may be hard to change this one as there are many jobs and Online processing using the tables and current indexes. Not much was...

  • RE: urgent query

    Lowell (1/7/2009)


    if you had read the chapter or listened to the lecture in class....

    Yeah, probably.

  • RE: Performance issues with SQL Server Stored Procedures

    Eeep. That's a lot of execution plans.

    I'm not looking at all of them. That'll take hours.

    A few highlights:

    Exec plan 3:

    The country table needs an index. CountryID INCLUDE name, or,...

  • RE: sql query

    Lynn Pettis (1/7/2009)


    GilaMonster (1/7/2009)


    Lynn Pettis (1/7/2009)


    hmmm, a question I sense here but not sure what you want.

    Are you channelling Yoda again?

    Sorry, caught a couple of the Star Wars movies on...

Viewing 15 posts - 41,896 through 41,910 (of 49,571 total)