When I look at resource usage, SQL Server does a lot of writes into tempdb
for some big queries.
I don't use temp tables or table variables or any writes, I execute only select statements of read-only database on that server.
So I wonder if I upgrade that Server with plenty of RAM, will SQL Server be capable to use that additional RAM and eliminate usage of tempdb
or I still have to allocate part of RAM and move tempdb
to RAM Disk ?
Question SQL Server 2005 Memory Pressure and tempdb writes problem is related to that, but does not address this situation.