FAQ (Database)
|

|
|
|
 |
| How do I install the SQL Server CD? |
 |
Insert the CD into your CD-ROM drive, if you have Windows 95 or better then the setup program should
start automatically. If it does not you can start the install by running D:\Setup.bat where D: is the
letter for your CD-ROM drive.
- Select Local Install... and press the Next button.
- Click the Next button on the Welcome window.
- Read the software agreement and then click Yes to continue.
- In the Name field enter your name.
-
In the Company field enter ChamberGates and then click the
Next button.
-
In the CD-Key boxes enter the code that appears on the sleeve of your CD and then click the
Ok button.
- Click Ok again to go to the next window.
- Select the Custom option and then click the Next button.
- Uncheck the Server Components check box (you are not licensed for this feature).
-
Check the Management Tools check box and then select all of the sub-components in the
right pane.
- Check the Client Connectivity check box.
-
Check the Books Online check box if you would like for the SQL Server documentation to
be installed.
- Uncheck the Development Tools check box and then click the Next button.
- Click the Next button on the Start Copying Files window.
-
Click the Finish button to complete the process, if the setup program asks you to
reboot then go ahead and do that.
|
| How do I connect using Enterprise Manager? |
 |
- Open the Client Network Utility from the Microsoft SQL Server folder.
- Click on the General tab and then click on the Add button.
- In the Server Alias field enter chambergates.
- In the Network libraries frame choose TCP/IP.
- In the Computer name field enter sqlserver.chambergates.com.
- Click Apply and then click Ok.
- Open Enterprise Manager
- Right click on the SQL Server Group and choose New SQL Server Registration.
- In the Server field click on ... button.
- Choose the chambergates entry.
- Under Connection choose Use SQL Server authentication.
- For Login Name and Password use your FTP account information.
- Click Ok.
|
| Can I install the Server Components using the CD provided by ChamberGates? |
 |
|
No. This CD is only released to you for the purposes of managing a licensed SQL Server database. If
you install this feature you will be liable for all fines and penalties accessed to you for such
action. Piracy is against the law.
|
 |
Why do I keep getting "Operation must use an updateable query." error? Why do I keep getting "Could not delete from specified tables." error? |
 |
|
By default, your entire web site is set to be read only and this applies to all the files in your
web site. To fix this error, please contact the support team and tell them which directory your
database is located in.
Alternatively, you can place your database files in your /Priv directory, this directory will
allow your visitors to write to it, but it can not be accessed through a browser.
|
 |
| How do I register my Access database? |
 |
|
The first step is to determine where you are going to place the database file that you will be uploading.
The best place would be the \Priv folder that sits outside of your web site.
The next step is to determine if you want to use a DSN or DSN-less connection. If you choose to use a
DSN, then please contact technical support and provide us with the name you would like to use and where
the database file resides. It is a little harder to program a DSN-less connection but you also do not
have to wait for technical support to create the DSN for you. Although we do support development issues
you can find some more information about DSN-Less connections at
Paco's Drivers.
If you are using a DSN-Less connection and you did not place the database within the \Priv folder then
you may need to contact technical support to set the file permissions for you. Please note that we can
not change your file permissions in the root web folder.
|
 |
| [MySQL] How do I access my database? |
 |
You can use any of the tools provided by the
MySQL community to connect to your database.
If you install the Database Server on your machine you will have a command line interface that you can
use to connect to your database. To use this interface to connect to your database on our server, follow
these directions:
- Choose Run... from the Start menu.
-
If you are using Windows 95, Windows 98, or Windows Me then type
COMMAND. If you are using Windows NT, Windows 2000, or Windows XP
then type CMD.
- Click the Ok button, you should see a console window appear with a DOS prompt.
-
Next you will need to change to the directory where you installed MySQL (e.g. C:\MySQL)
by typing CD \MySQL and pressing the Enter key.
-
- Now type CD BIN and press the Enter key.
-
Now type mysql -h server_name -u user_name -p where
server_name is the server name provided when we setup your MySQL database and
user_name is your FTP user name.
- Press the enter key and when prompted for your password enter your FTP password.
-
You should now see a mysql> prompt, enter Show Databases;
and press the enter key.
-
A list of databases that you can access should appear, in most cases this will only be one. Now
type Use database_name.
- Press the Enter key and you will now be able to issue MySQL commands directly.
-
When you are done you can disconnect by typing Exit and pressing
the Enter key.
-
To close the console window, type Exit and press the Enter
key.
|
 |
| [MySQL] Is there a GUI tool for managing my database? |
 |
Yes. You can use the MySQL Control
Center. Installing the tool on a Windows system:
-
After downloading the ZIP file, extract all of the files to a temporary directory and then
execute the setup.exe program.
- Click the Next button on the Welcome to the MySQL Control Center window.
-
Read the license agreement and if you agree to the terms select the I accept the license
agreement option. If you do not agree, then you will have to find another tool. Click
the Next button to continue.
- Click the Next button on the Readme Information screen.
-
Click the Next button on the Destination Folder screen, unless you want to change
the directory where this application will be installed to.
-
If you do not use any of the languages listed in the translations, you can choose not to install
them by clicking on the down arrow next to the word Translations and then selecting the
Entire feature will be unavailable.
- Click the Next button to continue.
- Click the Next button on the Ready to Install the Application window.
- Once the files have been copied click the Finish button on the completion window.
To connect to your database using the MySQL Control Center:
-
Start the program by selecting the MySQL Control Center item in the MySQL Control
Center menu in the Start menu.
-
When the application starts you should see the Console Manager window. Choose New
from the File menu.
- In the Name box enter ChamberGates.
- In the Host Name box enter the server name we gave you in your MySQL setup letter.
- In the User Name box enter your FTP user name.
- In the Password box enter your FTP password.
- Click the Add button to create this database entry.
-
Now you should see a ChamberGates entry in the left side of the Console Manager
window. Right-click on ChamberGates and choose Connect.
-
Expand the Databases folder and you should see all of the MySQL databases that we have
setup for you.
- To enter queries and get results you can click on SQL button or press CTRL+Q.
|