Forum Replies Created

Viewing 15 posts - 39,886 through 39,900 (of 49,571 total)

  • RE: Falling Over our Assumptions

    Robert Frasca (4/8/2009)


    Actually, if memory serves, in SQL Server 2005, table variables are stored in TempDB as well. In SQL Server 2000 they were stored in RAM. There's...

  • RE: Microsoft SQL Server v 8.00.761

    Lynn Pettis (4/8/2009)


    It may be possible to download and install the SQL Server Express management tools (Gail, am I right here) and use those from a remote PC to make...

  • RE: Reference 'Deleted' table: Dynamic SQL

    rodney.williams (4/8/2009)


    Msg 15416, Level 16, State 1, Procedure sp_dbcmptlevel, Line 92

    Usage: sp_dbcmptlevel [dbname [, compatibilitylevel]]

    Valid values of database compatibility level are 60, 65, 70, or 80.

    Why might this be?

    Because...

  • RE: Falling Over our Assumptions

    Jack Corbett (4/8/2009)


    Just put everyone in db_datareader role. That's good enough security.

    Don't you mean sysadmin?

  • RE: Falling Over our Assumptions

    bob.willsie (4/8/2009)


    Perhaps people fell into that trap because some programmers don't clean up after themselves. I've come across code that continually created random named temp tables rather than creating...

  • RE: An inconsistency was detected during an internal operation

    Ok, so no database corruption. That's good. Just to be sure, you ran that on the database that has an ID of 10?

    This may be a transient condition that doesn't...

  • RE: Microsoft SQL Server v 8.00.761

    Where did you purchase the computer from? It's really, really odd to buy a machine that has SQL pre-loaded. Especially if you didn't get the installation materials

    This is going to...

  • RE: Microsoft SQL Server v 8.00.761

    Enterprise manager is the SQL management tool. If installed, it'll be somewhere on the start menu, probably under Microsoft SQL Server.

    Is there anyone there who knows anything about SQL? This...

  • RE: Are the posted questions getting worse?

    It was another thread, it was mid-late Jan. I remember because I was working on a very similar problem at the time.

    Unfortunately, that's all I remember.

  • RE: Begin Transaction question

    Mayank Khatri (4/8/2009)


    Above transaction will result in Deadlocks.

    Why do you say that? Locks and blocking it will definitely cause, but with only one update, it's unlikely to deadlock, unless...

  • RE: An inconsistency was detected during an internal operation

    Please run checkDB on that database and post any errors here.

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

    You may also want to take a look at this article....

  • RE: Begin Transaction question

    The transactions will never be committed, the locks those updates take will be held until the connection is closed. When the connection is closed, because there has been no commit...

  • RE: xp_cmdshell

    You can't delete threads, don't worry about it. If it happens again, just post into one of the threads a note that it's a duplicate and where the replies should...

  • RE: Find last occurence of a character within a string

    Quickest way is to reverse the string and look for the first occurrence.

    DECLARE @StringA varchar(100), @pos int

    SET @stringA = 'DirectoryA\DirectoryB\FileName'

    -- Where is the last '\'?

    SET @pos = LEN(@StringA) -...

Viewing 15 posts - 39,886 through 39,900 (of 49,571 total)