Forum Replies Created

Viewing 15 posts - 6,211 through 6,225 (of 7,501 total)

  • RE: 2005 Installation Problem

    if you are using the GUI, you have an option to install a new instance (so not upgrating the existing instance of sql2000)

  • RE: progress

    maybe just some CPR

    split the updatequery in chunks so it does not lockout the whole of the table (unless you realy need the...

  • RE: add a role to all databases?

    after you've added the roll to all existing user-db, also add it to model database.

    that database is used (copied) to create every new db !

     

  • RE: Odd Behaviour

    If you're going to populate the tables , do you use table hints (tablock) ?

    This may avoid all the rowlevel locking overhead you're suffering.

    Offcourse, you need to be the only active...

  • RE: Warning: unable to allocate ''''min server memory''''

    Is this a dedicated SQLServer server ?

    If not, check out the amount of ram used by other applications. (With your settings, they shouldn't consume more than 1Gb ! )

    Because you've...

  • RE: Identify SQL Server 2000 List of Timeouts

    a timeout is a client-side setting.

    it is something the client decides and handles !

  • RE: Odd Behaviour

    run sql-profiler during your rebuild.

    Maybe it shows conflicts or ongoing queries of applications (wich you didn't expect to take that long)

  • RE: Warning: unable to allocate ''''min server memory''''

    if your server has less then 4 Gb ram, AWE is overhead.

    Use the /3gb switch and that should do just fine as long as you stay under 3gb for each...

  • RE: Tempdb log full

    we've all started as "just a lowly developer" ... it take a hunter to know a hunter

    probably your tempdb needs to be bigger...

  • RE: Dreadlocks - a new haircut for your database

    also start traces 1204 and 3605 for all sessions (and add -T1204 and -T3605 to the startup parameters of your sqlserver)

    They provide deadlockinfo in your sqlserver-log-files.

    - Setting deadlock_priority to low...

  • RE: Dreadlocks - a new haircut for your database

    - check the datatypes of the parameters provided by your application.

    You'll be able to avoid index-scans, if you use the correct datatype (as defined for the column of you table).

    -...

  • RE: Has anyone tried creating sp_ or fn_ in master on 2005 yet?

    still works the same way, as long as you don't use dmv's.

    Even better, if this standard date conversion is only calculation or formatting, you may want to take a quick...

  • RE: This would be a cool feature...

    you could use windows authentication in the dts-connection-objects, and only provide the needed rights on your prod-servers to the service accounts that runs sql-agent (so it starts the dtsrun.exe)

     

  • RE: Trigger in SQL2k causing ASP.NET web page to timeout, help

    if your processing does not need to be executed online-realtime, only execute it online-neartime.

    have your update-trigger raise an error (nonblocking, but logged) and define an alert for it , so...

  • RE: Remote SQL trace causing network slowness

    it's not because your queries slow down, that your network slows it down !

    For sqlserver it depends wich trace-flags are activated for the trace.

    e.g. do you only capture sqltext or...

Viewing 15 posts - 6,211 through 6,225 (of 7,501 total)