Viewing 15 posts - 1,156 through 1,170 (of 2,085 total)
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
Indeed, the select into is faster in the example
Select into: avg 1-2 seconds
Table 'Worktable'. Scan count 201, logical reads 6574, physical reads 0, read-ahead reads 0.
Table 'jbmTest'. Scan count 0,...
December 18, 2007 at 11:23 am
Can you modify the job to include some additional logging?
Like a ping/tracert log to a textfile before launching the small app?
December 15, 2007 at 3:16 pm
Odd, perhaps a change in the executionplan? You can see the actual plan in the query analyzer.
I guess count(*) or avg(*) give an index scan when min,max use index seek(should...
December 15, 2007 at 3:09 pm
The main problem SELECT INTO is that is locks sysobjects (especially in tempdb) when lots of procedures make use of temporary tables having to wait until the insert is finished....
December 15, 2007 at 3:04 pm
Viewing 15 posts - 1,156 through 1,170 (of 2,085 total)