SQL Server Express Edition Ram upgrade - suggestion.
-
@scottalanmiller said in SQL Server Express Edition Ram upgrade - suggestion.:
@thwr said in SQL Server Express Edition Ram upgrade - suggestion.:
Or buy licenses (and CALs) for SQL Server Standard Edition.
Or move to PostgreSQL
Not that difficult, but could require them to update their application.
-
@thwr said in SQL Server Express Edition Ram upgrade - suggestion.:
@scottalanmiller said in SQL Server Express Edition Ram upgrade - suggestion.:
@thwr said in SQL Server Express Edition Ram upgrade - suggestion.:
Or buy licenses (and CALs) for SQL Server Standard Edition.
Or move to PostgreSQL
Not that difficult, but could require them to update their application.
Often well worth it when overrunning SQL Express.
-
HI ,
if the instance taking Maximum memory utilized by SQL Server Database Engine is 1GB then why its utilized 6 to 7 gb on actual.
-
@bhautik.shah said in SQL Server Express Edition Ram upgrade - suggestion.:
HI ,
if the instance taking Maximum memory utilized by SQL Server Database Engine is 1GB then why its utilized 6 to 7 gb on actual.
Likely a caching mechanism.
-
Bump up the memory a little, give it another GB or two and see if it uses that too. Your hypervisor isn't out of memory, right?
-
Standard practice for any server is to give exactly the memory that is needed. You start a little high and then tune down as you can. Big round numbers like 8GB are okay as starting points, but should be adjusted right away. This makes everything faster and your servers more dense. So bump this up a bit, run for a month, and tune down if the memory is not used.
-
@scottalanmiller said in SQL Server Express Edition Ram upgrade - suggestion.:
@bhautik.shah said in SQL Server Express Edition Ram upgrade - suggestion.:
HI ,
if the instance taking Maximum memory utilized by SQL Server Database Engine is 1GB then why its utilized 6 to 7 gb on actual.
Likely a caching mechanism.
Can you explain this a bit more? To the uninitiated it seems odd that if the program has a hard limit 1 GB, that some other facet of that same program could spiral to 6+ times that amount.
-
@Dashrender said in SQL Server Express Edition Ram upgrade - suggestion.:
@scottalanmiller said in SQL Server Express Edition Ram upgrade - suggestion.:
@bhautik.shah said in SQL Server Express Edition Ram upgrade - suggestion.:
HI ,
if the instance taking Maximum memory utilized by SQL Server Database Engine is 1GB then why its utilized 6 to 7 gb on actual.
Likely a caching mechanism.
Can you explain this a bit more? To the uninitiated it seems odd that if the program has a hard limit 1 GB, that some other facet of that same program could spiral to 6+ times that amount.
No facet of that program. Just the operating system components doing their normal caching. SQL Server does not further cripple the OS underneath.
-
OK - I'll go down the rabbit hole.
Educational request time.
Let's assume we have a Windows 2008 R2 Server running SQL Express 2012 R2 and nothing else. The application that accesses the DB is remote.
Where does the above mentioned caching come in?
-
@Dashrender said in SQL Server Express Edition Ram upgrade - suggestion.:
Where does the above mentioned caching come in?
The two biggest places are disk caches and application caches. For example, does all of SQL Server get moved into memory or only part of it? Does all of the database get moved into memory, or only part of it? (That last part is the part that gets capped at 1GB.) Do all of the OS components get loaded into memory, or loaded from disk as needed? Do the log files stay in memory?