Microsoft SQL Server
- Get definition text of stored procedures
- Modify maximum server memory
group_concat
: concatenate aggregated rows
Get definition text of stored procedures
INFORMATION_SCHEMA.ROUTINES.ROUTINE_DEFINITION
returns the first 4000
characters of the definition text of stored procedure only, if the function or
stored procedure is not encrypted.
Modify maximum server memory
In Microsoft SQL Server Management Studio, open Object Explorer. Right click on server and click on Properties. Select page Memory and modify Maximum server memory (in MB):; 1024 is a good value.
group_concat
: concatenate aggregated rows
Taken from this blog post.