I am trying to do some UI validation on a database name. I was told from different places that the SQL Server database name is stored as sysname inside SQL Server. I also verified that by checking the sys.Databases.
So, I make my textbox in the UI to have maxlength 128 characters long. This is the max length of sysname type.
However, I found that in my SQL Server 2005 Express edition, if I enter a database name with 128 characters long, it always complains
Could not create default log file because the name was too long
To make sure I can successfully create the database, I found that I need to set the max limit to 124 characters.
My question now is whether 124 characters limit is true for all versions of SQL Server on all different Windows OS?
CREATEdatabase statement. It doesn't have to contain the DB name... – Martin Smith Feb 23 '11 at 19:46