Follow the process mentioned below to delete an existing MS SQL Database user:
1. Login to your Control Panel and search for the domain name for which you have purchased this hosting package.
2. In the search results view, click on the domain name. This will take you to the Order Details View.
3. Click on Manage Web Hosting Service in the lower toolbar.
4. In the Website Management interface pop-up that follows, go to Manage Website -> Database Manager -> List Databases.
5. The following page would contain a list of Databases associated with your website, with complete details for each Database such as the Database name, space utilization and the Users associated with it. Here, click on the User whom you wish to delete.
6. In the User details view that follows, click on Delete.
Tags: Control Panel, Database Manager, Database Name, Database User, Database Users, Databases, Details View, Domain Name, Manage Web Hosting Service, Management Interface, Ms Sql Database, Space Utilization, SQL, View 3, Web Hosting Service, Web Service, Website Management
DSN is an abbreviation for Data Source Name. Data Source Name is a parameter that stores Data Source information (which includes the source of data such as relational database, and the connectivity information for accessing the data). The primary purpose of the DSN is to provide connectivity to a database through an ODBC driver.
ODBC stands for Open Data-Base Connectivity. This is a method developed for accessing databases, particularly with the intention of making it possible to access the data in them from any application. Thus, it works independent of the Database Management System (DBMS) that is used to maintain the database.
The Data Source information stored in the DSN typically consists of
DSNs are particularly useful for retrieving data from your databases to display on your website. Once you create a DSN for your database, you can use the DSN in your website to retrieve and display that information on your database.
You may connect to a database even without creating a DSN, by using a DSN-less connection. The only change is use of a Connection String in place of a rather easy to remember DSN.
Advantages of using a DSN Connection string over a DSN-less connection string
Sample of a DSN Connection String
There is only a singular advantage of using a DSN-less Connection string instead of a DSN connection string – database access becomes much faster since DSN-less connections use native OLE DB providers, while DSN connections make use of ODBC drivers.
Sample of a DSN-less Connection String
<%
set cnn = server.createobject(“ADODB.Connection”)
cnn.open “PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=c:anydatabase.mdb”
%>
Note: In the above example, C:anydatabase needs to be replaced with the actual physical path to the database on the website.
How to construct a DSN-less connection string for Access and SQL Server Databases?
Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:pathtodatabase.mdb
Using ODBC connection
Driver={Microsoft Access Driver (*.mdb)}; DBQ=c:pathtodatabase.mdb
Always use the connection string that uses native OLE DB provider because it is faster than the ODBC method of connecting. Data Source or DBQ are the absolute path to the database. If you have a relative path, then you can obtain the absolute path by using Server.MapPath(“/relative/path/to/database.mdb”).
Example
Dim conStr
Set conStr = “Provider=Microsoft.Jet.OLEDB.4.0; Data Source=” & _
Server.MapPath(“/dbo/database.mdb”)
Using ODBC Provider
Driver={SQL Server}; Server=server_name; Database=database_name; UID=user_name; PWD=user_password
Tags: Abbreviation, actual site, Central Repository, Connection String, Data Source Name, Data Sources, Database Driver, Database Management System, Database Management System Dbms, Database Name, Databases, DBMS, Dsn Connection, Dsn Less Connection, Intention, Microsoft, Name Directory, Odbc Driver, Open Data Base, Relational Database, Retrieving Data, Singular Advantage, Source Names
Microsoft SQL Server (MS SQL) is a full-featured relational database management system (RDBMS), available as a database option with every Gossimer Windows Web Hosting package.
MS SQL is very robust, powerful and scalable and is capable of storing very high volumes of data. It also offers database transaction feature and a variety of administrative tools to ease the burdens of database development, maintenance and administration. It is the ideal database for web applications written in ASP, ASP.Net.
Tags: Administrative Tools, ASP.NET, Burdens, Database Development, Database Management System, Database Option, Database Transaction, Development Maintenance, Ideal, Microsoft, Microsoft Server, Microsoft Sql Server, Microsoft Windows, Ms Sql, RDBMS, Relational Database, Relational Database Management, Relational Database Management System, SQL, Sql Microsoft, Web Applications, Web Hosting, Web Hosting package
Gossimer Windows Hosting Control Panel allows you to restore an existing database from a backup copy as explained below:
1. Login to your Control Panel, search for the domain name for which you have purchased the Web Hosting package and go to the Order Details view. Click here to know how >>
2. Click Manage Web Hosting Service in the lower toolbar.
3. In the Website Management interface pop-up that follows, go to Manage Website -> Database Manager -> List Databases.
4. Click the database you wish to manage.
5. Click Restore Database. Select the Database Username from the drop-down menu next to Database Username. This user will own all tables, views and stored procedures in the restored database, if the current owner of the backup file does not exist on Gossimer SQL server.
Select the backup file from the drop-down menu next to File to be Restored. You can select the backup which was saved on the server in the sqlDatabaseBackup directory or you can upload a .bak backup file onto the sqlDatabaseBackup directory and select it from the list.
6. Click Submit to restore the database.
Reference: Uploading content to your Website using FTP >>
Effective from 15 November 2007, all databases (MS SQL) purchased on Gossimer Windows Hosting Servers will be created on MS SQL 2005 Servers. There exists a backward compatibility issue with SQL 2005 in restoring a database to SQL 2000 (or an earlier version of MS SQL). This is on account of Microsoft not providing backward compatibility with earlier versions of MS SQL due to different internal file structures.
An alternate method would be usage of MS SQL Server Database Publishing Wizard. MS SQL Server Database Publishing Wizard enables the deployment of SQL Server databases either into 2000 or 2005 hosting environment. It generates a single SQL script file which can be used to recreate a database (both schema and data) for SQL 2000 and SQL 2005 versions. Click here to download this tool >>
There is no issue restoring SQL 2000 (or any earlier version) database to SQL 2005 version.
Tags: Alternate Method, Backup File, Backward Compatibility, Compatibility Issue, current owner, Database Manager, Database Publishing, Database Reference, Details View, File Structures, Gt 2, Hosting Servers, Manage Web Hosting Service, Management Interface, Microsoft, Microsoft Windows, Ms Sql Database, Ms Sql Server, SQL, Sql 2000, Sql Databases, Sql Script, Sql Server Database, Sql Server Databases, Web Hosting, Web Hosting Service, Website Management
MS SQL database has a facility to store transaction logs. However, old transaction logs which maybe no longer required occupy space unnecessarily. Gossimer Windows Hosting Control Panel allows you to truncate transaction logs so as to control unnecessary space utilization.
Follow the process below to truncate transaction logs:
1. Login to your Control Panel and search for the domain name for which you have purchased this hosting package. Click here to know how >>
2. In the search results view, click on the domain name. This will take you to the order details view.
3. Click on Manage Web Hosting Service in the lower toolbar.
4. In the Website Management interface pop-up that follows, go to Manage Website -> Database Manager -> List Databases.
5. Click on the database you wish to manage.
6. Click Truncate Transaction Log to complete the process.
The Transaction logs are truncated to the maximum limit possible. If you wish to reduce the space allocated for logs, you should ideally truncate the logs first and then reduce the space allocated. You will be allowed to reduce the space allocated only upto the size of the actual truncated log file.
Reference: How do I set the database size and transaction log size of a MS SQL database >>
Tags: Control Panel, Database Manager, Database Size, Databases, Details View, Domain Name, Gt 2, Manage Web Hosting Service, Management Interface, Maximum Limit, Microsoft Windows, Ms Sql Database, Reference, Space Utilization, SQL, Transaction Log, Transaction Logs, Unnecessary Space, View 3, Web Hosting Service, Web Service, Website Management, Windows Hosting
ASPUpload is an Active Server component which enables an ASP application to accept, save and manipulate files uploaded with a browser. The files are uploaded via an HTML POST form with one or more <INPUT TYPE=FILE> tags. The <FORM> tag must contain the attribute ENCTYPE=”multipart/form-data”. All Gossimer Windows Hosting packages have support enabled for ASPUpload component. You can use the sample script provided below and tweak it a bit to suit your requirements.
Upload Script (Upload.asp)
<%
Set Upload = Server.CreateObject(“Persits.Upload”)
Count = Upload.Save(“C:WHBSitesyourdomainname.comdatafiles”)
Response.Write Count & ” file(s) uploaded to C:WHBSitesyourdomainname.comdatafiles”
%>
HTML form for uploading up to 3 files
<HTML>
<BODY BGCOLOR=”#FFFFFF”>
<FORM METHOD=”POST” ENCTYPE=”multipart/form-data” ACTION=_quot;Upload.asp_quot;_gt;
<INPUT TYPE=”FILE” NAME=”FILE1″ SIZE=”50″><BR>
<INPUT TYPE=”FILE” NAME=”FILE2″ SIZE=”50″><BR>
<INPUT TYPE=”FILE” NAME=”FILE3″ SIZE=”50″><BR>
<INPUT TYPE=”SUBMIT” VALUE=”Upload!”>
</FORM>
</BODY>
</HTML>
Tags: Active Server, Amp, ASP, Asp Application, Asp Upload, Aspupload, Attribute, Body Bgcolor, Br, Ffffff, Hosting Packages, HTML, Html Post, Input Type File, Lt, Microsoft Windows, Multipart Form Data, Script Upload, Server Component, Upload Asp, Upload Script, Whb, Windows Hosting
If you wish to modify any parameters for an existing DSN or delete the DSN, you need to follow the process outlined below:
1. In the Website Management interface, go to Manage Website -> DSN Manager -> List DSNs.
2. In the DSN list that follows, click on the DSN you wish to modify. Make any changes that you wish here.
3. If you wish to delete the DSN, simply select the check-box before the desired DSN in the list, and click on Delete.
Tags: Delete, Dsn, DSN Manager, Management Interface, Manager Gt, Parameters, Website Management
Gossimer Windows Hosting Control Panel allows you to shrink a MS SQL database. The process is explained below:
1. Login to your Control Panel and search for the domain name for which you have purchased this hosting package. Click here to know how >>
2. In the search results view, click on the domain name. This will take you to the order details view.
3. Click on Manage Web Hosting Service in the lower toolbar.
4. In the Website Management interface pop-up that follows, go to Manage Website -> Database Manager -> List Databases.
5. Click on the database you wish to manage.
6. Click Shrink Database to complete the process.
Tags: Control Panel, Database Hosting, Database Manager, Databases, Details View, Domain Name, Gt 2, Manage Web Hosting Service, Management Interface, Microsoft Windows, Ms Sql Database, SQL, Sql Hosting, View 3, Web Hosting Service, Web Service, Website Management, Windows Hosting
There are no restrictions set by Gossimer on the number of connections that you can establish to a particular database. However, in the event that you establish so many connections that the server’s performance gets degraded, we would have to restrict some connections to ensure service availability to our other customers as well.
Tags: Gossimer, Maximum Number, Ms Sql Database, Service Availability, SQL
Gossimer currently supports MS SQL Server 2005 – 9.00.1399.06 (X64) Developer Edition (64-bit).
Tags: Developer Edition, Ms Sql Server, Ms Sql Server 2005, Sql Server 2005
Follow the below mentioned instructions to upgrade your existing MS SQL 2000 database to MS SQL 2005:
Tags: Backup Copy, Control Panel, Db Gt, Ms Sql, SQL, Sql 2000, Sql Backup, Sql Database
Follow this process and add FTP users to upload content for your website.
1. Login to your Control Panel and search for the domain name for which you have purchased this hosting package. Click here to read how >>
2. In the search results view, click on the domain name. This will take you to the order details view.
3. Click on Manage Web Hosting Service in the lower toolbar.
4. In the Website Management interface pop-up that follows, go to Manage Website -> FTP User Manger -> Add FTP User.
5. The form on this page has the following details, specify these for the new FTP user:
6. Once you have provided all details necessary, click on Submit.
Tags: 3 Web, Control Panel, Details View, Domain Name, Gt 2, Home Directory, Manage Web Hosting Service, Management Interface, View 3, Web Hosting Service, Web Service, Website Management
If for some reason, you wish to delete your existing Virtual Directory, you may do so by following the below mentioned process:
A Virtual Directory with .NET Framework version 1.1 and no write permissions for the IIS (anonymous) User is created for the web folder by default. You cannot delete this Virtual Directory. You may however -
Click here to read how to perform either of the above mentioned actions >>
Tags: Anonymous User, Click, Confirmation, Control Panel, Delete, Delete Directory, Details View, Directory Manager, Domain Name, Framework Version, Management Interface, Manager Gt, Net Framework, Pop Up Window, Virtual Directories, Virtual Directory, Web Folder, Web Hosting Service, Website Directory, Website Management