sql server - Change the initial size of log files -


i changing initial size of log files goes previous size. can please let me know need gets new size?

thanks

try this..

use [master] go  alter database [my_db]                   --<-- db name       modify file ( name = n'my_db_log'  --<-- logical name of log file                   , size = 2048 ) go 

Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -