Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 2,436 total)

  • RE: SQL Server 2000 named instances / TCPIP

    You do not mention if the 2 instances are on the same 'virtual' server or not. If they are on the same 'virtual' server then 'alias'ing and registry hacks are...

  • RE: consistency errors

    Before re-indexing I'd execute DBCC CHECKALLOC first ...

     

    My 'standard' DBCC 'triage' is:

        DBCC CHECKDB

        DBCC CHECKALLOC

        DBCC CHECKCATALOG

  • RE: recover from different server!

    also besides the forward slashes in the "FROM" clause ... "G:" (G colon) is not correct. A colon is not part of a valid UNC name either. If you are doing...

  • RE: Shrinking a database file accross filegroups

    noeld ... short, sweet and it'll work !!!

  • RE: DBCC SHOWCONTIG BOL Example

    Try searching for LogicalFrag in BOL, it responds with DBCC SHOWCONTIG. I believe it's example "E".

  • RE: Flat Files

    Habving just started Oracle DB support (oh about a year ago) I have some idea of what you are looking for from SQL2000 from an Oracle perspective. Unfortunately at present...

  • RE: How do you spell S-Q-L?

    Anything 'virtual' is something that appears to be there but really isn't.

    Oh, by the way, my spelling is not great but my pronunciations is usually on 'target' ...

    It's pronounced "squeal"...

  • RE: SQL Vs Windows Authentication

    The delay may be in ms but that is per hop taken and they are cumulative on initiasl login. Dependent on your network topology this can be significantly more than...

  • RE: Anyway to rollback a stored procedure to the previous version

    I just couldn't resist commenting on that since I'm a confirmed 'java junkie' ... Have a Great Day !

  • RE: AWE on a 4GB machine

    SQL Enterprise and better on a server with 4Gb or more RAM:

        boot.ini needs /3GB switch

        via sp_configure set your 'max server memory' to 3072 MB (3 Gb)

        (you may...

  • RE: Worrying Log Entries

    Access violations are not good. What SP are you on ? Could you upgrade to SQL2000 ? It's possible that you are being 'bit' by a fixable 'bug(s)'. Have you...

  • RE: Anyway to rollback a stored procedure to the previous version

    about "Note to self: Never work in DB before second cup of java has kicked in "

     

    I'm just curious what happens when you get...

  • RE: SQL Vs Windows Authentication

    Just a possible explanation on why WA seems slower ... First it's probably only slower on initial login to the server. I state this because once you are authenticated all...

  • RE: Create kill process role

    This should work. processadmin has KILL as a permission. Maybe you have not refreshed your EM. Try shutting ot down and relaunching it (I do not trust the 'refresh' function...

  • RE: MDF header in hex

    ... lest we forget the 'final' SQL script ...

     

        exec sp_update_resume

        go

        if @database_restore = "success"

            if @data_loss = "none"

                exec sp_kudos_to_dba

            else

                exec sp_distrubute_resume

                --exec sp_pack_up_desk

        else

              exec sp_distrubute_resume

               --exec...

Viewing 15 posts - 2,071 through 2,085 (of 2,436 total)