Is there a way to determine the max size of a SQL Server Express database using SMO?
Or will I have to add code to say
if express then
if sql2005 then
limit = 4gb
else
limit = 10gb
else
limit = unlimited
end
Is there a way to determine the max size of a SQL Server Express database using SMO?
Or will I have to add code to say
if express then
if sql2005 then
limit = 4gb
else
limit = 10gb
else
limit = unlimited
end