Viewing 15 posts - 1,111 through 1,125 (of 2,044 total)
Sql server,most other databases and recently Vista keep data in cache (empty memory=wasted memory) to operate faster by avoiding disk access. Thats why its memory usage continues to grow (in...
January 1, 2008 at 1:14 pm
Depending on frequency, you can create a linked server for it. The msaccess subforum probably holds the answer.
December 31, 2007 at 5:47 am
Dynamic queries good/bad : it depends.
Usually they give the same performance than stored procedures but lack some encapsulation. (since sql server will try to cache the plan)
For this goal, dynamic...
December 31, 2007 at 5:38 am
What is the serverpack level of win2000? Most recent windowsupdates installed?
December 31, 2007 at 5:32 am
Because the client usually dictates what the sorting will be (for a proper seperation of the data and its presentation). No need to sort it twice.
select ...
from myview
where ...
order by...
December 27, 2007 at 4:52 am
I got my replication issues fixed by reducing the batchsize from 500 to 100.
December 25, 2007 at 7:56 am
It is usually done by implementing/using a ntp-service (network time protocol)
December 24, 2007 at 10:37 am
you start the vbs script with wscript or cscript?
December 21, 2007 at 4:54 am
Why don't you use mobile/external harddisks? Backup at site, and send it over at certain intervals.
You can consider replication for critical data.
Do you have differential backups in place?
Are the backups...
December 20, 2007 at 12:26 pm
Autoshrink isn't a recommeded option. It locks the database for shrinking.
With simple mode, you don't have to worry about the database growing too big, because at the end it will...
December 20, 2007 at 12:20 pm
As soon you use AWE you have to set the memory to fixed size. I don't have the enterprise edition to test it out. It could be it can allocate...
December 19, 2007 at 2:36 pm
Also set the maximum/minimum memory to fixed. Likely dynamic is limited to 2GB.
December 19, 2007 at 8:57 am
Is this sql server 2000 standard edition (limited to 2GB)?
If you want sql server 2000 to use more memory you need the enterprise edition or higher.
Perhaps you can start the...
December 18, 2007 at 12:20 pm
sounds indeed like a CHECKPOINT (sudden spike)
December 18, 2007 at 12:03 pm
Are the client tools on their pc also updated to the server servicepack level?
server: sql server 2000 sp3 -> client enterprise manager sp3
server: sql server 2000 sp4 -> client enterprise...
December 18, 2007 at 11:57 am
Viewing 15 posts - 1,111 through 1,125 (of 2,044 total)