i using sql2005, my hosting company allow me to use 300mb for my sql server. i wand to increase my sql database size
but i have 300GB is available in my FTP account.
Is It possible to create a DNS (some thing like MS ACCESS below) to my FTP account
<%
ConnStringHB = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("newdb2.mdb")&";Persist Security Info=False"
%>
hoping ur support
Since you’re using SSME, that implies SQL Express.
If SQL Express is running on the same machine as your FTP folder, and if the SQL Server identity has access to that folder, then you can either use SSME to attach to an MDF file in the FTP folder, or use the AttachDbFilename property in your connection string to do it automatically.
However, keep in mind that SQL Express only supports a database size up to 4GB maximum — so you still wouldn’t be able to use the full 300GB, even in the best of circumstances.