Forum Replies Created

Viewing 15 posts - 106 through 120 (of 153 total)

  • RE: Significant Performance Issue

    We had a similar problem with a part of our program. Other programs had no problem. Setting the database compatibility level to 70 solved it.

    Maybe the optimizer for...

  • RE: Copying a database

    David,

    how do you make sure that the sid is the same on the two machines?

    I just adapt the user sids with sp_change_users_login

  • RE: Backup & Shrink Datebase, Logs

    I cannot think of a good reason tho shrink databases and logs every night. The growth back on the next day only costs extra performance.

    If the trans logs fill...

  • RE: Slow on query

    The sqlserver version for dbms_utility.analyze_schema is sp_updatestats. You do not need parameters. Alamir's suggestion of autostatistics does it autmatically after some number of mutations.

  • RE: Backup does not complete

    I once accidentally did run transaction log backup en database backup at the same time and had no problems.

    Have you tried to log the job?

  • RE: SQLserveragent SQLServer Error: 1115

    Thanks for the advice

    The NT administrator said he had not changed the permissions, but he had to do a forced reboot, because something did not stop on the server...

  • RE: SQL Server 2k Not Supporting All Arabic Chars

    I have no experience whith arabic characters, but my experience with diacritic characters is that a question mark means that the client cannot display the character.

  • RE: Speed up the Performance of SQL SERVER

    My guess is that you do not have a resources problem, but a locking problem. Your users are waiting on each other.

    Are you sure about the nolock option?

    Are tables...

  • RE: Virus protection software for SQL Server

    We do, but that is because I do not have complete control over the servers.

    There is certainly a performance issue if the databases are scanned. If files with .mdf...

  • RE: Can anyone explain these error log entries

    This is weird. I never saw this before but had the same error yesterday. There was also a diskspace error and the server did nothing.

    Like you not AWE...

  • RE: SQL Worm - Are we lazy

    Did anybody try the new SQL Critical Update utility?

    You can find it at

    http://www.microsoft.com/sql/downloads/securitytools.asp

    If it works we can be lazy.

    Joachim.

  • RE: SQL 2000 SP3 is live!

    quote:


    Can't say I am thrilled about the change to sp_change_users_login--requirement for @password. It is good thing closing potential security holes, though!

  • RE: [?] dbcc inputbuffer

    In SP 3 there is a new function fn_get_sql, that can read more than 255 characters.

    Here an example from the sp3readme.htm

    DECLARE @Handle binary(20)

    SELECT @Handle = sql_handle FROM sysprocesses WHERE spid...

  • RE: SQL.LOG

    da

    Edited by - joachim.verhagen on 12/16/2002 09:37:07 AM

  • RE: transition from Oracle world to MS Sql Server

    I do not know an online resource, but the SQLServer 2000 Resource kit has a chapter (about 1000 pages) on SQLServer equivalents of Oracle features.

    As for Database link, try...

Viewing 15 posts - 106 through 120 (of 153 total)