Blog
Projects
About
Backtrack:
Blog
›
Set Microsoft SQL Server memor…
Comments
Set Microsoft SQL Server memory limits via command-line (sqlcmd)
posted on January 1st 1970, at 01:00
by
lunarg
You can set the Microsoft SQL Server memory limits via command-line using sqlcmd. This is useful if you do not have SSMS available.
Connect to the server using sqlcmd. If you are running locally with the default instance, this is as easy as running the following from the command prompt:
sqlcmd -S
Note that you will need to have sysadmin permissions to be able to make the changes.
Run the following commands to set the minimum and maximum memory limits:
EXEC sys.sp_configure 'show advanced options', 1;GORECONFIGURE;GOEXEC sys.sp_configure 'min server memory', 1024;GOEXEC sys.sp_configure 'max server memory', 4096;GORECONFIGURE;GO
In the example above, we set the minimum memory to 1 GB (1
...
read more
add a comment
Tags
computer
windows
software
vmware
microsoft
linux
exchange
hardware
network
news
mac
powershell
home
office365
msoffice
ad
server
sqlserver
dell
soaring
esx
internet
mssql
rds
sbs
events
powercli
terminalserver
virtualization
antivirus
Archive
«
‹
November 2024
›
»
Sun
Mon
Tue
Wed
Thu
Fri
Sat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Links
-
@harkx
-
Cats & Dogs
-
Jargon-free Security Guide
Quote
«
Debating Windows vs. Linux vs. Mac is pointless: they all have their merits and flaws, and it ultimately comes to down to personal preference.
»
Me
Contact
© 2009-2024 Black Manticore – all rights reserved
code by
lunarg
, design by
SuriAmanah
, hosted at Cats&Dogs