Forum Replies Created

Viewing 15 posts - 46 through 60 (of 81 total)

  • RE: Maintenace Fail [ incorrect settings: ''''ARITHABORT'''']

    Bhavin,

    If you took the time to run sp_help, take the time to post the results.  As indicated by the error message you submitted, it *could* be an issue with computed...

    Regards,
    Rubes

  • RE: cannot move log file of db

    Why not just log on to the console and physically copy it?

    I'm a little puzzled on what actually happened.  How did the log file get to a different location to...

    Regards,
    Rubes

  • RE: sqllib error: sysdatabases in SQL server instance is empty

    Interesting.  I just ran across this issue today.

    We had a 3rd party backup application installed.  It was running under an account that had select permissions on sys.databases but not sys.sysaltfiles. ...

    Regards,
    Rubes

  • RE: Finding Startup Procedures

    I think this should work in both 2000 and 2005.

     

    select

    name, objectproperty(id, 'ExecIsStartup'

    Regards,
    Rubes

  • RE: Fillfactor at a column level ?

    Yes, I think you get it.

    I think fillfactor is one of those areas where you can definitely answer with "it depends".  Low fillfactors avoid page splits and fragmentation.  Higher fillfactors take up less...

    Regards,
    Rubes

  • RE: Fillfactor at a column level ?

    Billy,

    I think your question is... "Under what circumstances should a table have different fillfactors for different indexes?"  For example, 100% FF on primary key pkid, 90% FF on FirstName, 50%...

    Regards,
    Rubes

  • RE: Disappearing table/columns kind of...

    Jim,

    There may be nothing wrong with your database or any of its objects.  Instead, it may be that the application code is real buggy. 

    Your comment that the app throws...

    Regards,
    Rubes

  • RE: Ambiguous column name error

    Hmmm... I did some testing and found some interesting behavior.  My conclusion is...

    In 2000, the ORDER BY field is verified against all fields in all tables in the FROM clause.  It...

    Regards,
    Rubes

  • RE: slow server

    Any change in performance since the original post?  Is it still slow?... and if not how long did it take to recover?

    Also, what are the specs on the system, including...

    Regards,
    Rubes

  • RE: Question about maintaining indexes

    This reindexes anything with fragmentation over 10%.

    set

    nocount on

    declare

    @command varchar(1000)

    declare

    ...

    Regards,
    Rubes

  • RE: Question about maintaining indexes

    Not to beat a dead horse, but I have had the same issue as well.  For that reason I've stuck to a reindexing script using DBCC SHOWCONTIG.

    Regards,
    Rubes

  • RE: (re) Create DB overwrite existing files

    Your question is a little vague.  You can do a restore over an existing database.  Check out books online for RESTORE DATABASE.

    Regards,
    Rubes

  • RE: slow server

    I am assuming that you are running SQL 2005.  See http://support.microsoft.com/kb/917828.  There are certain operations in 2005 that clear the procedure cache.  Dropping a database is one of them. ...

    Regards,
    Rubes

  • RE: Maintenace Fail [ incorrect settings: ''''ARITHABORT'''']

    Run an sp_help on CaseNum and post the results here.

    Regards,
    Rubes

  • RE: Maintenace Fail [ incorrect settings: ''''ARITHABORT'''']

    Based upon the error, I would look at the CaseNum table.  Is it actually an indexed view instead of a table?  Does an indexed view reference the table?  Are there computed columns...

    Regards,
    Rubes

Viewing 15 posts - 46 through 60 (of 81 total)