Viewing 15 posts - 6,211 through 6,225 (of 7,501 total)
if you are using the GUI, you have an option to install a new instance (so not upgrating the existing instance of sql2000)
June 27, 2006 at 7:52 am
maybe just some CPR ![]()
split the updatequery in chunks so it does not lockout the whole of the table (unless you realy need the...
June 23, 2006 at 12:50 pm
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 !
June 23, 2006 at 12:38 pm
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...
June 23, 2006 at 1:15 am
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...
June 22, 2006 at 11:49 pm
a timeout is a client-side setting.
it is something the client decides and handles !
June 22, 2006 at 1:08 pm
run sql-profiler during your rebuild.
Maybe it shows conflicts or ongoing queries of applications (wich you didn't expect to take that long)
June 22, 2006 at 1:07 pm
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...
June 22, 2006 at 1:02 pm
we've all started as "just a lowly developer" ... it take a hunter to know a hunter ![]()
probably your tempdb needs to be bigger...
June 22, 2006 at 12:58 pm
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...
June 20, 2006 at 11:55 pm
- 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).
-...
June 20, 2006 at 5:50 am
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...
June 20, 2006 at 5:35 am
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)
June 20, 2006 at 12:38 am
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...
June 20, 2006 at 12:31 am
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...
June 20, 2006 at 12:23 am
Viewing 15 posts - 6,211 through 6,225 (of 7,501 total)